Skip to content

Commit

Permalink
Support light theme
Browse files Browse the repository at this point in the history
  • Loading branch information
khaledhosny committed Oct 25, 2024
1 parent 51c17f5 commit 49f22e1
Showing 1 changed file with 14 additions and 7 deletions.
21 changes: 14 additions & 7 deletions docs/assets/css/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,13 @@
}

:root {
color-scheme: light dark;
--body-background-color: light-dark(#FFFAED, black);
--body-color: light-dark(black, lightgray);
--kufi-family: "Raqq", serif;
--kufi-color: #DFDFDF;
--kufi-color: light-dark(black, #DFDFDF);
--download-background-color: light-dark(black, #F4F4F4);
--download-color: light-dark(#FFFAED, #676767);
--title-family: "Qahiri", serif;
--main-family: "Amiri", serif;
--heading-family: "Reem Kufi", sans-serif;
Expand All @@ -48,17 +53,19 @@
--h1-font-size: 1.5em;
}

body * {
font-palette: dark;
@media (prefers-color-scheme: dark) {
body * {
font-palette: dark;
}
}

body {
font-family: var(--main-family);
font-size: 14pt;
font-weight: 400;
font-variant-numeric: proportional-nums;
background-color: black;
color: lightgray;
background-color: var(--body-background-color);
color: var(--body-color);
max-width: 1240px;
padding: 0 15px;
margin: 50px auto;
Expand Down Expand Up @@ -191,15 +198,15 @@ footer p {
}

.downloads {
background: #f4f4f4;
background: var(--download-background-color);
border-radius: 35px;
border: 1px solid #e0e0e0;
}

.downloads a {
line-height: 200%;
font-size: 120%;
color: #676767;
color: var(--download-color);
text-align: center;
}

Expand Down

0 comments on commit 49f22e1

Please sign in to comment.