Skip to content

Commit

Permalink
update some colors
Browse files Browse the repository at this point in the history
  • Loading branch information
onx2 committed Jan 16, 2024
1 parent 758c888 commit 657d909
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 10 deletions.
2 changes: 1 addition & 1 deletion src/components/GlobalHeader/GlobalHeader.module.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.globalHeader {
width: 100%;
height: var(--global-header-height);
background-color: var(--background-color-default);
background-color: var(--gray);
border-bottom: 1px solid var(--border-color-default);
position: fixed;
top: 0;
Expand Down
7 changes: 2 additions & 5 deletions src/components/Link/Link.module.css
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
.a {
color: rgb(41, 172, 232);
color: var(--light-blue);
box-sizing: border-box;
text-decoration: none;

&:hover,
&:active {
color: rgb(21, 135, 188);
filter: brightness(115%);
text-decoration: underline;
}
&:visited {
color: rgb(25, 93, 187);
}
}
28 changes: 24 additions & 4 deletions src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,32 @@ body {
:root {
--global-header-height: 84px;

--background-color-default: #010409;
--background-color-default: var(--dark-gray);

--text-color-default: #e6edf3;
--text-color-muted: #c2c5c7;
--text-color-default: rgb(237, 228, 215);
--text-color-muted: rgb(236, 224, 190);

--border-color-default: #21262d;
--border-color-default: var(--light-gray);

/* Colors */
--white: rgb(255, 255, 255);
--light-gray: rgb(56, 55, 55);
--gray: rgb(24, 24, 24);
--dark-gray: rgb(19, 19, 19);
--black: rgb(0, 0, 0);

--light-blue: rgb(41, 153, 173);
--blue: rgb(17, 50, 56);
--dark-blue: rgb(11, 32, 39);

--purple: rgb(46, 17, 56);
--dark-purple: rgb(31, 11, 39);

--green: rgb(25, 56, 17);
--dark-green: rgb(15, 39, 11);

--orange: rgb(56, 38, 17);
--dark-orange: rgb(39, 24, 11);

/* Sizing */
--sizing-1: 2px;
Expand Down

0 comments on commit 657d909

Please sign in to comment.