Last active
September 4, 2024 12:24
-
-
Save James-Ansley/6bd8ab354a0cdb9b67de5b75fb063fde to your computer and use it in GitHub Desktop.
Common primary/background colours I use so I don't forget
This file contains 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
:root { | |
--primary: #192734; | |
--primary-alt: #384047; | |
--background: #f2f2f2; | |
--surface: #caccce; | |
} | |
:root[data-theme="dark"] { | |
--primary: rgba(255, 255, 255, 0.85); | |
--primary-alt: rgba(217, 217, 217, 0.85); | |
--background: #242424; | |
--surface: hsla(0, 0%, 40%, 0.48); | |
} |
This file contains 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
:root { | |
--primary:#504621; | |
--background:#e3decb; | |
--surface:#afa275; | |
} | |
:root[data-theme=dark] { | |
--primary:#d8d0b4; | |
--background:#383427; | |
--surface: #736b51; | |
} |
This file contains 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
:root { | |
--primary: #464820; | |
--background: #dddfca; | |
--surface: #a2a573; | |
} | |
:root[data-theme=dark] { | |
--primary: #cfd2b3; | |
--background: #343527; | |
--surface: #6b6d50; | |
} |
This file contains 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
:root { | |
--primary: #5a4123; | |
--background: #e9dbcc; | |
--surface: #bc9c77; | |
} | |
:root[data-theme=dark] { | |
--primary: #e1ccb5; | |
--background: #3c3227; | |
--surface: #7b6852; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment