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 46528f2 commit 51aa5f2
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 @@ -23,8 +23,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);
--main-family: "Amiri", serif;
--heading-family: "Reem Kufi", sans-serif;
--h1-font-size: 40px;
Expand All @@ -37,17 +42,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 @@ -171,15 +178,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 51aa5f2

Please sign in to comment.