Merge pull request #674 from repose-theme/master

Add Repose dark and light themes
This commit is contained in:
Jack 2020-12-08 21:45:16 +00:00 committed by GitHub
commit 58e0cf5df9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 32 additions and 0 deletions

View file

@ -443,5 +443,15 @@
"name": "darling",
"bgColor": "#fec8cd",
"textColor": "#ffffff"
},
{
"name": "repose_dark",
"bgColor": "#2f3338",
"textColor": "#d6d2bc"
},
{
"name": "repose_light",
"bgColor": "#efead0",
"textColor": "#333538"
}
]

View file

@ -0,0 +1,11 @@
:root {
--bg-color: #2F3338;
--main-color: #D6D2BC;
--caret-color: #D6D2BC;
--sub-color: #8F8E84;
--text-color: #D6D2BC;
--error-color: #FF4A59;
--error-extra-color: #C43C53;
--colorful-error-color: #FF4A59;
--colorful-error-extra-color: #C43C53;
}

View file

@ -0,0 +1,11 @@
:root {
--bg-color: #EFEAD0;
--main-color: #5F605E;
--caret-color: #5F605E;
--sub-color: #8F8E84;
--text-color: #333538;
--error-color: #C43C53;
--error-extra-color: #A52632;
--colorful-error-color: #C43C53;
--colorful-error-extra-color: #A52632;
}