Created
September 5, 2017 17:50
-
-
Save kubawolanin/f42b3fa14cf7804782aeefc13d1c8c0a to your computer and use it in GitHub Desktop.
Additional Basic UI themes
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
body[data-theme="blue-grey"] { | |
--primary-color: #455A64; | |
--header-bg: var(--primary-color); | |
--header-text-color: #fff; | |
--body-bg: #607d8c; | |
--container-bg: #ECEFF1; | |
--container-text-color: #616161; | |
--switch-on-track-bg: rgba(96, 125, 140, 0.42); | |
--border-color: #ccc; | |
} | |
body[data-theme="deep-orange"] { | |
--primary-color: #FF5722; | |
--header-bg: var(--primary-color); | |
--header-text-color: #fff; | |
--body-bg: #f5f5f5; | |
--container-bg: #fff; | |
--container-text-color: #000000; | |
--switch-on-track-bg: rgba(255, 87, 34, 0.38); | |
--border-color: #ccc; | |
} | |
body[data-theme="green"] { | |
--primary-color: #4CAF50; | |
--header-bg: var(--primary-color); | |
--header-text-color: #fff; | |
--body-bg: #f5f5f5; | |
--container-bg: #fff; | |
--container-text-color: #000000; | |
--switch-on-track-bg: rgba(76, 175, 80, 0.52); | |
--border-color: #ccc; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment