diff --git a/JSON b/JSON index d06fc04..97d9b8a 100644 --- a/JSON +++ b/JSON @@ -3,22 +3,22 @@ "author": "", "color": [ "#212125", - "#bc2a2a", + "#c24949", "#3eca3e", "#dcdc0f", "#6d6df3", "#d068d0", - "#0dcbcb", + "#00cbcb", "#e2e2e2", "#80776f", - "#bc2121", + "#c25959", "#3eca3e", "#dcdc00", "#915bf3", "#d040d0", - "#00cbcb", + "#78dada", "#f5f5f5" ], - "foreground": "#e0e892", + "foreground": "#fcffdc", "background": "#100f1f" } \ No newline at end of file diff --git a/alacritty b/alacritty index 903a32d..920416d 100644 --- a/alacritty +++ b/alacritty @@ -2,26 +2,26 @@ colors: # Default colors primary: background: '0x100f1f' - foreground: '0xe0e892' + foreground: '0xfcffdc' # Normal colors normal: black: '0x212125' - red: '0xbc2a2a' + red: '0xc24949' green: '0x3eca3e' yellow: '0xdcdc0f' blue: '0x6d6df3' magenta: '0xd068d0' - cyan: '0x0dcbcb' + cyan: '0x00cbcb' white: '0xe2e2e2' # Bright colors bright: black: '0x80776f' - red: '0xbc2121' + red: '0xc25959' green: '0x3eca3e' yellow: '0xdcdc00' blue: '0x915bf3' magenta: '0xd040d0' - cyan: '0x00cbcb' + cyan: '0x78dada' white: '0xf5f5f5' \ No newline at end of file diff --git a/python-xresources-emacs/convert.py b/python-xresources-emacs/convert.py index 1ac745c..656adef 100644 --- a/python-xresources-emacs/convert.py +++ b/python-xresources-emacs/convert.py @@ -10,8 +10,8 @@ print(""" ;; Highlighting faces `(fringe ((,class (:background "{bg}")))) `(highlight ((,class (:background "{bg}" :underline t)))) - `(region ((t (:background ,"{blue}")) - (t :inverse-video t))) + ;; background during selection, this tends to be weird so feel free to experiment + `(region ((t (:background "{bright_black}" :foreground "{bright_white}")))) `(secondary-selection ((,class (:background "{bg}")))) `(isearch ((,class (:background "{bg}" :foreground "{blue}" :weight bold)))) `(isearch-fail ((t (:foreground "{fg}" :background "{red}")))) @@ -30,7 +30,7 @@ print(""" `(font-lock-function-name-face ((,class (:foreground "{cyan}")))) `(font-lock-keyword-face ((,class (:foreground "{bright_red}" :weight bold)))) `(font-lock-string-face ((,class (:foreground "{green}")))) - `(font-lock-type-face ((,class (:foreground "{yellow}" :weight bold)))) + `(font-lock-type-face ((,class (:foreground "{bright_yellow}" :weight bold)))) `(font-lock-variable-name-face ((,class (:foreground "{white}")))) `(font-lock-warning-face ((,class (:foreground "{red}" :weight bold)))) ;; Button and link faces @@ -91,4 +91,4 @@ print(""" `(message-separator ((,class (:foreground "{white}" :weight bold)))))) (provide-theme '{theme_name}) -""".format(theme_name="anmol-test",bg="#100f1f", fg="#e0e892", black="#212125", red="#bc2a2a", green="#3eca3e", yellow="#dcdc0f", blue="#6d6df3", magenta="#d068d0", cyan="#0dcbcb", white="#e2e2e2", bright_black="#80776f", bright_red="#bc2121", bright_green="#3eca3e", bright_yellow="#dcdc00", bright_blue="#915bf3", bright_magenta="#d040d0", bright_cyan="#00cbcb", bright_white="#f5f5f5")) +""".format(theme_name="anmol-test",bg="#100f1f", fg="#fcffdc", black="#212125", red="#c24949", green="#3eca3e", yellow="#dcdc0f", blue="#6d6df3", magenta="#d068d0", cyan="#00cbcb", white="#e2e2e2", bright_black="#80776f", bright_red="#c25959", bright_green="#3eca3e", bright_yellow="#dcdc00", bright_blue="#915bf3", bright_magenta="#d040d0", bright_cyan="#78dada", bright_white="#f5f5f5")) diff --git a/xresources b/xresources index 3d7c495..2018a6e 100644 --- a/xresources +++ b/xresources @@ -1,15 +1,15 @@ ! special -*.foreground: #e0e892 +*.foreground: #fcffdc *.background: #100f1f -*.cursorColor: #e0e892 +*.cursorColor: #fcffdc ! black *.color0: #212125 *.color8: #80776f ! red -*.color1: #bc2a2a -*.color9: #bc2121 +*.color1: #c24949 +*.color9: #c25959 ! green *.color2: #3eca3e @@ -28,8 +28,8 @@ *.color13: #d040d0 ! cyan -*.color6: #0dcbcb -*.color14: #00cbcb +*.color6: #00cbcb +*.color14: #78dada ! white *.color7: #e2e2e2