Skip to content

Instantly share code, notes, and snippets.

@aaizemberg
Created March 3, 2017 15:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aaizemberg/8fc115ebb0c61b39c6828b59e8c77d35 to your computer and use it in GitHub Desktop.
Save aaizemberg/8fc115ebb0c61b39c6828b59e8c77d35 to your computer and use it in GitHub Desktop.
color testing
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>>SVG color testing</title>
</head>
<body>
<svg height="500" width="500">
<circle cx="50" cy="50" r="40" stroke="white" stroke-width="1" fill="red" />
<circle cx="150" cy="50" r="40" stroke="white" stroke-width="1" fill="green" />
<circle cx="100" cy="75" r="40" stroke="white" stroke-width="1" fill="blue" />
<circle cx="50" cy="125" r="40" stroke="white" stroke-width="1" fill="yellow" />
<circle cx="150" cy="125" r="40" stroke="white" stroke-width="1" fill="magenta" />
<circle cx="100" cy="150" r="40" stroke="white" stroke-width="1" fill="cyan" />
<circle cx="50" cy="200" r="40" stroke="white" stroke-width="1" fill="black" />
<circle cx="150" cy="200" r="40" stroke="black" stroke-width="1" fill="white" />
</svg>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment