first commit

This commit is contained in:
Net 2024-04-02 11:02:16 +07:00
commit e8ec46d19f
60 changed files with 13652 additions and 0 deletions

56
src/css/app.scss Normal file
View file

@ -0,0 +1,56 @@
@import 'open-props/postcss/style';
@import 'open-props/colors-hsl';
@import 'open-props/shadows';
@import 'open-props/zindex';
html {
--brand-1: #035aa1;
--brand-2: #f50000;
--border-color: var(--gray-4);
--foreground: black;
--background: var(--gray-1);
--surface-0: var(--background);
--surface-1: white;
--surface-2: var(--gray-1);
--surface-3: var(--gray-2);
color: var(--foreground);
background-color: var(--background);
}
:where(.dark, .body--dark) {
--brand-1: var(--blue-7);
--brand-2: #f50000;
--border-color: var(--gray-8);
--foreground: white;
--background: var(--gray-10);
--surface-0: var(--background);
--surface-1: var(--gray-11);
--surface-2: var(--gray-10);
--surface-3: var(--gray-9);
}
.bordered {
border: 1px solid var(--border-color);
}
.rounded {
border-radius: var(--radius-3);
}
.surface-1 {
background-color: var(--surface-1) !important;
}
.surface-2 {
background-color: var(--surface-2) !important;
}
.surface-3 {
background-color: var(--surface-3) !important;
}