Skip to content

Instantly share code, notes, and snippets.

@kubawolanin
Created September 5, 2017 17:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kubawolanin/f42b3fa14cf7804782aeefc13d1c8c0a to your computer and use it in GitHub Desktop.
Save kubawolanin/f42b3fa14cf7804782aeefc13d1c8c0a to your computer and use it in GitHub Desktop.
Additional Basic UI themes
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