Skip to content

Commit

Permalink
adding readme
Browse files Browse the repository at this point in the history
  • Loading branch information
jaiminmoslake7020 committed Nov 22, 2024
1 parent 0c7dd77 commit 76b7bd4
Show file tree
Hide file tree
Showing 24 changed files with 6,237 additions and 2,525 deletions.
2 changes: 2 additions & 0 deletions css/base/_index.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
@use "tailwind";
@use "themes/index";
3 changes: 3 additions & 0 deletions css/base/_tailwind.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
24 changes: 24 additions & 0 deletions css/base/themes/_dark.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
@layer base {

@media (prefers-color-scheme: dark) {
:root {
--color-bkg: 2 6 23;
--color-content: 243 244 246;

}
}

body[data-theme="dark"] {
--color-bkg: 2 6 23;
--color-content: 243 244 246;

--color-theme-btn-active-bg: 229 231 235;
--color-theme-btn-active-text: 30 41 59;
--color-theme-btn-active-border: 156 163 175;

--color-theme-btn-bg: 87 83 78;
--color-theme-btn-text: 244 244 245;
--color-theme-btn-border: 214 211 209;
}

}
2 changes: 2 additions & 0 deletions css/base/themes/_index.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
@use "light";
@use "dark";
30 changes: 30 additions & 0 deletions css/base/themes/_light.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
@layer base {

:root {
--color-bkg: 226 232 240;
--color-content: 39 39 42;

--color-theme-btn-bg: 229 231 235;
--color-theme-btn-text: 30 41 59;
--color-theme-btn-border: 156 163 175;

--color-theme-btn-active-bg: 87 83 78;
--color-theme-btn-active-text: 244 244 245;
--color-theme-btn-active-border: 214 211 209;

}

body[data-theme="light"] {
--color-bkg: 226 232 240;
--color-content: 39 39 42;

--color-theme-btn-bg: 229 231 235;
--color-theme-btn-text: 30 41 59;
--color-theme-btn-border: 156 163 175;

--color-theme-btn-active-bg: 87 83 78;
--color-theme-btn-active-text: 244 244 245;
--color-theme-btn-active-border: 214 211 209;
}

}
98 changes: 98 additions & 0 deletions css/output.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions css/output.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 76b7bd4

Please sign in to comment.