forked from mbadolato/iTerm2-Color-Schemes
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Also adds a script to convert Kitty to YAML. Follows up on mbadolato#490
- Loading branch information
Showing
34 changed files
with
602 additions
and
428 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 |
---|---|---|
@@ -1,43 +1,43 @@ | ||
! | ||
! Dracula | ||
! | ||
*.foreground: #e6e6e6 | ||
*.background: #1e1f29 | ||
*.cursorColor: #bbbbbb | ||
*.foreground: #f8f8f2 | ||
*.background: #282a36 | ||
*.cursorColor: #f8f8f2 | ||
! | ||
! Black | ||
*.color0: #000000 | ||
*.color8: #555555 | ||
*.color0: #21222c | ||
*.color8: #6272a4 | ||
! | ||
! Red | ||
*.color1: #ff5555 | ||
*.color9: #ff5555 | ||
*.color9: #ff6e6e | ||
! | ||
! Green | ||
*.color2: #50fa7b | ||
*.color10: #50fa7b | ||
*.color10: #69ff94 | ||
! | ||
! Yellow | ||
*.color3: #f1fa8c | ||
*.color11: #f1fa8c | ||
*.color11: #ffffa5 | ||
! | ||
! Blue | ||
*.color4: #bd93f9 | ||
*.color12: #bd93f9 | ||
*.color12: #d6acff | ||
! | ||
! Magenta | ||
*.color5: #ff79c6 | ||
*.color13: #ff79c6 | ||
*.color13: #ff92df | ||
! | ||
! Cyan | ||
*.color6: #8be9fd | ||
*.color14: #8be9fd | ||
*.color14: #a4ffff | ||
! | ||
! White | ||
*.color7: #bbbbbb | ||
*.color7: #f8f8f2 | ||
*.color15: #ffffff | ||
! | ||
! Bold, Italic, Underline | ||
*.colorBD: #e6e6e6 | ||
*.colorBD: #f8f8f2 | ||
!*.colorIT: | ||
!*.colorUL: |
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
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#!/bin/sh | ||
# Dracula | ||
printf "\033]4;0;#000000;1;#ff5555;2;#50fa7b;3;#f1fa8c;4;#bd93f9;5;#ff79c6;6;#8be9fd;7;#bbbbbb;8;#555555;9;#ff5555;10;#50fa7b;11;#f1fa8c;12;#bd93f9;13;#ff79c6;14;#8be9fd;15;#ffffff\007" | ||
printf "\033]10;#e6e6e6;#1e1f29;#bbbbbb\007" | ||
printf "\033]4;0;#21222c;1;#ff5555;2;#50fa7b;3;#f1fa8c;4;#bd93f9;5;#ff79c6;6;#8be9fd;7;#f8f8f2;8;#6272a4;9;#ff6e6e;10;#69ff94;11;#ffffa5;12;#d6acff;13;#ff92df;14;#a4ffff;15;#ffffff\007" | ||
printf "\033]10;#f8f8f2;#282a36;#f8f8f2\007" | ||
printf "\033]17;#44475a\007" | ||
printf "\033]19;#ffffff\007" | ||
printf "\033]5;0;#e6e6e6\007" | ||
printf "\033]5;0;#f8f8f2\007" |
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 |
---|---|---|
@@ -1,35 +1,37 @@ | ||
|
||
themeName=Dracula | ||
main-dark=#000 | ||
main-light=#2E3338 | ||
text=#ddd | ||
text-light=#fff | ||
text-dark=#888 | ||
text-disabled=#777 | ||
main=#ededed | ||
main-dark=#cccccc | ||
main-light=#fefefe | ||
text=#555 | ||
text-light=#777 | ||
text-dark=#444 | ||
text-disabled=#888 | ||
primary=#08c | ||
info=#FFD166 | ||
success=#06D6A0 | ||
error=#EF476F | ||
warn=#E55934 | ||
main=#1e1f29 | ||
terminal:background=#1e1f29 | ||
terminal:foreground=#e6e6e6 | ||
terminal:cursor=#bbbbbb | ||
warn=#E55934 | ||
main=#282a36 | ||
terminal:background=#282a36 | ||
terminal:foreground=#f8f8f2 | ||
terminal:cursor=#f8f8f2 | ||
terminal:selection=#44475a | ||
terminal:cursorAccent=#1e1f29 | ||
terminal:black=#000000 | ||
terminal:cursorAccent=#282a36 | ||
terminal:black=#21222c | ||
terminal:red=#ff5555 | ||
terminal:green=#50fa7b | ||
terminal:yellow=#f1fa8c | ||
terminal:blue=#bd93f9 | ||
terminal:magenta=#ff79c6 | ||
terminal:cyan=#8be9fd | ||
terminal:white=#bbbbbb | ||
terminal:brightBlack=#555555 | ||
terminal:brightRed=#ff5555 | ||
terminal:brightGreen=#50fa7b | ||
terminal:brightYellow=#f1fa8c | ||
terminal:brightBlue=#bd93f9 | ||
terminal:brightMagenta=#ff79c6 | ||
terminal:brightCyan=#8be9fd | ||
terminal:white=#f8f8f2 | ||
terminal:brightBlack=#6272a4 | ||
terminal:brightRed=#ff6e6e | ||
terminal:brightGreen=#69ff94 | ||
terminal:brightYellow=#ffffa5 | ||
terminal:brightBlue=#d6acff | ||
terminal:brightMagenta=#ff92df | ||
terminal:brightCyan=#a4ffff | ||
terminal:brightWhite=#ffffff |
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 |
---|---|---|
@@ -1,25 +1,25 @@ | ||
|
||
[cursor] | ||
color=ffffff bbbbbb | ||
color=282a36 f8f8f2 | ||
|
||
[colors] | ||
foreground=e6e6e6 | ||
background=1e1f29 | ||
regular0=000000 | ||
foreground=f8f8f2 | ||
background=282a36 | ||
regular0=21222c | ||
regular1=ff5555 | ||
regular2=50fa7b | ||
regular3=f1fa8c | ||
regular4=bd93f9 | ||
regular5=ff79c6 | ||
regular6=8be9fd | ||
regular7=bbbbbb | ||
bright0=555555 | ||
bright1=ff5555 | ||
bright2=50fa7b | ||
bright3=f1fa8c | ||
bright4=bd93f9 | ||
bright5=ff79c6 | ||
bright6=8be9fd | ||
regular7=f8f8f2 | ||
bright0=6272a4 | ||
bright1=ff6e6e | ||
bright2=69ff94 | ||
bright3=ffffa5 | ||
bright4=d6acff | ||
bright5=ff92df | ||
bright6=a4ffff | ||
bright7=ffffff | ||
selection-foreground=ffffff | ||
selection-background=44475a |
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 |
---|---|---|
@@ -1,17 +1,17 @@ | ||
# Dracula | ||
kern.vt.color.0.rgb="#000000" | ||
kern.vt.color.0.rgb="#21222c" | ||
kern.vt.color.1.rgb="#ff5555" | ||
kern.vt.color.2.rgb="#50fa7b" | ||
kern.vt.color.3.rgb="#f1fa8c" | ||
kern.vt.color.4.rgb="#bd93f9" | ||
kern.vt.color.5.rgb="#ff79c6" | ||
kern.vt.color.6.rgb="#8be9fd" | ||
kern.vt.color.7.rgb="#e6e6e6" | ||
kern.vt.color.8.rgb="#555555" | ||
kern.vt.color.9.rgb="#ff5555" | ||
kern.vt.color.10.rgb="#50fa7b" | ||
kern.vt.color.11.rgb="#f1fa8c" | ||
kern.vt.color.12.rgb="#bd93f9" | ||
kern.vt.color.13.rgb="#ff79c6" | ||
kern.vt.color.14.rgb="#8be9fd" | ||
kern.vt.color.7.rgb="#f8f8f2" | ||
kern.vt.color.8.rgb="#6272a4" | ||
kern.vt.color.9.rgb="#ff6e6e" | ||
kern.vt.color.10.rgb="#69ff94" | ||
kern.vt.color.11.rgb="#ffffa5" | ||
kern.vt.color.12.rgb="#d6acff" | ||
kern.vt.color.13.rgb="#ff92df" | ||
kern.vt.color.14.rgb="#a4ffff" | ||
kern.vt.color.15.rgb="#ffffff" |
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 |
---|---|---|
@@ -1,22 +1,22 @@ | ||
palette = 0=#000000 | ||
palette = 0=#21222c | ||
palette = 1=#ff5555 | ||
palette = 2=#50fa7b | ||
palette = 3=#f1fa8c | ||
palette = 4=#bd93f9 | ||
palette = 5=#ff79c6 | ||
palette = 6=#8be9fd | ||
palette = 7=#bbbbbb | ||
palette = 8=#555555 | ||
palette = 9=#ff5555 | ||
palette = 10=#50fa7b | ||
palette = 11=#f1fa8c | ||
palette = 12=#bd93f9 | ||
palette = 13=#ff79c6 | ||
palette = 14=#8be9fd | ||
palette = 7=#f8f8f2 | ||
palette = 8=#6272a4 | ||
palette = 9=#ff6e6e | ||
palette = 10=#69ff94 | ||
palette = 11=#ffffa5 | ||
palette = 12=#d6acff | ||
palette = 13=#ff92df | ||
palette = 14=#a4ffff | ||
palette = 15=#ffffff | ||
background = #1e1f29 | ||
foreground = #e6e6e6 | ||
cursor-color = #bbbbbb | ||
cursor-text = #ffffff | ||
background = #282a36 | ||
foreground = #f8f8f2 | ||
cursor-color = #f8f8f2 | ||
cursor-text = #282a36 | ||
selection-background = #44475a | ||
selection-foreground = #ffffff |
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 |
---|---|---|
@@ -1,44 +1,44 @@ | ||
|
||
|
||
color_0 = bbbb bbbb bbbb | ||
color_1 = 0000 0000 0000 | ||
color_0 = f8f8 f8f8 f2f2 | ||
color_1 = 2121 2222 2c2c | ||
color_2 = bdbd 9393 f9f9 | ||
color_3 = 5050 fafa 7b7b | ||
color_4 = ffff 5555 5555 | ||
color_5 = f1f1 fafa 8c8c | ||
color_6 = ffff 7979 c6c6 | ||
color_7 = ffff 5555 5555 | ||
color_8 = f1f1 fafa 8c8c | ||
color_9 = 5050 fafa 7b7b | ||
color_7 = ffff 6e6e 6e6e | ||
color_8 = ffff ffff a5a5 | ||
color_9 = 6969 ffff 9494 | ||
color_10 = 8b8b e9e9 fdfd | ||
color_11 = 8b8b e9e9 fdfd | ||
color_12 = bdbd 9393 f9f9 | ||
color_13 = ffff 7979 c6c6 | ||
color_14 = 5555 5555 5555 | ||
color_11 = a4a4 ffff ffff | ||
color_12 = d6d6 acac ffff | ||
color_13 = ffff 9292 dfdf | ||
color_14 = 6262 7272 a4a4 | ||
color_15 = ffff ffff ffff | ||
color_16 = bbbb bbbb bbbb | ||
color_17 = 0000 0000 0000 | ||
color_16 = f8f8 f8f8 f2f2 | ||
color_17 = 2121 2222 2c2c | ||
color_18 = bdbd 9393 f9f9 | ||
color_19 = 5050 fafa 7b7b | ||
color_20 = ffff 5555 5555 | ||
color_21 = f1f1 fafa 8c8c | ||
color_22 = ffff 7979 c6c6 | ||
color_23 = ffff 5555 5555 | ||
color_24 = f1f1 fafa 8c8c | ||
color_25 = 5050 fafa 7b7b | ||
color_23 = ffff 6e6e 6e6e | ||
color_24 = ffff ffff a5a5 | ||
color_25 = 6969 ffff 9494 | ||
color_26 = 8b8b e9e9 fdfd | ||
color_27 = 8b8b e9e9 fdfd | ||
color_28 = bdbd 9393 f9f9 | ||
color_29 = ffff 7979 c6c6 | ||
color_30 = 5555 5555 5555 | ||
color_27 = a4a4 ffff ffff | ||
color_28 = d6d6 acac ffff | ||
color_29 = ffff 9292 dfdf | ||
color_30 = 6262 7272 a4a4 | ||
color_31 = ffff ffff ffff | ||
color_256 = ffff ffff ffff | ||
color_257 = 4444 4747 5a5a | ||
color_258 = e6e6 e6e6 e6e6 | ||
color_259 = 1e1e 1f1f 2929 | ||
color_258 = f8f8 f8f8 f2f2 | ||
color_259 = 2828 2a2a 3636 | ||
color_260 = f1f1 fafa 8c8c | ||
color_261 = bdbd 9393 f9f9 | ||
color_262 = 5050 fafa 7b7b | ||
color_263 = ffff 5555 5555 | ||
color_263 = ffff 6e6e 6e6e | ||
color_264 = ffff ffff ffff | ||
color_265 = ffff 5555 5555 |
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 |
---|---|---|
@@ -1,24 +1,24 @@ | ||
#!/bin/sh | ||
# Dracula | ||
printf "\033]P0000000\033\\" | ||
printf "\033]P021222c\033\\" | ||
printf "\033]P1ff5555\033\\" | ||
printf "\033]P250fa7b\033\\" | ||
printf "\033]P3f1fa8c\033\\" | ||
printf "\033]P4bd93f9\033\\" | ||
printf "\033]P5ff79c6\033\\" | ||
printf "\033]P68be9fd\033\\" | ||
printf "\033]P7bbbbbb\033\\" | ||
printf "\033]P8555555\033\\" | ||
printf "\033]P9ff5555\033\\" | ||
printf "\033]Pa50fa7b\033\\" | ||
printf "\033]Pbf1fa8c\033\\" | ||
printf "\033]Pcbd93f9\033\\" | ||
printf "\033]Pdff79c6\033\\" | ||
printf "\033]Pe8be9fd\033\\" | ||
printf "\033]P7f8f8f2\033\\" | ||
printf "\033]P86272a4\033\\" | ||
printf "\033]P9ff6e6e\033\\" | ||
printf "\033]Pa69ff94\033\\" | ||
printf "\033]Pbffffa5\033\\" | ||
printf "\033]Pcd6acff\033\\" | ||
printf "\033]Pdff92df\033\\" | ||
printf "\033]Pea4ffff\033\\" | ||
printf "\033]Pfffffff\033\\" | ||
printf "\033]Pge6e6e6\033\\" | ||
printf "\033]Ph1e1f29\033\\" | ||
printf "\033]Plbbbbbb\033\\" | ||
printf "\033]Pgf8f8f2\033\\" | ||
printf "\033]Ph282a36\033\\" | ||
printf "\033]Plf8f8f2\033\\" | ||
printf "\033]Pj44475a\033\\" | ||
printf "\033]Pkffffff\033\\" | ||
printf "\033]Pie6e6e6\033\\" | ||
printf "\033]Pif8f8f2\033\\" |
Oops, something went wrong.