Created
April 30, 2025 15:56
-
-
Save IEvangelist/fb14e027e5a965ae5960e04c14153a5b to your computer and use it in GitHub Desktop.
.NET Brand Colors—CSS
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
:root { | |
/* Common brand colors */ | |
--brand-blue: #512BD4; | |
--brand-purple: #512BD4; | |
--magenta: #D600AA; | |
--cyan: #28C2D1; | |
--yellow: #F7B548; | |
--flamingo: #F65163; | |
} | |
/* Light Theme (default) */ | |
:root[data-theme="light"] { | |
--background: #FFFFFF; | |
--surface: #FDF0DA; /* light yellow tint for slight warmth */ | |
--text-primary: #190649; /* midnight blue primary */ | |
--text-secondary: #311A7F; /* brand purple shade */ | |
--accent: #512BD4; /* blue/purple primary */ | |
--accent-hover: #311A7F; | |
--border: #E7F0FF; /* blue tint */ | |
--muted: #EEEAFB; /* purple tint */ | |
} | |
/* Dark Theme */ | |
:root[data-theme="dark"] { | |
--background: #190649; /* midnight blue primary */ | |
--surface: #14053A; /* midnight blue shade 10 */ | |
--text-primary: #FDF0DA; /* yellow tint */ | |
--text-secondary: #EEEAFB; /* brand purple tint */ | |
--accent: #28C2D1; /* cyan primary */ | |
--accent-hover: #F7B548; /* yellow primary */ | |
--border: #311A7F; /* brand purple shade */ | |
--muted: #042B66; /* dark blue shade */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment