Blame Identity/Webenv/phpBB/3.0.4/adm/style/colour_swatch.html

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