Skip to content

Commit 26cfe00

Browse files
authored
Change contrast and hover color variables
Updated color variables for contrast and hover effects.
1 parent 956f068 commit 26cfe00

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

css/custom.css

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
/* variables */
44
:root {
5-
--contrast: rgb(181, 104, 76);
5+
--contrast: rgb(44, 110, 73);
66
--slate: rgb(233, 230, 225);
7-
--grey: rgba(34, 34, 34, 0.5);
7+
--hover: rgb(243, 167, 18);
88
--text: rgb(33, 29, 30); }
99

1010
/* container */
@@ -59,7 +59,7 @@ a {
5959
color: var(--contrast); }
6060

6161
a:hover {
62-
color: var(--grey); }
62+
color: var(--hover); }
6363

6464
/* images */
6565

@@ -81,7 +81,7 @@ img {
8181
color: var(--text); }
8282

8383
.title a:hover {
84-
color: var(--grey); }
84+
color: var(--hover); }
8585

8686
/* navigation */
8787

@@ -286,7 +286,7 @@ code {
286286

287287
.back-to-top:hover {
288288
color: #fff;
289-
background-color: var(--grey); }
289+
background-color: var(--hover); }
290290

291291
/*********************************** footer **********************************/
292292

@@ -314,7 +314,7 @@ code {
314314
color: inherit; }
315315

316316
.copyright a:hover {
317-
color: var(--grey); }
317+
color: var(--hover); }
318318

319319
/************************************ 404 ************************************/
320320

0 commit comments

Comments
 (0)