Capítulo 12

Propriedades - colorDepth

JavaScript

<script type="text/javascript">
	function profCor() {
		alert('Color depth é: ' + screen.colorDepth + ' bit/pixel');
	}
<script>

HTML

...
<button onclick="profCor()">Color Depth</button>
...