switch to gruvbox dark medium

This commit is contained in:
♥ Minnie ♥ 2025-03-07 10:33:16 +08:00
parent 97ecaed6b0
commit d9b1150b00
Signed by: jasmine
GPG key ID: 8563E358D4E8040E
8 changed files with 29 additions and 25 deletions

View file

@ -6,7 +6,7 @@
input.method = "pulse"; input.method = "pulse";
smoothing.noise_reduction = 88; smoothing.noise_reduction = 88;
color = { color = {
background = "'#1d2021'"; background = "'#32302f'";
foreground = "'#d4be98'"; foreground = "'#d4be98'";
}; };
}; };

View file

@ -3,16 +3,16 @@
/* Gruvbox Material Dark Hard */ /* Gruvbox Material Dark Hard */
--fg0: #d4be98; --fg0: #d4be98;
--bg0: #1d2021; --bg0: #282828;
--bg1: #282828; --bg1: #32302f;
--grey0: #7c6f64; --grey0: #7c6f64;
--grey1: #928374; --grey1: #928374;
--grey2: #a89984; --grey2: #a89984;
/* Midpoints between bg0 + bg1 */ /* Midpoints between bg0 + bg1 */
--bg0_33: #212323; --bg0_33: #2b2b2a;
--bg0_66: #242526; --bg0_66: #2f2d2d;
} }
.theme-dark { .theme-dark {

View file

@ -8,22 +8,22 @@
origin = "top-right"; origin = "top-right";
offset = "20x20"; offset = "20x20";
frame_width = 5; frame_width = 5;
frame_color = "#282828"; frame_color = "#32302f";
corner_radius = 10; corner_radius = 10;
}; };
urgency_low = { urgency_low = {
background = "#1d2021"; background = "#282828";
foreground = "#d4be98"; foreground = "#d4be98";
}; };
urgency_normal = { urgency_normal = {
background = "#1d2021"; background = "#282828";
foreground = "#d4be98"; foreground = "#d4be98";
}; };
urgency_critical = { urgency_critical = {
background = "#1d2021"; background = "#282828";
foreground = "#d4be98"; foreground = "#d4be98";
}; };
}; };

View file

@ -5,7 +5,7 @@
plugins = with pkgs; [ plugins = with pkgs; [
rofi-calc rofi-calc
]; ];
theme = ./gruvbox-material/gruvbox-material-dark-hard.rasi; theme = ./gruvbox-material/gruvbox-material-dark-medium.rasi;
}; };
xdg.configFile.theme = { xdg.configFile.theme = {

View file

@ -17,9 +17,9 @@
scrollbar: true; scrollbar: true;
/* Gruvbox dark colors */ /* Gruvbox dark colors */
gruvbox-dark-bg0: #1d2021; gruvbox-dark-bg0: #282828;
gruvbox-dark-bg1: #282828; gruvbox-dark-bg1: #32302f;
gruvbox-dark-bg2: #504945; gruvbox-dark-bg2: #32302f;
gruvbox-dark-fg0: #d4be98; gruvbox-dark-fg0: #d4be98;
gruvbox-dark-fg1: #ddc7a1; gruvbox-dark-fg1: #ddc7a1;
gruvbox-dark-red-dark: #cc241d; gruvbox-dark-red-dark: #cc241d;

View file

@ -1,16 +1,16 @@
[colors] [colors]
background = '#1d2021' # bg0 background = '#282828' # bg0
foreground = '#d4be98' # fg0 foreground = '#d4be98' # fg0
selection_bg = '#32302f' # bg_current_word selection_bg = '#3c3836' # bg_current_word
selection_fg = '#a89984' # grey2 selection_fg = '#a89984' # grey2
cursor_fg = '#32302f' # bg_current_word cursor_fg = '#3c3836' # bg_current_word
cursor_bg = '#a89984' # grey2 cursor_bg = '#a89984' # grey2
cursor_border = '#a89984' # grey2 cursor_border = '#a89984' # grey2
ansi = [ ansi = [
'#1d2021', # bg0 '#282828', # bg0
'#ea6962', # red '#ea6962', # red
'#a9b665', # green '#a9b665', # green
'#d8a657', # yellow '#d8a657', # yellow
@ -34,4 +34,4 @@ brights = [
[colors.indexed] [colors.indexed]
[metadata] [metadata]
name = 'gruvbox_material_dark_hard' name = 'gruvbox_material_dark_medium'

View file

@ -39,7 +39,7 @@ config.font = wezterm.font("Fisa Code")
config.font_size = 10.0 config.font_size = 10.0
--| Color scheme --| Color scheme
config.color_scheme = "gruvbox_material_dark_hard" config.color_scheme = "gruvbox_material_dark_medium"
--| Cursor style --| Cursor style
config.default_cursor_style = "SteadyBar" config.default_cursor_style = "SteadyBar"
@ -71,13 +71,13 @@ config.colors = {
tab_bar = { tab_bar = {
--| Tab Bar Colors --| Tab Bar Colors
background = "#282828", background = "#32302f",
--| Tab Colors --| Tab Colors
active_tab = { bg_color = "#282828", fg_color = "#7daea3", intensity = "Normal", italic = false }, active_tab = { bg_color = "#32302f", fg_color = "#7daea3", intensity = "Normal", italic = false },
inactive_tab = { bg_color = "#282828", fg_color = "#a89984", intensity = "Normal", italic = false }, inactive_tab = { bg_color = "#32302f", fg_color = "#a89984", intensity = "Normal", italic = false },
inactive_tab_hover = { bg_color = "#282828", fg_color = "#a89984", intensity = "Normal", italic = false }, inactive_tab_hover = { bg_color = "#32302f", fg_color = "#a89984", intensity = "Normal", italic = false },
new_tab = { bg_color = "#282828", fg_color = "#a89984", intensity = "Normal", italic = false }, new_tab = { bg_color = "#32302f", fg_color = "#a89984", intensity = "Normal", italic = false },
new_tab_hover = { bg_color = "#282828", fg_color = "#a89984", intensity = "Normal", italic = false }, new_tab_hover = { bg_color = "#32302f", fg_color = "#a89984", intensity = "Normal", italic = false },
}, },
} }

View file

@ -9,6 +9,10 @@
extensions = with pkgs.vscode-extensions; [ extensions = with pkgs.vscode-extensions; [
sainnhe.gruvbox-material # Gruvbox Material theme sainnhe.gruvbox-material # Gruvbox Material theme
]; ];
userSettings = {
"window.menuBarVisibility" = "hidden";
"workbench.colorTheme" = "Gruvbox Material Dark";
};
}; };
# List of packages to be installed # List of packages to be installed