40 lines
857 B
CSS
40 lines
857 B
CSS
:root {
|
|
--color-primary: red;
|
|
--color-secondary: #d9d9d9;
|
|
--color-pink: #FFB7C5;
|
|
/* test */
|
|
--classy-base: #FFB7C5;
|
|
--classy-dark: #564145;
|
|
--classy-darken: #BEA5A9;
|
|
--classy-second: #D4C792;
|
|
--classy-second-dark: #9C915F;
|
|
/* test ++ */
|
|
--hanzo-primary: #A569BD;
|
|
/* Purple for the royal and noble feel */
|
|
--hanzo-secondary: #F1C40F;
|
|
/* Gold for wealth and prosperity */
|
|
--hanzo-tertiary: #196F3D;
|
|
/* Dark Green for the natural environment */
|
|
--hanzo-quaternary: #641E16;
|
|
/* Dark Red/Brown for the wooden structures */
|
|
--hanzo-quinary: #17202A;
|
|
/* Dark Blue for the night sky */
|
|
|
|
--hanzo-hiadoro: #57715a;
|
|
--hanzo-bojambu: #746822;
|
|
--hanzo-gan: #6a437d;
|
|
--hanzo-hibiki: #b02e31;
|
|
/* Clan main colors */
|
|
|
|
|
|
}
|
|
|
|
.root-app {
|
|
overflow: hidden;
|
|
}
|
|
|
|
@media (min-width: 62em) {
|
|
.root-app {
|
|
overflow: auto;
|
|
}
|
|
} |