chore: make colors less abrupt
This commit is contained in:
parent
5756ff038b
commit
26ae53f8bb
3 changed files with 6 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "7.8.1",
|
"version": "7.9.1",
|
||||||
"description": "The source for my personal site. Built using 11ty.",
|
"description": "The source for my personal site. Built using 11ty.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
border-radius: var(--rounded-full);
|
border-radius: var(--rounded-full);
|
||||||
display: flex;
|
display: flex;
|
||||||
padding: var(--sizing-lg);
|
padding: var(--sizing-lg);
|
||||||
background-color: var(--color-lightest);
|
background-color: var(--white);
|
||||||
}
|
}
|
||||||
|
|
||||||
.avatar__wrapper,
|
.avatar__wrapper,
|
||||||
|
|
|
@ -27,13 +27,15 @@
|
||||||
--white: #fff;
|
--white: #fff;
|
||||||
--black: #000;
|
--black: #000;
|
||||||
|
|
||||||
|
--grey-lightest: #f4f4f4;
|
||||||
--gray-light: var(--gray-200);
|
--gray-light: var(--gray-200);
|
||||||
--gray-lighter: var(--gray-50);
|
--gray-lighter: var(--gray-50);
|
||||||
--gray-dark: var(--gray-700);
|
--gray-dark: var(--gray-700);
|
||||||
|
--gray-darkest: #1d1a1a;
|
||||||
|
|
||||||
/* base theme */
|
/* base theme */
|
||||||
--color-lightest: var(--white);
|
--color-lightest: var(--grey-lightest);
|
||||||
--color-darkest: var(--black);
|
--color-darkest: var(--gray-darkest);
|
||||||
--text-color: var(--color-darkest);
|
--text-color: var(--color-darkest);
|
||||||
--background-color: var(--color-lightest);
|
--background-color: var(--color-lightest);
|
||||||
--text-color-inverted: var(--color-lightest);
|
--text-color-inverted: var(--color-lightest);
|
||||||
|
|
Reference in a new issue