From 28fbb75b47ac719b25e20939b5d04fee517099e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Pankowski?= Date: Wed, 10 Sep 2025 00:17:43 +0200 Subject: [PATCH] alacritty: use nordic and night owlish light themes; vis use default theme --- alacritty/.config/alacritty/dark.toml | 62 ++++++++++--------------- alacritty/.config/alacritty/light.toml | 64 +++++++++++--------------- vis/.config/vis/visrc.lua | 6 --- 3 files changed, 51 insertions(+), 81 deletions(-) diff --git a/alacritty/.config/alacritty/dark.toml b/alacritty/.config/alacritty/dark.toml index 8fc8dee..c92e949 100644 --- a/alacritty/.config/alacritty/dark.toml +++ b/alacritty/.config/alacritty/dark.toml @@ -1,45 +1,31 @@ -# ----------------------------------------------------------------------------- -# Kanagawa Paper Ink -# Upstream: https://github.com/thesimonho/kanagawa-paper.nvim/master/extras/alacritty/kanagawa-paper-ink.toml -# URL: https://github.com/alacritty/alacritty -# ----------------------------------------------------------------------------- +# https://github.com/alacritty/alacritty-theme/blob/master/themes/nordic.toml + +# Colors (Nordic) [colors.primary] -background = '#1F1F28' -foreground = '#DCD7BA' - -[colors.cursor] -cursor = '#c4b28a' -text = '#1F1F28' - -[colors.selection] -background = '#363646' -foreground = '#9e9b93' +background = '#242933' +foreground = '#BBBDAF' [colors.normal] -black = '#393836' -red = '#c4746e' -green = '#699469' -yellow = '#c4b28a' -blue = '#435965' -magenta = '#a292a3' -cyan = '#8ea49e' -white = '#C8C093' +black = '#191C1D' +red = '#BD6062' +green = '#A3D6A9' +yellow = '#F0DFAF' +blue = '#8FB4D8' +magenta = '#C7A9D9' +cyan = '#B6D7A8' +white = '#BDC5BD' [colors.bright] -black = '#aca9a4' -red = '#cc928e' -green = '#72a072' -yellow = '#d4c196' -blue = '#698a9b' -magenta = '#b4a7b5' -cyan = '#96ada7' -white = '#d5cd9d' +black = '#727C7C' +red = '#D18FAF' +green = '#B7CEB0' +yellow = '#BCBCBC' +blue = '#E0CF9F' +magenta = '#C7A9D9' +cyan = '#BBDA97' +white = '#BDC5BD' -[[colors.indexed_colors]] -index = 16 -color = '#b6927b' - -[[colors.indexed_colors]] -index = 17 -color = '#c4746e' +[colors.selection] +text = '#000000' +background = '#F0DFAF' diff --git a/alacritty/.config/alacritty/light.toml b/alacritty/.config/alacritty/light.toml index 436c362..b94883a 100644 --- a/alacritty/.config/alacritty/light.toml +++ b/alacritty/.config/alacritty/light.toml @@ -1,45 +1,35 @@ -# ----------------------------------------------------------------------------- -# Kanagawa Paper Canvas -# Upstream: https://github.com/thesimonho/kanagawa-paper.nvim/master/extras/alacritty/kanagawa-paper-canvas.toml -# URL: https://github.com/alacritty/alacritty -# ----------------------------------------------------------------------------- +# https://github.com/alacritty/alacritty-theme/blob/master/themes/night_owlish_light.toml + +# Colors (Night Owlish Light) [colors.primary] -background = '#e1e1de' -foreground = '#595b62' - -[colors.cursor] -cursor = '#618bb6' -text = '#e1e1de' - -[colors.selection] -background = '#c4cbdc' -foreground = '#858479' +background = '#ffffff' +foreground = '#403f53' [colors.normal] -black = '#4c4c65' -red = '#b35560' -green = '#57786c' -yellow = '#a67337' -blue = '#719ac2' -magenta = '#ac7085' -cyan = '#526c79' -white = '#858479' +black = '#011627' +red = '#d3423e' +green = '#2aa298' +yellow = '#daaa01' +blue = '#4876d6' +magenta = '#403f53' +cyan = '#08916a' +white = '#7a8181' [colors.bright] -black = '#5c5c75' -red = '#c75f6b' -green = '#618679' -yellow = '#b67e3d' -blue = '#86aed7' -magenta = '#b57e91' -cyan = '#5d7a89' -white = '#919084' +black = '#7a8181' +red = '#f76e6e' +green = '#49d0c5' +yellow = '#dac26b' +blue = '#5ca7e4' +magenta = '#697098' +cyan = '#00c990' +white = '#989fb1' -[[colors.indexed_colors]] -index = 16 -color = '#b8805e' +[colors.cursor] +cursor = '#403f53' +text = '#fbfbfb' -[[colors.indexed_colors]] -index = 17 -color = '#b35560' +[colors.selection] +background = '#f2f2f2' +text = '#403f53' diff --git a/vis/.config/vis/visrc.lua b/vis/.config/vis/visrc.lua index 9672755..f152479 100644 --- a/vis/.config/vis/visrc.lua +++ b/vis/.config/vis/visrc.lua @@ -12,12 +12,6 @@ end)() plug = require('plugins/vis-plug') local plugins = { - { - 'scaramacai/vis-themes', - theme = true, - file = 'almostnord', - -- file = 'strange-morning', - }, { 'https://gitlab.com/muhq/vis-lspc', alias = 'lspc' }, { 'lutobler/vis-commentary' }, { 'https://repo.or.cz/vis-surround.git' },