make lightmode default

This commit is contained in:
2025-05-22 16:08:17 +03:00
parent 417f1d0004
commit f7ff263818
3 changed files with 62 additions and 63 deletions

View File

@@ -13,71 +13,71 @@
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
/* Defaul lightMode */
body.light-mode {
body {
background-color: #ffffff;
color: #000000;
}
body.light-mode .semigray {
color: #424242 !important;
}
body.light-mode .semigray2 {
color: #424242 !important;
}
body.light-mode .dropdown a{
@apply
px-0
text-black
}
body.light-mode .dropdown{
background-color: rgb(255 255 255 / 100%);
color: #121212;
}
body.light-mode .d_menu {
background-color: #e5e5e5;
}
body.light-mode .icon {
fill: #424242 !important;
}
/* Dark Mode */
body {
background-color: #121212;
color: #ffffff;
}
body .semigray {
color: #e5e7eb !important;
color: #424242 !important;
}
body .semigray2 {
color: #d1d5db !important;
}
body .icon {
fill: #ffffff !important;
color: #424242 !important;
}
body .dropdown a{
@apply
px-0
text-white
text-black
}
body .dropdown{
background-color: rgb(255 255 255 / 100%);
color: #121212;
}
body .d_menu {
background-color: #e5e5e5;
}
body .icon {
fill: #424242 !important;
}
/* Dark Mode */
body.dark-mode {
background-color: #121212;
color: #ffffff;
}
body.dark-mode .semigray {
color: #e5e7eb !important;
}
body.dark-mode .semigray2 {
color: #d1d5db !important;
}
body.dark-mode .icon {
fill: #ffffff !important;
}
body.dark-mode .dropdown a{
@apply
px-0
text-white
}
body.dark-mode .dropdown{
background-color: rgb(0 0 0 / 50%);
color: #fff;
}
body .d_menu {
body.dark-mode .d_menu {
background-color: rgba(34 34 34);
}