Skip to content

Commit

Permalink
Tweak colors
Browse files Browse the repository at this point in the history
  • Loading branch information
kirillbobyrev committed May 16, 2023
1 parent 392526b commit 7c9920c
Showing 1 changed file with 19 additions and 9 deletions.
28 changes: 19 additions & 9 deletions assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@

:root {
/* Colors */
--text-color: #333;
--accent: #0969da;
--accent-background: #d5e5ff;
--accent-light: #66a3ff;
--background: white;
--muted: #c0c7d0;
--muted-text: #8a8a8a;
--code-background: #f5f6f9;
--text-color: #4a4a4a;
--heading-color: #000000;
--accent: #4285f4;
--accent-light: #93a9d1;
--tag-background: #e8f0fe;
--background: #ffffff;
--muted: #BDBDBD;
--muted-text: #9E9E9E;
--code-background: #f5f5f6;
/* Typography */
--line-height: 1.5;
}
Expand Down Expand Up @@ -146,7 +147,7 @@ time {
/* I kind of like this, but it isn't perfect, maybe work on styling the tags? */
.tag-cloud>li>a {
color: var(--text-color);
background-color: var(--accent-background);
background-color: var(--tag-background);
border-radius: 14px;
padding: 0 .5rem;
text-decoration: none;
Expand Down Expand Up @@ -179,6 +180,15 @@ h2::after {
background-color: var(--muted);
}

h1,
h2,
h3,
h4,
h5,
h6 {
color: var(--heading-color);
}

/* Misc */

/* TODO: The list ends up shifted too much to the right, likely need to reduce
Expand Down

0 comments on commit 7c9920c

Please sign in to comment.