Skip to content

Commit

Permalink
moved colors to variables so its easier to add themes
Browse files Browse the repository at this point in the history
  • Loading branch information
paczek654321 authored May 23, 2024
1 parent f23bb11 commit e1ae323
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions main.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
{
--primary-color: rgb(129, 107, 129);
--secondary-color: rgb(2, 0, 34);
--project-text-color: rgb(3, 0, 27);
--distinct-link-color: rgb(9, 0, 78);
}
body
{
Expand All @@ -18,7 +20,7 @@ body
{
border: solid 0.1vmin black;
font-size: 3vmin;
color: rgb(3, 0, 27);
color: var(--project-link-color);
text-align: center;
border-radius: 2%;
border-top-left-radius: 7%;
Expand All @@ -39,7 +41,7 @@ ul
}
a
{
color: rgb(3, 0, 27);
color: var(--project-link-color);
}
#Name
{
Expand Down Expand Up @@ -73,5 +75,5 @@ a
}
a.blue
{
color: rgb(9, 0, 78);
color: var(--distinct-link-color);
}

0 comments on commit e1ae323

Please sign in to comment.