Last active
August 27, 2015 17:59
-
-
Save rugk/41947c48f7ddb680bded to your computer and use it in GitHub Desktop.
CSS color test for editors with color highlighting
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
test { | |
background-color: #b03f3f; | |
} | |
test2 { | |
color: rgb(50, 13, 94); | |
background-color: #71b03f; | |
} | |
test3 { | |
background-color: rgba(32, 57, 105, 0.76); | |
} | |
test3 { | |
background-color: hsva(194, 100%, 100%, 0.36); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment