From c59bcf3aab38fa26a435416777df478b5e858f41 Mon Sep 17 00:00:00 2001 From: Boris Faure Date: Wed, 25 Nov 2020 23:05:48 +0100 Subject: [PATCH] colorschemes: add Tomorrow Night Burns --- data/colorschemes/Tomorrow Night Burns.ini | 75 ++++++++++++++++++++++ data/colorschemes/meson.build | 1 + 2 files changed, 76 insertions(+) create mode 100644 data/colorschemes/Tomorrow Night Burns.ini diff --git a/data/colorschemes/Tomorrow Night Burns.ini b/data/colorschemes/Tomorrow Night Burns.ini new file mode 100644 index 00000000..ad4dcdfb --- /dev/null +++ b/data/colorschemes/Tomorrow Night Burns.ini @@ -0,0 +1,75 @@ +[Main] +version = 1 + +[Metadata] +version = 1 +name = Tomorrow Night Burns +author = Ashwin Vaswani +website = https://github.com/mbadolato/iTerm2-Color-Schemes +license = MIT + +[Colors] +bg = #151515 +main = #a1b0b8 +hl = #ffffff +end_sel = #ff3300 +tab_missed_1 = #ff9933 +tab_missed_2 = #ff3300 +tab_missed_3 = #ff0000 +tab_missed_over_1 = #ffff40 +tab_missed_over_2 = #ff9933 +tab_missed_over_3 = #ff0000 +tab_title_2 = #000000 + +[Normal] +def = #a1b0b8 +black = #252525 +red = #832e31 +green = #a63b3f +yellow = #d2494e +blue = #fc595f +magenta = #df9395 +cyan = #b98486 +white = #f5f5f5 +inverse_fg = #151515 +inverse_bg = #a1b0b8 + +[Bright] +def = #a1b0b8 +black = #5d6f71 +red = #832e31 +green = #a63c3f +yellow = #d2484d +blue = #fc595f +magenta = #df9395 +cyan = #b98486 +white = #f5f5f5 +inverse_fg = #151515 +inverse_bg = #a1b0b8 + +[Faint] +def = #7e898f +black = #212121 +red = #67272a +green = #813134 +yellow = #a23c3f +blue = #c2484c +magenta = #ac7375 +cyan = #906869 +white = #bdbdbd +inverse_fg = #151515 +inverse_bg = #7e898f + +[BrightFaint] +def = #7e898f +black = #4b585a +red = #67272a +green = #813234 +yellow = #a23b3f +blue = #c2484c +magenta = #ac7375 +cyan = #906869 +white = #bdbdbd +inverse_fg = #151515 +inverse_bg = #7e898f + diff --git a/data/colorschemes/meson.build b/data/colorschemes/meson.build index d19d3f5f..3f5b1b22 100644 --- a/data/colorschemes/meson.build +++ b/data/colorschemes/meson.build @@ -14,6 +14,7 @@ colorschemes_desc = [ 'Solarized Light.ini', 'Tango Dark.ini', 'Tango Light.ini', + 'Tomorrow Night Burns.ini', ] cs_builder = [join_paths(meson.source_root(), 'data', 'colorschemes', 'builder.sh'),