Merge pull request #174 from jkjrmlg/dev_branch

Added Solarized Dark and Light themes
This commit is contained in:
Jack 2020-07-06 00:28:17 +01:00 committed by GitHub
commit 7195530510
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 32 additions and 0 deletions

View file

@ -227,6 +227,16 @@
"name": "dualshot",
"bgColor": "#2d2e30",
"textColor": "#212222"
},
{
"name": "solarized_dark",
"bgColor": "#002b36",
"textColor": "#859900"
},
{
"name": "solarized_light",
"bgColor": "#fdf6e3",
"textColor": "#859900"
}
]

View file

@ -0,0 +1,11 @@
:root {
--bg-color: #002b36;
--main-color: #859900;
--caret-color: #dc322f;
--sub-color: #2aa198;
--text-color: #268bd2;
--error-color: #d33682;
--error-extra-color: #9b225c;
--colorful-error-color: #d33682 ;
--colorful-error-extra-color: #9b225c;
}

View file

@ -0,0 +1,11 @@
:root {
--bg-color: #fdf6e3;
--main-color: #859900;
--caret-color: #dc322f;
--sub-color: #2aa198;
--text-color: #268bd2;
--error-color: #d33682;
--error-extra-color: #9b225c;
--colorful-error-color: #d33682 ;
--colorful-error-extra-color: #9b225c;
}