Blame Extras/phpBB/3.0.4/adm/style/colour_swatch.html

4c79b5
4c79b5
<html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}" lang="{S_USER_LANG}" xml:lang="{S_USER_LANG}">
4c79b5
<head>
4c79b5
<meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}" />
4c79b5
<meta http-equiv="Content-Style-Type" content="text/css" />
4c79b5
<meta http-equiv="Content-Language" content="{S_USER_LANG}" />
4c79b5
<meta http-equiv="imagetoolbar" content="no" />
4c79b5
<title>{L_COLOUR_SWATCH}</title>
4c79b5
4c79b5
<style type="text/css">
4c79b5
/* 
4c79b5
	body {
4c79b5
		background-color: #404040;
4c79b5
		color: #fff;
4c79b5
	}
4c79b5
4c79b5
	td {
4c79b5
		border: solid 1px #333; 
4c79b5
	}
4c79b5
4c79b5
	.over { 
4c79b5
		border-color: white; 
4c79b5
	}
4c79b5
4c79b5
	.out {
4c79b5
		border-color: #333333; 
4c79b5
	}
4c79b5
4c79b5
	img {
4c79b5
		border: 0;
4c79b5
	}
4c79b5
/* ]]> */
4c79b5
</style>
4c79b5
</head>
4c79b5
4c79b5
<body>
4c79b5
4c79b5
<script type="text/javascript">
4c79b5
// 
4c79b5
	var r = 0, g = 0, b = 0;
4c79b5
4c79b5
	var numberList = new Array(6);
4c79b5
	numberList[0] = '00';
4c79b5
	numberList[1] = '33';
4c79b5
	numberList[2] = '66';
4c79b5
	numberList[3] = '99';
4c79b5
	numberList[4] = 'CC';
4c79b5
	numberList[5] = 'FF';
4c79b5
4c79b5
	document.writeln('');
4c79b5
4c79b5
	for (r = 0; r < 6; r++)
4c79b5
	{
4c79b5
		document.writeln('');
4c79b5
4c79b5
		for (g = 0; g < 6; g++)
4c79b5
		{
4c79b5
			for (b = 0; b < 6; b++)
4c79b5
			{
4c79b5
				color = String(numberList[r]) + String(numberList[g]) + String(numberList[b]);
4c79b5
				document.write('');
4c79b5
				document.write('#' + color + '<\/a>');
4c79b5
				document.writeln('<\/td>');
4c79b5
			}
4c79b5
		}
4c79b5
		document.writeln('<\/tr>');
4c79b5
	}
4c79b5
	document.writeln('<\/table>');
4c79b5
4c79b5
	function cell(color)
4c79b5
	{
4c79b5
		opener.document.forms["{OPENER}"].{NAME}.value = color;
4c79b5
	}
4c79b5
// ]]>
4c79b5
</script>
4c79b5
4c79b5
</body>
4c79b5
</html>