Skip to content

Commit

Permalink
feat: define colors in root
Browse files Browse the repository at this point in the history
  • Loading branch information
CalfMoon committed Jun 24, 2024
1 parent 79674fa commit 0f41241
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,35 @@
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
line-height: 1.5;
font-weight: 400;
font-size: 18px;

font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;

--light-red: hsl(15, 100%, 70%);
--soft-blue: hsl(195, 74%, 62%);
--red: hsl(348, 100%, 68%);
--lime-green: hsl(145, 58%, 55%);
--violet: hsl(264, 64%, 52%);
--soft-orange: hsl(43, 84%, 65%);

--blue: hsl(246, 80%, 60%);
--very-dark-blue: hsl(226, 43%, 10%);
--dark-blue: hsl(235, 46%, 20%);
--desaturated-blue: hsl(235, 45%, 61%);
--pale-blue: hsl(236, 100%, 87%);

--text: hsl(210, 8%, 95%);
--text-no-focus: hsl(236, 100%, 87%);

--border-radius: 0.8rem;
--gap: 1.4rem;
}

* {
border: 0px;
padding: 0px;
margin: 0px;
}

0 comments on commit 0f41241

Please sign in to comment.