-
-
Notifications
You must be signed in to change notification settings - Fork 690
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(themes): unify filename and themename usage (#1492)
- Loading branch information
Showing
10 changed files
with
70 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Themes | ||
Please make sure that the theme name and the file name are the same (+`.yaml`). | ||
|
||
Example: | ||
|
||
- theme: gruvbox | ||
- filename: `gruvbox.yaml` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Gruvbox theme | ||
|
||
themes: | ||
gruvbox-light: | ||
bg: [251, 82, 75] | ||
red: [205, 75, 69] | ||
green: [152, 151, 26] | ||
yellow: [215, 153, 33] | ||
blue: [69, 133, 136] | ||
magenta: [177, 98, 134] | ||
orange: [214, 93, 14] | ||
fg: [60, 56, 54] | ||
cyan: [104, 157, 106] | ||
black: [40, 40, 40] | ||
white: [213, 196, 161] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Gruvbox theme | ||
|
||
themes: | ||
gruvbox-light: | ||
bg: [251, 82, 75] | ||
red: [205, 75, 69] | ||
green: [152, 151, 26] | ||
yellow: [215, 153, 33] | ||
blue: [69, 133, 136] | ||
magenta: [177, 98, 134] | ||
orange: [214, 93, 14] | ||
fg: [60, 56, 54] | ||
cyan: [104, 157, 106] | ||
black: [40, 40, 40] | ||
white: [213, 196, 161] |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,4 +12,4 @@ themes: | |
fg: [248, 248, 240] | ||
cyan: [0, 255, 255] | ||
black: [0, 0, 0] | ||
white: [255, 255, 255] | ||
white: [255, 255, 255] |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# TokyoNight Theme | ||
# Originally by https://github.com/enkia/tokyo-night-vscode-theme | ||
|
||
themes: | ||
tokyo-night-light: | ||
fg: [52,59,88] #343B58 | ||
bg: [213,214,219] #D5D6DB | ||
black: [15,15,20] #0F0F14 | ||
red: [186,75,96] #BA4B60 | ||
green: [72,94,48] #485E30 | ||
yellow: [143,94,21] #8F5E15 | ||
blue: [52,84,138] #34548A | ||
magenta: [90,74,120] #5A4A78 | ||
cyan: [15,75,110] #0F4B6E | ||
white: [130,137,172] #8289AC | ||
orange: [150,80,39] #965027 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# TokyoNight Theme | ||
# Originally by https://github.com/enkia/tokyo-night-vscode-theme | ||
|
||
themes: | ||
tokyo-night-storm: | ||
fg: [169,177,214] #A9B1D6 | ||
bg: [36,40,59] #24283B | ||
black: [56,62,90] #383E5A | ||
red: [249,51,87] #F9334D | ||
green: [158,206,106] #9ECE6A | ||
yellow: [224,175,104] #E0AF68 | ||
blue: [122,162,247] #7AA2F7 | ||
magenta: [187,154,247] #BB9AF7 | ||
cyan: [42,195,222] #2AC3DE | ||
white: [192,202,245] #C0CAF5 | ||
orange: [255,158,100] #FF9E64 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters