blob: ef4aebf1bd636f2c50a8a11e2ecb5232ae95e5e7 [file] [log] [blame]
/* Common Color Palette via CSS Variables.
Can be imported via:
@import '~elements-sk/colors';
Colorblind safe palette copied from http://jfly.iam.u-tokyo.ac.jp/color/#see.
for the regular colors. Light colors are just 50% of the regular colors.
*/
html {
--blue: rgb(0, 114, 178);
--green: rgb(0, 158, 115);
--red: rgb(211, 0, 0);
--orange: rgb(230, 159, 0);
--purple: rgb(204, 121, 167);
--brown: rgb(177, 89, 40);
--gray: rgb(79, 79, 79);
--light-blue: rgb(128, 185, 217);
--light-green: rgb(128, 207, 185);
--light-red: rgb(234, 175, 128);
--light-orange: rgb(243, 207, 128);
--light-purple: rgb(230, 188, 211);
--light-brown: rgb(216, 172, 148);
--light-gray: rgb(168, 168, 168);
--white: #ffffff;
--dark-white: rgb(240, 240, 240);
--black: #000000;
}
.body-sk {
--skottie-surface: #9069ff;
--skottie-surface-main: #2d2d2d;
--skottie-primary-dark: #25008d;
--skottie-border: #3c434c;
--skottie-range-slider: #d9d9d9;
--skottie-range-thumb: #29009d;
--skottie-primary-light: #cdbbff;
--skottie-secondary-main: #34404c;
--skottie-secondary-dark: #23292e;
--skottie-surface-light: #969b9e;
--skottie-on-surface-white: #ffffff;
&.darkmode,
& .darkmode {
--skottie-surface: #9069ff;
--skottie-surface-main: #2d2d2d;
--skottie-primary-dark: #25008d;
--skottie-border: #3c434c;
--skottie-range-slider: #d9d9d9;
--skottie-range-thumb: #29009d;
--skottie-primary-light: #cdbbff;
--skottie-secondary-main: #34404c;
--skottie-secondary-dark: #23292e;
--skottie-surface-light: #969b9e;
--skottie-on-surface-white: #ffffff;
}
}