Failure Example 4

In the example below the foreground color is defined on the CSS stylesheet, however the background color is not defined. Therefore, the example fails the Success Criterion.
	...
		<style type="text/css">
			 body {color:white}
		</style>
	</head>
	<body>
		<p>My foreground is white.</p>
	</body>
F24: Failure of SC 1.4.1 due to specifying foreground colors without specifying background colors or vice versa

My foreground is white.