Add blue color scheme
This commit is contained in:
parent
468a586d28
commit
5d31080354
@ -25,6 +25,6 @@
|
|||||||
|
|
||||||
<style>
|
<style>
|
||||||
.message {
|
.message {
|
||||||
color: var(--light-text-color);
|
color: var(--island-txt-color);
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -27,6 +27,6 @@
|
|||||||
|
|
||||||
<style>
|
<style>
|
||||||
.message {
|
.message {
|
||||||
color: var(--light-text-color);
|
color: var(--island-txt-color);
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
<style>
|
<style>
|
||||||
a {
|
a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
color: var(--second-bg-color);
|
color: var(--island-txt-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.tag-container {
|
.tag-container {
|
||||||
|
@ -16,6 +16,6 @@
|
|||||||
<style>
|
<style>
|
||||||
a {
|
a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
color: var(--second-bg-color);
|
color: var(--island-txt-color);
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -34,7 +34,7 @@
|
|||||||
|
|
||||||
<style>
|
<style>
|
||||||
.message {
|
.message {
|
||||||
color: var(--second-bg-color);
|
color: var(--island-txt-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.tag-box {
|
.tag-box {
|
||||||
|
@ -1,16 +1,4 @@
|
|||||||
/*:root {
|
/* Color Scheme: Brown *//*
|
||||||
--main-bg-color: lightslategrey;
|
|
||||||
--accent-color: rgb(234, 255, 97);
|
|
||||||
--accent-rollover: yellow;
|
|
||||||
--overlay-color: #2f4f4fb8;
|
|
||||||
--main-text-color: azure;
|
|
||||||
--light-text-color: azure;
|
|
||||||
--dark-text-color: rgb(56, 56, 7);
|
|
||||||
--link-color: cyan;
|
|
||||||
--link-visited-color: rgb(189, 0, 189);
|
|
||||||
}*/
|
|
||||||
|
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
--accent-bg-color: #271c19;
|
--accent-bg-color: #271c19;
|
||||||
--accent-heading-color: #fffffe;
|
--accent-heading-color: #fffffe;
|
||||||
@ -21,13 +9,33 @@
|
|||||||
--second-txt-color: #fff3ec;
|
--second-txt-color: #fff3ec;
|
||||||
--second-link-color: #9656a1;
|
--second-link-color: #9656a1;
|
||||||
--main-bg-color: #fff3ec;
|
--main-bg-color: #fff3ec;
|
||||||
--main-heading-color: #271c19; /* NEEDS TO BE DARKER */
|
--main-heading-color: #271c19;
|
||||||
--main-txt-color: #271c19; /* NEEDS TO BE DARKER */
|
--main-txt-color: #271c19;
|
||||||
--main-link-color: #9656a1;
|
--main-link-color: #9656a1;
|
||||||
--island-bg-color: #ffc0ad;
|
--island-bg-color: #ffc0ad;
|
||||||
--island-heading-color: #271c19;
|
--island-heading-color: #271c19;
|
||||||
--island-txt-color: #271c19;
|
--island-txt-color: #271c19;
|
||||||
--island-link-color: #9656a1;
|
--island-link-color: #9656a1;
|
||||||
|
}*/
|
||||||
|
|
||||||
|
/* Color Scheme: Blue */ /* Much nicer than the brown */
|
||||||
|
:root {
|
||||||
|
--accent-bg-color: #232946;
|
||||||
|
--accent-heading-color: #fffffe;
|
||||||
|
--accent-txt-color: #b8c1ec;
|
||||||
|
--accent-link-color: #9656a1;
|
||||||
|
--second-bg-color: #232946;
|
||||||
|
--second-heading-color: #fffffe;
|
||||||
|
--second-txt-color: #b8c1ec;
|
||||||
|
--second-link-color: #9656a1;
|
||||||
|
--main-bg-color: #d4d8f0;
|
||||||
|
--main-heading-color: #232946; /* NEEDS TO BE DARKER */
|
||||||
|
--main-txt-color: #232946; /* NEEDS TO BE DARKER */
|
||||||
|
--main-link-color: #eebbc3;
|
||||||
|
--island-bg-color: #fffffe;
|
||||||
|
--island-heading-color: #232946;
|
||||||
|
--island-txt-color: #232946;
|
||||||
|
--island-link-color: #b8c1ec;
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
background-color: var(--second-bg-color);
|
background-color: var(--second-bg-color);
|
||||||
box-shadow: 0px 3px 2px rgba(0,0,0,0.19);
|
box-shadow: 0px 3px 2px rgba(0,0,0,0.19);
|
||||||
color: var(--second-txt-color);
|
color: var(--second-heading-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
|
@ -45,7 +45,7 @@
|
|||||||
nav a {
|
nav a {
|
||||||
float: left;
|
float: left;
|
||||||
display: block;
|
display: block;
|
||||||
color: var(--second-txt-color);
|
color: var(--second-heading-color);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
padding: 10px 15px;
|
padding: 10px 15px;
|
||||||
margin-right: 1px;
|
margin-right: 1px;
|
||||||
@ -57,7 +57,7 @@
|
|||||||
|
|
||||||
nav a:hover {
|
nav a:hover {
|
||||||
background-color: var(--main-bg-color);
|
background-color: var(--main-bg-color);
|
||||||
color: var(--light-text-color);
|
color: var(--main-heading-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
nav a:active {
|
nav a:active {
|
||||||
|
@ -9,10 +9,10 @@
|
|||||||
<style>
|
<style>
|
||||||
.tag-link {
|
.tag-link {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
color: var(--second-txt-color);
|
color: var(--island-txt-color);
|
||||||
padding: 3px 5px 3px 5px;
|
padding: 3px 5px 3px 5px;
|
||||||
margin: 10px;
|
margin: 10px;
|
||||||
background-color: var(--main-link-color);
|
background-color: var(--island-link-color);
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
box-shadow: 1px 1px 2px rgba(0,0,0,0.19);
|
box-shadow: 1px 1px 2px rgba(0,0,0,0.19);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user