Merge pull request #1402 from raymon-zhang/master

Blueberry light and dark theme
This commit is contained in:
Jack 2021-05-15 23:11:30 +01:00 committed by GitHub
commit 39217026dc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 40 additions and 0 deletions

View file

@ -543,5 +543,15 @@
"name": "midnight",
"bgColor": "#0c0e12",
"textColor": "#525f7a"
},
{
"name": "blueberry_light",
"bgColor": "#dae0f5",
"textColor": "#678198"
},
{
"name": "blueberry_dark",
"bgColor": "#212b42",
"textColor": "#91b4d5"
}
]

View file

@ -0,0 +1,15 @@
:root {
--bg-color: #212b42;
--main-color: #add7ff;
--caret-color: #11d964;
--sub-color: #5c7da5;
--text-color: #91b4d5;
--error-color: #df4576;
--error-extra-color: #d996ac;
--colorful-error-color: #df4576;
--colorful-error-extra-color: #d996ac;
}
#top .logo .bottom {
color: #962f7e;
}

View file

@ -0,0 +1,15 @@
:root {
--bg-color: #dae0f5;
--main-color: #506477;
--caret-color: #06bd80;
--sub-color: #92a4be;
--text-color: #678198;
--error-color: #df4576;
--error-extra-color: #d996ac;
--colorful-error-color: #df4576;
--colorful-error-extra-color: #d996ac;
}
#top .logo .bottom {
color: #df4576;
}