Skip to content

Commit

Permalink
dark mode only
Browse files Browse the repository at this point in the history
  • Loading branch information
Sindrir committed Dec 20, 2024
1 parent 8c10789 commit 1bdab1f
Showing 1 changed file with 29 additions and 53 deletions.
82 changes: 29 additions & 53 deletions src/App.css
Original file line number Diff line number Diff line change
@@ -1,75 +1,51 @@
:root {
font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
font-size: 16px;
line-height: 24px;
font-weight: 400;
font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
font-size: 16px;
line-height: 24px;
font-weight: 400;

color: #0f0f0f;
background-color: #f6f6f6;
color: #f6f6f6;
background-color: #2f2f2f;

font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-text-size-adjust: 100%;
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-text-size-adjust: 100%;
}

input,
button {
border-radius: 8px;
border: 1px solid transparent;
padding: 0.6em 1.2em;
font-size: 1em;
font-weight: 500;
font-family: inherit;
color: #0f0f0f;
background-color: #ffffff;
transition: border-color 0.25s;
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
border-radius: 8px;
border: 1px solid transparent;
padding: 0.6em 1.2em;
font-size: 1em;
font-weight: 500;
font-family: inherit;
color: #ffffff;
background-color: #0f0f0f98;
transition: border-color 0.25s;
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}

button {
cursor: pointer;
cursor: pointer;
}

button:hover {
border-color: #396cd8;
border-color: #396cd8;
}

button:active {
border-color: #396cd8;
background-color: #e8e8e8;
border-color: #396cd8;
background-color: #0f0f0f69;
}

@media (prefers-color-scheme: dark) {
:root {
color: #f6f6f6;
background-color: #2f2f2f;
}

a:hover {
a:hover {
color: #24c8db;
}

input,
button {
color: #ffffff;
background-color: #0f0f0f98;
}
button:active {
background-color: #0f0f0f69;
}
}

@media (prefers-color-scheme: dark) {
.errorColor {
.errorColor {
background-color: #aa0000;
color: white;
}
}

@media (prefers-color-scheme: light) {
.errorColor {
background-color: #ff7373;
color: black;
}
}
}

0 comments on commit 1bdab1f

Please sign in to comment.