diff --git a/css/style.css b/css/style.css index f331eb2..07cc7af 100644 --- a/css/style.css +++ b/css/style.css @@ -21,6 +21,8 @@ body { --purpText: #7166af; --yellColor: #fcfcbf; --yellText: #8c8c5f; + --pinkColor: #fca9d6; + --pinkText: #7f556c; --blueColor: #ade3ff; --blueText: #46748c; } @@ -70,6 +72,12 @@ body.yell-mode { --textColor: #8c8c5f; --boldColor: #353528; } +body.pink-mode { + --bgColor: #fca9d6; + --iconColor: #54543f; + --textColor: #6b5260; + --boldColor: #513645; +} body.blue-mode { --bgColor: #ade3ff; --iconColor: #394b54; diff --git a/css/style.scss b/css/style.scss index e64aee9..dc85beb 100644 --- a/css/style.scss +++ b/css/style.scss @@ -71,6 +71,15 @@ body { --boldColor: #353528; } + --pinkColor: #fca9d6; + --pinkText: #7f556c; + &.pink-mode { + --bgColor: #fca9d6; + --iconColor: #54543f; + --textColor: #6b5260; + --boldColor: #513645; + } + --blueColor: #ade3ff; --blueText: #46748c; &.blue-mode { diff --git a/index.html b/index.html index fbe2351..b70e411 100644 --- a/index.html +++ b/index.html @@ -21,7 +21,7 @@