Skip to content

Commit

Permalink
Merge pull request #111 from yanosea/107-apply-everforest-theme
Browse files Browse the repository at this point in the history
  • Loading branch information
yanosea authored Feb 2, 2025
2 parents 482e31f + d46525a commit d8f18f6
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 22 deletions.
8 changes: 4 additions & 4 deletions front/src/components/ThemeToggleButton.astro
Original file line number Diff line number Diff line change
Expand Up @@ -105,11 +105,11 @@ import { Icon } from "astro-icon/components";
@keyframes fadein {
0% {
opacity: 0;
background-color: #e5e9f0;
background-color: #fdf6e3;
}
100% {
opacity: 1;
background-color: #e5e9f0;
background-color: #fdf6e3;
}
}
body.fadeinlightclass {
Expand All @@ -118,11 +118,11 @@ import { Icon } from "astro-icon/components";
@keyframes fadeindark {
0% {
opacity: 0;
background-color: #3b4252;
background-color: #2d353b;
}
100% {
opacity: 1;
background-color: #3b4252;
background-color: #2d353b;
}
}
body.fadeindarkclass {
Expand Down
36 changes: 18 additions & 18 deletions front/tailwind.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -9,24 +9,24 @@ module.exports = {
normal: ["Zen Kaku Gothic New", "sans-serif"]
},
colors: {
"main": "#3B4252",
"main-dark": "#E5E9F0",
"sub": "#81A1C1",
"sub-dark": "#81A1C1",
"sub-darker": "#5E81AC",
"sub-darker-dark": "#5E81AC",
"background": "#E5E9F0",
"background-dark": "#3B4252",
"red": "#BF616A",
"orange": "#D08770",
"green": "#A3BE8C",
"yellow": "#EBCB8B",
"yellow-lighter": "#FFE79D",
"purple": "#B48EAD",
"purple-lighter": "#C69ABE",
"blue": "#5E81AC",
"gray": "#D8DEE9",
"gray-dark": "#4C566A",
"main": "#5c6a72",
"main-dark": "#d3c6aa",
"sub": "#7fbbb3",
"sub-dark": "#7fbbb3",
"sub-darker": "#83c092",
"sub-darker-dark": "#83c092",
"background": "#fdf6e3",
"background-dark": "#2d353b",
"red": "#e67e80",
"orange": "#e69875",
"green": "#a7c080",
"yellow": "#dfa000",
"yellow-lighter": "#dbbc7f",
"purple": "#df69ba",
"purple-lighter": "#d699b6",
"blue": "#83c092",
"gray": "#bec5b2",
"gray-dark": "#4f5b58",
},
typography: (theme) => ({
DEFAULT: {
Expand Down

0 comments on commit d8f18f6

Please sign in to comment.