Last active
December 7, 2020 20:05
-
-
Save bonkmaykrQ/46cfbed5fbe5bcb290d4785ae6a57b5a to your computer and use it in GitHub Desktop.
pink uwu
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 { | |
/* Simple Pink Palette for Twitter - Public Domain, do what you want with it*/ | |
--color-bg: #ffaaaa !important; | |
--color-elem: #ffffff !important; | |
--color-elem-sel: #ffbbff !important; | |
--color-gray: #ee9999 !important; | |
--color-gray-dark: #dd7777 !important; | |
--color-gray-light: #ff8888 !important; | |
--color-navbar: #ffffff !important; | |
--color-text: #663333 !important; | |
--color-shadow: #ff9999 !important; | |
--color-seperator: #ffaaaa !important; | |
--color-user: #ff4477 !important; | |
--font-increment: calc(var(--global-font-size) - 15px); | |
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif; | |
} | |
::selection { /* Custom Selection Color */ | |
color: white; | |
background: #ff4477; | |
} | |
::moz-selection { /* Custom Selection Color - Firefox */ | |
color: white; | |
background: #ff4477; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment