1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-22 13:04:19 +00:00
pds-2021-g2-nest/code/frontend/src/index.css

41 lines
604 B
CSS
Raw Normal View History

2021-04-20 22:28:23 +00:00
* {
box-sizing: border-box;
}
2021-04-20 22:07:39 +00:00
body {
2021-04-20 22:09:13 +00:00
margin: 0;
2021-04-20 22:23:35 +00:00
min-height: 100%;
min-width: 100%;
2021-04-20 22:07:39 +00:00
}
2021-04-20 22:23:35 +00:00
.theme-dark {
--bg-primary: #3B7097;
--bg-light: #34607A;
--bg-dark: #254D61;
--fg-primary: #FFFFFF;
--fg-secondary: #536841;
--btn-on: #5D815C;
--btn-off: #F6E2BC;
--cmp-light: #C4C4C4;
--cmp-dark: #7C7C7C;
}
.theme-light {
--bg-primary: #CAE4F6;
--bg-light: #B2CEDF;
--bg-dark: #7292AF;
--fg-primary: #536841;
--fg-secondary: #FFFFFF;
--btn-on: #A3BDA2;
--btn-off: #FFFFFF;
--cmp-light: #FFFFFF;
--cmp-dark: #AAAAAA;
2021-04-20 22:07:39 +00:00
}