diff options
Diffstat (limited to 'modules/user/aesthetics')
63 files changed, 803 insertions, 0 deletions
diff --git a/modules/user/aesthetics/default.nix b/modules/user/aesthetics/default.nix new file mode 100644 index 0000000..9bcf496 --- /dev/null +++ b/modules/user/aesthetics/default.nix @@ -0,0 +1,91 @@ +{ config, pkgs, lib, ... }: let + cfg = config.aesthetics; +in { + options.aesthetics = { + enable = lib.mkEnableOption "aesthetics"; + theme = lib.mkOption { + type = lib.types.str; + description = "The name of the theme to use."; + default = "oxocarbon"; + }; + hasGui = lib.mkOption { + type = lib.types.bool; + description = "Whether to theme gui apps. (can break if no gui)"; + default = false; + }; + enableAllTargets = lib.mkEnableOption "all targets"; + wallpapersDir = lib.mkOption { + type = lib.types.path; + description = "Where to find wallpapers."; + }; + wallpaper = lib.mkOption { + type = lib.types.path; + description = "Where to find the default wallpaper."; + }; + font = { + name = lib.mkOption { + type = lib.types.str; + default = "CodeNewRoman Nerd Font"; + description = "The font to use."; + }; + package = lib.mkOption { + type = lib.types.package; + default = pkgs.nerd-fonts.code-new-roman; + description = "The font package to use."; + }; + size = { + small = lib.mkOption { + type = lib.types.str; + default = "10"; + description = "The size of the font to use for small text. (e.g. terminals)"; + }; + medium = lib.mkOption { + type = lib.types.str; + default = "14"; + description = "The size of the font to use for medium text. (e.g. waybar)"; + }; + large = lib.mkOption { + type = lib.types.str; + default = "18"; + description = "The size of the font to use for large text."; + }; + }; + }; + scheme = let + mkHexOption = {}: lib.mkOption { + type = lib.types.str; + default = ""; + example = "ffffff"; + description = "A hex color"; + }; + in { + base00 = mkHexOption {}; + base01 = mkHexOption {}; + base02 = mkHexOption {}; + base03 = mkHexOption {}; + base04 = mkHexOption {}; + base05 = mkHexOption {}; + base06 = mkHexOption {}; + base07 = mkHexOption {}; + base08 = mkHexOption {}; + base09 = mkHexOption {}; + base0A = mkHexOption {}; + base0B = mkHexOption {}; + base0C = mkHexOption {}; + base0D = mkHexOption {}; + base0E = mkHexOption {}; + base0F = mkHexOption {}; + }; + opacity = lib.mkOption { + type = lib.types.float; + description = "Opacity"; + default = 1.0; + }; + }; + config = lib.mkIf cfg.enable { + aesthetics.themes.${cfg.theme}.enable = true; + + home.packages = [ cfg.font.package ]; + fonts.fontconfig.enable = true; + }; +} diff --git a/modules/user/aesthetics/readme.md b/modules/user/aesthetics/readme.md new file mode 100644 index 0000000..75588a2 --- /dev/null +++ b/modules/user/aesthetics/readme.md @@ -0,0 +1,15 @@ +# Aesthetics + +My crappy custom nix module for managing: + +- Base16 colors +- Window opacity +- System font +- Wallpapers + +## Structure + +- default.nix: Creates all main options to be set by modules in the themes dir. also configures the font and enables one theme. +- themes/: Contains modules with sets of base16 colors and which set options in default.nix. These modules can contain direct configs for certain apps if the apps have poor base16 support, but they must obey the options set in the app's target module. +- targets/: Contains modules configuring apps using base16 colors or just setting options to enable or disable the theming of an app. + diff --git a/modules/user/aesthetics/targets/foot.nix b/modules/user/aesthetics/targets/foot.nix new file mode 100644 index 0000000..c6c2283 --- /dev/null +++ b/modules/user/aesthetics/targets/foot.nix @@ -0,0 +1,55 @@ +{ config, lib, ... }: let + cfg = config.aesthetics.targets.foot; + aes = config.aesthetics; +in { + options.aesthetics.targets.foot.enable = lib.mkOption { + type = lib.types.bool; + default = (aes.enableAllTargets && aes.hasGui); + description = "Whether to enable the aesthetics foot target."; + }; + config = lib.mkIf (cfg.enable && config.programs.foot.enable) { + programs.foot.settings = { + main.font = "${aes.font.name}:size=${aes.font.size.small}"; + tweak.font-monospace-warn = false; + colors = with aes.scheme; { + background = base00; + foreground = base05; + + # normal + regular0 = base00; + regular1 = base08; + regular2 = base0B; + regular3 = base0A; + regular4 = base0D; + regular5 = base0E; + regular6 = base0C; + regular7 = base05; + + # bright + bright0 = base03; + bright1 = base09; + bright2 = base01; + bright3 = base02; + bright4 = base04; + bright5 = base06; + bright6 = base0F; + bright7 = base07; + + # extended + "16" = base09; + "17" = base0F; + "18" = base01; + "19" = base02; + "20" = base04; + "21" = base06; + + # misc + selection-background = base05; + selection-foreground = base00; + urls = base04; + jump-labels = "${base00} ${base0A}"; + scrollback-indicator = "${base00} ${base04}"; + }; + }; + }; +} diff --git a/modules/user/aesthetics/targets/gtk.nix b/modules/user/aesthetics/targets/gtk.nix new file mode 100644 index 0000000..54377af --- /dev/null +++ b/modules/user/aesthetics/targets/gtk.nix @@ -0,0 +1,119 @@ +{ + config, + pkgs, + lib, + ... +}: let + cfg = config.aesthetics.targets.gtk; + aes = config.aesthetics; + + gtkCSS = with aes.scheme; '' + @define-color accent_color #${base0D}; + @define-color accent_bg_color #${base0D}; + @define-color accent_fg_color #${base00}; + @define-color destructive_color #${base08}; + @define-color destructive_bg_color #${base08}; + @define-color destructive_fg_color #${base00}; + @define-color success_color #${base0B}; + @define-color success_bg_color #${base0B}; + @define-color success_fg_color #${base00}; + @define-color warning_color #${base0E}; + @define-color warning_bg_color #${base0E}; + @define-color warning_fg_color #${base00}; + @define-color error_color #${base08}; + @define-color error_bg_color #${base08}; + @define-color error_fg_color #${base00}; + @define-color window_bg_color #${base00}; + @define-color window_fg_color #${base05}; + @define-color view_bg_color #${base00}; + @define-color view_fg_color #${base05}; + @define-color headerbar_bg_color #${base01}; + @define-color headerbar_fg_color #${base05}; + @define-color headerbar_border_color #${base01} + @define-color headerbar_backdrop_color @window_bg_color; + @define-color headerbar_shade_color rgba(0, 0, 0, 0.07); + @define-color headerbar_darker_shade_color rgba(0, 0, 0, 0.07); + @define-color sidebar_bg_color #${base01}; + @define-color sidebar_fg_color #${base05}; + @define-color sidebar_backdrop_color @window_bg_color; + @define-color sidebar_shade_color rgba(0, 0, 0, 0.07); + @define-color secondary_sidebar_bg_color @sidebar_bg_color; + @define-color secondary_sidebar_fg_color @sidebar_fg_color; + @define-color secondary_sidebar_backdrop_color @sidebar_backdrop_color; + @define-color secondary_sidebar_shade_color @sidebar_shade_color; + @define-color card_bg_color #${base01}; + @define-color card_fg_color #${base05}; + @define-color card_shade_color rgba(0, 0, 0, 0.07); + @define-color dialog_bg_color #${base01}; + @define-color dialog_fg_color #${base05}; + @define-color popover_bg_color #${base01}; + @define-color popover_fg_color #${base05}; + @define-color popover_shade_color rgba(0, 0, 0, 0.07); + @define-color shade_color rgba(0, 0, 0, 0.07); + @define-color scrollbar_outline_color #${base02}; + @define-color blue_1 #${base0D}; + @define-color blue_2 #${base0D}; + @define-color blue_3 #${base0D}; + @define-color blue_4 #${base0D}; + @define-color blue_5 #${base0D}; + @define-color green_1 #${base0B}; + @define-color green_2 #${base0B}; + @define-color green_3 #${base0B}; + @define-color green_4 #${base0B}; + @define-color green_5 #${base0B}; + @define-color yellow_1 #${base0A}; + @define-color yellow_2 #${base0A}; + @define-color yellow_3 #${base0A}; + @define-color yellow_4 #${base0A}; + @define-color yellow_5 #${base0A}; + @define-color orange_1 #${base09}; + @define-color orange_2 #${base09}; + @define-color orange_3 #${base09}; + @define-color orange_4 #${base09}; + @define-color orange_5 #${base09}; + @define-color red_1 #${base08}; + @define-color red_2 #${base08}; + @define-color red_3 #${base08}; + @define-color red_4 #${base08}; + @define-color red_5 #${base08}; + @define-color purple_1 #${base0E}; + @define-color purple_2 #${base0E}; + @define-color purple_3 #${base0E}; + @define-color purple_4 #${base0E}; + @define-color purple_5 #${base0E}; + @define-color brown_1 #${base0F}; + @define-color brown_2 #${base0F}; + @define-color brown_3 #${base0F}; + @define-color brown_4 #${base0F}; + @define-color brown_5 #${base0F}; + @define-color light_1 #${base01}; + @define-color light_2 #${base01}; + @define-color light_3 #${base01}; + @define-color light_4 #${base01}; + @define-color light_5 #${base01}; + @define-color dark_1 #${base01}; + @define-color dark_2 #${base01}; + @define-color dark_3 #${base01}; + @define-color dark_4 #${base01}; + @define-color dark_5 #${base01}; + ''; +in { + options.aesthetics.targets.gtk.enable = lib.mkOption { + type = lib.types.bool; + default = (aes.enableAllTargets && aes.hasGui); + description = "Whether to enable the aesthetics GTK target."; + }; + config = lib.mkIf cfg.enable { + gtk = { + enable = true; + theme = { + package = pkgs.adw-gtk3; + name = "adw-gtk3"; + }; + }; + xdg.configFile = { + "gtk-3.0/gtk.css".text = gtkCSS; + "gtk-4.0/gtk.css".text = gtkCSS; + }; + }; +} diff --git a/modules/user/aesthetics/targets/helix.nix b/modules/user/aesthetics/targets/helix.nix new file mode 100644 index 0000000..dde557e --- /dev/null +++ b/modules/user/aesthetics/targets/helix.nix @@ -0,0 +1,28 @@ +{ config, lib, ... }: let + cfg = config.aesthetics.targets.helix; + aes = config.aesthetics; +in { + options.aesthetics.targets.helix = { + enable = lib.mkOption { + type = lib.types.bool; + default = aes.enableAllTargets; + description = "Whether to enable the aesthetics helix target."; + }; + theme = lib.mkOption { + type = lib.types.str; + default = "default"; + description = "The name of the theme to use for helix."; + }; + }; + config = lib.mkIf (cfg.enable && config.programs.helix.enable) { + programs.helix.settings.theme = "custom-default"; + home.file."helix-theme" = { + target = ".config/helix/themes/custom-default.toml"; + text = /*toml*/ '' + inherits = "${cfg.theme}" + "ui.background" = { } + "ui.statusline" = { bg = "" } + ''; + }; + }; +} diff --git a/modules/user/aesthetics/targets/mako.nix b/modules/user/aesthetics/targets/mako.nix new file mode 100644 index 0000000..2ade32e --- /dev/null +++ b/modules/user/aesthetics/targets/mako.nix @@ -0,0 +1,23 @@ +{ + config, + lib, + ... +}: let + cfg = config.aesthetics.targets.mako; + aes = config.aesthetics; +in { + options.aesthetics.targets.mako.enable = lib.mkOption { + type = lib.types.bool; + default = aes.enableAllTargets && aes.hasGui; + description = "Whether to enable the aesthetics mako target."; + }; + config = lib.mkIf (cfg.enable && config.services.mako.enable) { + services.mako.settings = with aes.scheme; { + background-color = "#${base00}"; + border-color = "#${base0C}"; + text-color = "#${base05}"; + progress-color = "over #${base02}"; + font = "${aes.font.name} ${aes.font.size.small}"; + }; + }; +} diff --git a/modules/user/aesthetics/targets/qutebrowser.nix b/modules/user/aesthetics/targets/qutebrowser.nix new file mode 100644 index 0000000..ef7f17d --- /dev/null +++ b/modules/user/aesthetics/targets/qutebrowser.nix @@ -0,0 +1,213 @@ +{ + config, + lib, + ... +}: let + cfg = config.aesthetics.targets.qutebrowser; + aes = config.aesthetics; +in { + options.aesthetics.targets.qutebrowser.enable = lib.mkOption { + type = lib.types.bool; + default = aes.enableAllTargets && aes.hasGui; + description = "Whether to enable the aesthetics qutebrowser target."; + }; + config = lib.mkIf (cfg.enable && config.programs.qutebrowser.enable) { + programs.qutebrowser.settings = { + fonts = { + default_family = aes.font.name; + default_size = "${aes.font.size.small}pt"; + }; + colors = with aes.scheme; let + background = "#${base00}"; + secondary-background = "#${base01}"; + selection-background = "#${base03}"; + foreground = "#${base05}"; + inverted-foreground = "#${base00}"; + error = "#${base08}"; + info = "#${base0B}"; + secondary-info = "#${base0C}"; + warning = "#${base0E}"; + in { + completion = { + category = { + bg = background; + fg = info; + border = { + bottom = background; + top = background; + }; + }; + even.bg = background; + fg = foreground; + item.selected = { + bg = selection-background; + border = { + bottom = selection-background; + top = selection-background; + }; + fg = foreground; + }; + match.fg = info; + odd.bg = secondary-background; + scrollbar = { + bg = background; + fg = foreground; + }; + }; + contextmenu = { + disabled = { + bg = secondary-background; + fg = inverted-foreground; + }; + menu = { + bg = background; + fg = foreground; + }; + selected = { + bg = selection-background; + fg = foreground; + }; + }; + downloads = { + bar.bg = background; + error = { + bg = error; + fg = inverted-foreground; + }; + start = { + bg = info; + fg = inverted-foreground; + }; + stop = { + bg = secondary-info; + fg = inverted-foreground; + }; + }; + hints = { + bg = secondary-background; + fg = foreground; + match.fg = info; + }; + keyhint = { + bg = background; + fg = foreground; + suffix.fg = foreground; + }; + messages = { + error = { + bg = error; + fg = inverted-foreground; + border = error; + }; + info = { + bg = info; + fg = inverted-foreground; + border = info; + }; + warning = { + bg = warning; + fg = inverted-foreground; + border = warning; + }; + }; + prompts = { + bg = background; + border = background; + fg = foreground; + selected.bg = secondary-background; + }; + statusbar = { + caret = { + bg = selection-background; + fg = foreground; + selection = { + bg = selection-background; + fg = foreground; + }; + }; + command = { + bg = background; + fg = foreground; + private = { + bg = secondary-background; + fg = foreground; + }; + }; + insert = { + bg = info; + fg = inverted-foreground; + }; + normal = { + bg = background; + fg = foreground; + }; + passthrough = { + bg = info; + fg = inverted-foreground; + }; + private = { + bg = secondary-background; + fg = foreground; + }; + progress.bg = info; + url = { + error.fg = error; + fg = foreground; + hover.fg = foreground; + success = { + http.fg = secondary-info; + https.fg = info; + }; + warn.fg = warning; + }; + }; + tabs = { + bar.bg = background; + even = { + bg = secondary-background; + fg = foreground; + }; + indicator = { + inherit error; + start = secondary-info; + stop = info; + }; + odd = { + bg = background; + fg = foreground; + }; + pinned = { + even = { + bg = info; + fg = inverted-foreground; + }; + odd = { + bg = secondary-info; + fg = inverted-foreground; + }; + selected = { + even = { + bg = selection-background; + fg = foreground; + }; + odd = { + bg = selection-background; + fg = foreground; + }; + }; + }; + selected = { + even = { + bg = selection-background; + fg = foreground; + }; + odd = { + bg = selection-background; + fg = foreground; + }; + }; + }; + }; + }; + }; +} diff --git a/modules/user/aesthetics/targets/vesktop.nix b/modules/user/aesthetics/targets/vesktop.nix new file mode 100644 index 0000000..968df1a --- /dev/null +++ b/modules/user/aesthetics/targets/vesktop.nix @@ -0,0 +1,65 @@ +{ config, lib, ... }: let + cfg = config.aesthetics.targets.vesktop; + aes = config.aesthetics; +in { + options.aesthetics.targets.vesktop.enable = lib.mkOption { + type = lib.types.bool; + default = (aes.enableAllTargets && aes.hasGui); + description = "Whether to enable the aesthetics vesktop target."; + }; + config = lib.mkIf cfg.enable { + xdg.configFile."vesktop/themes/stylix.theme.css".text = with aes.scheme; '' + :root { + --base00: #${base00}; /* Black */ + --base01: #${base01}; /* Bright Black */ + --base02: #${base02}; /* Grey */ + --base03: #${base03}; /* Brighter Grey */ + --base04: #${base04}; /* Bright Grey */ + --base05: #${base05}; /* White */ + --base06: #${base06}; /* Brighter White */ + --base07: #${base07}; /* Bright White */ + --base08: #${base08}; /* Red */ + --base09: #${base09}; /* Orange */ + --base0A: #${base0A}; /* Yellow */ + --base0B: #${base0B}; /* Green */ + --base0C: #${base0C}; /* Cyan */ + --base0D: #${base0D}; /* Blue */ + --base0E: #${base0E}; /* Purple */ + --base0F: #${base0F}; /* Magenta */ + + --primary-630: var(--base00); /* Autocomplete background */ + --primary-660: var(--base00); /* Search input background */ + } + + .theme-light, .theme-dark { + --search-popout-option-fade: none; /* Disable fade for search popout */ + --bg-overlay-2: var(--base00); /* These 2 are needed for proper threads coloring */ + --home-background: var(--base00); + --bg-overlay-chat : var(--base00); /* Recolor forum channels */ + --background-primary: var(--base00); + --background-secondary: var(--base01); + --background-secondary-alt: var(--base01); + --channeltextarea-background: var(--base01); + --background-tertiary: var(--base00); + --background-accent: var(--base0E); + --background-floating: var(--base01); + --background-modifier-hover: #{{base00-hex}}4c; /* 30% of base00 */ + --background-modifier-selected: var(--base00); + --text-normal: var(--base05); + --text-secondary: var(--base03); + --text-muted: var(--base04); + --text-link: var(--base0C); + --interactive-normal: var(--base05); + --interactive-hover: var(--base05); + --interactive-active: var(--base07); + --interactive-muted: var(--base03); + --channels-default: var(--base04); + --channel-icon: var(--base04); + --header-primary: var(--base06); + --header-secondary: var(--base04); + --scrollbar-thin-track: transparent; + --scrollbar-auto-track: transparent; + } + ''; + }; +} diff --git a/modules/user/aesthetics/targets/zellij.nix b/modules/user/aesthetics/targets/zellij.nix new file mode 100644 index 0000000..cefd8ab --- /dev/null +++ b/modules/user/aesthetics/targets/zellij.nix @@ -0,0 +1,28 @@ +{ config, lib, ... }: let + cfg = config.aesthetics.targets.zellij; + aes = config.aesthetics; +in { + options.aesthetics.targets.zellij.enable = lib.mkOption { + type = lib.types.bool; + default = aes.enableAllTargets; + description = "Whether to enable the aesthetics zellij target."; + }; + config = lib.mkIf (cfg.enable && config.programs.zellij.enable) { + programs.zellij.settings = { + theme = "base16"; + themes.base16 = with aes.scheme; { + bg = "#${base03}"; + fg = "#${base05}"; + red = "#${base08}"; + green = "#${base0B}"; + blue = "#${base0D}"; + yellow = "#${base0A}"; + magenta = "#${base0E}"; + orange = "#${base09}"; + cyan = "#${base0C}"; + black = "#${base00}"; + white = "#${base07}"; + }; + }; + }; +} diff --git a/modules/user/aesthetics/themes/oxocarbon/default.nix b/modules/user/aesthetics/themes/oxocarbon/default.nix new file mode 100644 index 0000000..c568c97 --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/default.nix @@ -0,0 +1,67 @@ +{ + config, + pkgs, + lib, + inputs, + ... +}: let + cfg = config.aesthetics.themes.oxocarbon; +in { + options.aesthetics.themes.oxocarbon.enable = lib.mkEnableOption "oxocarbon theme"; + config = lib.mkMerge [ + ( + lib.mkIf cfg.enable { + aesthetics = { + wallpaper = ./wallpapers/landscape/salt-flats.jpg; + wallpapersDir = ./wallpapers; + scheme = { + base00 = "161616"; + base01 = "262626"; + base02 = "393939"; + base03 = "525252"; + base04 = "dde1e6"; + base05 = "f2f4f8"; + base06 = "ffffff"; + base07 = "08bdba"; + base08 = "3ddbd9"; + base09 = "78a9ff"; + base0A = "ee5396"; + base0B = "33b1ff"; + base0C = "ff7eb6"; + base0D = "42be65"; + base0E = "be95ff"; + base0F = "82cfff"; + }; + font = { + name = "CodeNewRoman Nerd Font"; + package = pkgs.nerd-fonts.code-new-roman; + }; + # font = { + # name = "Kirsch Nerd Font"; + # size = "22"; + # package = inputs.kirsch.packages.x86_64-linux.kirsch-nerd; + # }; + }; + # home.pointerCursor = { + # package = pkgs.oreo-cursors-plus; + # name = "oreo_spark_black_bordered_cursors"; + # size = 22; + # }; + home.pointerCursor = { + package = pkgs.qogir-icon-theme; + name = "Qogir-Dark"; + size = 22; + }; + } + ) + ( + lib.mkIf config.aesthetics.targets.helix.enable { + aesthetics.targets.helix.theme = "oxocarbon"; + home.file."helix-oxocarbon-theme" = { + target = ".config/helix/themes/oxocarbon.toml"; + source = ./helix-theme.toml; + }; + } + ) + ]; +} diff --git a/modules/user/aesthetics/themes/oxocarbon/helix-theme.toml b/modules/user/aesthetics/themes/oxocarbon/helix-theme.toml new file mode 100644 index 0000000..8cf3c49 --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/helix-theme.toml @@ -0,0 +1,52 @@ + +# inherits = "fleet_dark" + +"attribute" = { fg = "#82cfff" } +"type" = { fg = "#78a9ff" } +"type.builtin" = { fg = "#dde1e6" } +"constructor" = { fg = "#78a9ff" } +"constant" = { fg = "#be95ff" } +"constant.builtin" = { fg = "#08bdba" } +"constant.builtin.character" = { fg = "#be95ff" } +"constant.builtin.numeric" = { fg = "#82cfff" } +"string" = { fg = "#be95ff" } +"string.regexp" = { fg = "#08bdba" } +"comment" = { fg = "#525252" } +"variable" = { fg = "#dde1e6" } +"label" = { fg = "#82cfff" } +"punctuation" = { fg = "#3ddbd9" } +"keyword" = { fg = "#78a9ff" } +"keyword.control.exception" = { fg = "#82cfff" } +"keyword.operator" = { fg = "#3ddbd9" } +"keyword.function" = { fg = "#3ddbd9" } +"operator" = { fg = "#78a9ff" } +"function" = { fg = "#ff7eb6" } +"function.builtin" = { fg = "#ff7eb6" } +"function.method" = { fg = "#08bdba" } +"function.macro" = { fg = "#08bdba" } +"tag" = { fg = "#dde1e6" } +"namespace" = { fg = "#dde1e6" } +"diff.plus" = { fg = "#42be65", bg = "#393939" } +"diff.minus" = { fg = "#78a9ff", bg = "#393939" } +"diff.delta" = { fg = "#dde1e6", bg = "#262626" } + +"ui.background" = { fg= "#ffffff", bg = "#161616"} +"ui.separator" = "#161616" +"ui.selection" = { bg = "#393939"} +"ui.text" = { fg = "#ffffff" } +"ui.cursor" = { fg = "#161616", bg = "#dde1e6" } +"ui.cursor.normal" = { fg = "#dde1e6", bg = "#161616" } +"ui.linenr" = { fg = "#525252", bg = "#161616" } +"ui.linenr.selected" = { fg = "#dde1e6" } +"ui.statusline" = { fg = "#ffffff", bg = "#161616" } +"ui.statusline.inactive" = { fg = "#525252"} +"ui.statusline.normal" = { fg = "#ffffff", bg = "#161616" } +"ui.statusline.insert" = { fg = "#ffffff", bg = "#ff7eb6" } +"ui.popup" = { fg = "#ffffff", bg = "#262626" } +"ui.window" = { fg = "#ffffff", bg = "#262626" } +"ui.menu" = { fg = "#ffffff", bg = "#262626" } +"ui.menu.selected" = { fg = "#ffffff", bg = "#525252" } +"diagnostic.error" = { fg = "#b3b3b3", bg = "#262626", underline = { color = "#ff0000", style = "curl"} } +"diagnostic.warning" = { fg = "#b3b3b3", bg = "#262626", underline = { color = "#ff6f00", style = "curl"} } +"error" = { fg = "#ffffff", bg = "#262626" } +"warning" = { fg = "#ffffff", bg = "#262626" } diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/autumn/aerial-autumn-road.jpg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/autumn/aerial-autumn-road.jpg.REMOVED.git-id new file mode 100644 index 0000000..74888fb --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/autumn/aerial-autumn-road.jpg.REMOVED.git-id @@ -0,0 +1 @@ +fec9a0829c8e1986b14fe7725019937dbdbb3a88
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/autumn/autumn-leaves.jpg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/autumn/autumn-leaves.jpg.REMOVED.git-id new file mode 100644 index 0000000..2a0fdf3 --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/autumn/autumn-leaves.jpg.REMOVED.git-id @@ -0,0 +1 @@ +f356a48f0b0f7c85cec4dfd2a73d17870eb7f913
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/autumn/autumn-silhouette.jpg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/autumn/autumn-silhouette.jpg.REMOVED.git-id new file mode 100644 index 0000000..dd41826 --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/autumn/autumn-silhouette.jpg.REMOVED.git-id @@ -0,0 +1 @@ +114ff2864e8ccacabe4121aea8ed8b7627649ebf
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/autumn/autumnal-mountain.jpg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/autumn/autumnal-mountain.jpg.REMOVED.git-id new file mode 100644 index 0000000..2f50bfa --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/autumn/autumnal-mountain.jpg.REMOVED.git-id @@ -0,0 +1 @@ +d36f1cc1c709b305c4ffc8ea0709f730bfabef08
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/autumn/autumnal-road.jpg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/autumn/autumnal-road.jpg.REMOVED.git-id new file mode 100644 index 0000000..c5da27a --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/autumn/autumnal-road.jpg.REMOVED.git-id @@ -0,0 +1 @@ +32ae20560377c0667f81360d1ddd6e1902af69cb
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/autumn/maple-leaf.jpg b/modules/user/aesthetics/themes/oxocarbon/wallpapers/autumn/maple-leaf.jpg Binary files differnew file mode 100644 index 0000000..75e4f56 --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/autumn/maple-leaf.jpg diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/lake/forest-lake.jpg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/lake/forest-lake.jpg.REMOVED.git-id new file mode 100644 index 0000000..e048b39 --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/lake/forest-lake.jpg.REMOVED.git-id @@ -0,0 +1 @@ +8947e64585baf2d8d1e3f3df5564f66ff8ace768
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/lake/lake-island.jpg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/lake/lake-island.jpg.REMOVED.git-id new file mode 100644 index 0000000..a33f51f --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/lake/lake-island.jpg.REMOVED.git-id @@ -0,0 +1 @@ +2438c078ae6bde2b2048fd28284b935b1c5f6b0b
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/lake/purple-lake.jpg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/lake/purple-lake.jpg.REMOVED.git-id new file mode 100644 index 0000000..9537afc --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/lake/purple-lake.jpg.REMOVED.git-id @@ -0,0 +1 @@ +7df17f9c0426dc4f502496d33e4eae3c24347175
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/lake/sunset-lake-off-dock.jpg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/lake/sunset-lake-off-dock.jpg.REMOVED.git-id new file mode 100644 index 0000000..dbefd90 --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/lake/sunset-lake-off-dock.jpg.REMOVED.git-id @@ -0,0 +1 @@ +634d72e228a6cea00670d8ff745cffe80cec6d84
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/lake/warm-lakeside-village.jpg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/lake/warm-lakeside-village.jpg.REMOVED.git-id new file mode 100644 index 0000000..9c48142 --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/lake/warm-lakeside-village.jpg.REMOVED.git-id @@ -0,0 +1 @@ +673486a7a2d2e5b55b6c0ac4ca0460e34390ae1a
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/aerial-dark-marsh.jpg b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/aerial-dark-marsh.jpg Binary files differnew file mode 100644 index 0000000..3ad3d24 --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/aerial-dark-marsh.jpg diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/bridge-on-cliff.jpg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/bridge-on-cliff.jpg.REMOVED.git-id new file mode 100644 index 0000000..99901a6 --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/bridge-on-cliff.jpg.REMOVED.git-id @@ -0,0 +1 @@ +fed3cb735bcd0146dbeeb7c128487a5eb1b9265b
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/bright-night-sky.jpg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/bright-night-sky.jpg.REMOVED.git-id new file mode 100644 index 0000000..99a1ab7 --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/bright-night-sky.jpg.REMOVED.git-id @@ -0,0 +1 @@ +f18b94d5c4e6ad7969f6eef360b22452346543b0
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/cloudy-mountains.jpeg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/cloudy-mountains.jpeg.REMOVED.git-id new file mode 100644 index 0000000..d0296a8 --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/cloudy-mountains.jpeg.REMOVED.git-id @@ -0,0 +1 @@ +547b2b255f9316b9e9ad019dcef8692a3162e752
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/cloudy-valley.jpg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/cloudy-valley.jpg.REMOVED.git-id new file mode 100644 index 0000000..3c61af7 --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/cloudy-valley.jpg.REMOVED.git-id @@ -0,0 +1 @@ +07db18c6d4373495a8aa9433d5747c6b257d20d1
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/dramatic-mountains.jpg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/dramatic-mountains.jpg.REMOVED.git-id new file mode 100644 index 0000000..e7f9ba1 --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/dramatic-mountains.jpg.REMOVED.git-id @@ -0,0 +1 @@ +c9a8766c6d83ec0047ad2ce7baba56475d692783
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/forested-mountain.jpg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/forested-mountain.jpg.REMOVED.git-id new file mode 100644 index 0000000..bfa8ffa --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/forested-mountain.jpg.REMOVED.git-id @@ -0,0 +1 @@ +f5a9537d35436f4705363bf8f7d539f12d980edf
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/forested-mountainside.jpg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/forested-mountainside.jpg.REMOVED.git-id new file mode 100644 index 0000000..73a8503 --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/forested-mountainside.jpg.REMOVED.git-id @@ -0,0 +1 @@ +f142762db436b6c0634606a2449de5f8cf9b8d95
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/green-mountains.jpg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/green-mountains.jpg.REMOVED.git-id new file mode 100644 index 0000000..570f2ef --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/green-mountains.jpg.REMOVED.git-id @@ -0,0 +1 @@ +9fe5f9d53d4eae1ee986f695ff3b1aefb3b9ce01
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/hillside-village.jpg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/hillside-village.jpg.REMOVED.git-id new file mode 100644 index 0000000..17250be --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/hillside-village.jpg.REMOVED.git-id @@ -0,0 +1 @@ +7bb214a8c0b69f66193fc9c75ad66aab6202a87f
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/monochrome-mountain-sky.jpg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/monochrome-mountain-sky.jpg.REMOVED.git-id new file mode 100644 index 0000000..c7b3d7f --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/monochrome-mountain-sky.jpg.REMOVED.git-id @@ -0,0 +1 @@ +10866fc7566bc639fc9fa0e0cf4b15b00c5611e2
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/mountain-glowing-sky.jpg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/mountain-glowing-sky.jpg.REMOVED.git-id new file mode 100644 index 0000000..8a2eefb --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/mountain-glowing-sky.jpg.REMOVED.git-id @@ -0,0 +1 @@ +74fda86258377de5190cc4651540825009639971
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/mountain-sky-streak.jpg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/mountain-sky-streak.jpg.REMOVED.git-id new file mode 100644 index 0000000..4ade70e --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/mountain-sky-streak.jpg.REMOVED.git-id @@ -0,0 +1 @@ +83881e043b85223e4519e9c5744fd75f2015bd07
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/mountain-sunset.jpg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/mountain-sunset.jpg.REMOVED.git-id new file mode 100644 index 0000000..9925380 --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/mountain-sunset.jpg.REMOVED.git-id @@ -0,0 +1 @@ +a0ad8aad30426eba7f854100534ad95bbc5ab4c4
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/mountain-through-valley.jpg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/mountain-through-valley.jpg.REMOVED.git-id new file mode 100644 index 0000000..de062a7 --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/mountain-through-valley.jpg.REMOVED.git-id @@ -0,0 +1 @@ +66add41ebaa07ea6b6c7a899f0707f5c05d0a7a9
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/night-mountain-silhouette.jpg b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/night-mountain-silhouette.jpg Binary files differnew file mode 100644 index 0000000..052f0ff --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/night-mountain-silhouette.jpg diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/pink-hill-silhouette.jpg b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/pink-hill-silhouette.jpg Binary files differnew file mode 100644 index 0000000..83ba86c --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/pink-hill-silhouette.jpg diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/purple-mountains.jpg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/purple-mountains.jpg.REMOVED.git-id new file mode 100644 index 0000000..09824df --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/purple-mountains.jpg.REMOVED.git-id @@ -0,0 +1 @@ +b1ed553c6325a9ad2da983852387c2dfe50f6825
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/red-ridges.jpg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/red-ridges.jpg.REMOVED.git-id new file mode 100644 index 0000000..1e10d7c --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/red-ridges.jpg.REMOVED.git-id @@ -0,0 +1 @@ +8c5eeb42697a79f5f32b5960e625e3cff6d73d41
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/red-rock.jpg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/red-rock.jpg.REMOVED.git-id new file mode 100644 index 0000000..5649262 --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/red-rock.jpg.REMOVED.git-id @@ -0,0 +1 @@ +7c720c493c2f9ad86b1bef25b7c49b8b7bcd6557
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/salt-flats.jpg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/salt-flats.jpg.REMOVED.git-id new file mode 100644 index 0000000..7ba92ea --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/salt-flats.jpg.REMOVED.git-id @@ -0,0 +1 @@ +cfe81cb76724211064d953f69709536cb7626bd4
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/sea-of-clouds.jpg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/sea-of-clouds.jpg.REMOVED.git-id new file mode 100644 index 0000000..8bc7e51 --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/sea-of-clouds.jpg.REMOVED.git-id @@ -0,0 +1 @@ +fdb0709d4a348e27cf32c77e7ff46843fe7defc3
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/seaside-mountain.jpg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/seaside-mountain.jpg.REMOVED.git-id new file mode 100644 index 0000000..d0e9edf --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/seaside-mountain.jpg.REMOVED.git-id @@ -0,0 +1 @@ +cc0580d227effdd2801b1f9fde7400a4b3adf2a5
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/tree-mountain.jpg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/tree-mountain.jpg.REMOVED.git-id new file mode 100644 index 0000000..465ee8f --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/tree-mountain.jpg.REMOVED.git-id @@ -0,0 +1 @@ +597e7f1f8dd45f386a340fd9e5747118778bc03e
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/yellow-mountains.jpg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/yellow-mountains.jpg.REMOVED.git-id new file mode 100644 index 0000000..00a6e0c --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/yellow-mountains.jpg.REMOVED.git-id @@ -0,0 +1 @@ +96a0cd20d93ede80ec2614357952bf8c5074a91c
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/yosemite-valley.jpg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/yosemite-valley.jpg.REMOVED.git-id new file mode 100644 index 0000000..681c055 --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/landscape/yosemite-valley.jpg.REMOVED.git-id @@ -0,0 +1 @@ +ae0b4039a4783e16323dc164a4ad5124b1618983
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/nature/crags.jpg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/nature/crags.jpg.REMOVED.git-id new file mode 100644 index 0000000..179a3ee --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/nature/crags.jpg.REMOVED.git-id @@ -0,0 +1 @@ +6540b948567bc7c398a4f763537583c3380da4cc
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/nature/dusk-rocky-beach.jpg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/nature/dusk-rocky-beach.jpg.REMOVED.git-id new file mode 100644 index 0000000..2850870 --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/nature/dusk-rocky-beach.jpg.REMOVED.git-id @@ -0,0 +1 @@ +7d1e02e402e6764f27d54dce2b1ca9cece3f9853
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/nature/flowers.png b/modules/user/aesthetics/themes/oxocarbon/wallpapers/nature/flowers.png Binary files differnew file mode 100644 index 0000000..791cf4e --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/nature/flowers.png diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/nature/foggy-forest.jpg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/nature/foggy-forest.jpg.REMOVED.git-id new file mode 100644 index 0000000..d16a315 --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/nature/foggy-forest.jpg.REMOVED.git-id @@ -0,0 +1 @@ +ceb6f4745978a2ee495e0cafc660e442ddf093eb
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/nature/forest-trail.jpg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/nature/forest-trail.jpg.REMOVED.git-id new file mode 100644 index 0000000..556867f --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/nature/forest-trail.jpg.REMOVED.git-id @@ -0,0 +1 @@ +861b48748b56668e413359a8e21245b205f8ce06
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/nature/narrow-waterfall.jpg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/nature/narrow-waterfall.jpg.REMOVED.git-id new file mode 100644 index 0000000..0dd142c --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/nature/narrow-waterfall.jpg.REMOVED.git-id @@ -0,0 +1 @@ +c16ecda2c7373771c4026a1bee885f874a311889
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/nature/purple-sky.jpg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/nature/purple-sky.jpg.REMOVED.git-id new file mode 100644 index 0000000..c108571 --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/nature/purple-sky.jpg.REMOVED.git-id @@ -0,0 +1 @@ +e6d39dd457a04e73618304b9df6048109e35e181
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/nature/snowy-slope.jpg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/nature/snowy-slope.jpg.REMOVED.git-id new file mode 100644 index 0000000..576c9e5 --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/nature/snowy-slope.jpg.REMOVED.git-id @@ -0,0 +1 @@ +f792412ee7bc0d77b6b627290ace6629c1c0fac9
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/ocean/aerial-island.jpg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/ocean/aerial-island.jpg.REMOVED.git-id new file mode 100644 index 0000000..b667868 --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/ocean/aerial-island.jpg.REMOVED.git-id @@ -0,0 +1 @@ +96bd9a930015289dc5514caf2c979756664ea86c
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/ocean/beached-ship.jpg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/ocean/beached-ship.jpg.REMOVED.git-id new file mode 100644 index 0000000..462c5a1 --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/ocean/beached-ship.jpg.REMOVED.git-id @@ -0,0 +1 @@ +928f6b1060b589d2e452ce59825c700207449fd9
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/ocean/beachfront.jpg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/ocean/beachfront.jpg.REMOVED.git-id new file mode 100644 index 0000000..21f3c5d --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/ocean/beachfront.jpg.REMOVED.git-id @@ -0,0 +1 @@ +52739b890a162f7d2744f6257401334f5216fe08
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/ocean/seaside-village.jpg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/ocean/seaside-village.jpg.REMOVED.git-id new file mode 100644 index 0000000..454c5d8 --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/ocean/seaside-village.jpg.REMOVED.git-id @@ -0,0 +1 @@ +75d6df2f3ea489ea6556114afec2deb0e288beec
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/ocean/sunset-seaside-city.jpg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/ocean/sunset-seaside-city.jpg.REMOVED.git-id new file mode 100644 index 0000000..17e752d --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/ocean/sunset-seaside-city.jpg.REMOVED.git-id @@ -0,0 +1 @@ +f52a7a31c74ca6d5684c0dc647796fd6e0e4881e
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/other/grey-dune.jpeg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/other/grey-dune.jpeg.REMOVED.git-id new file mode 100644 index 0000000..2d3d7b3 --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/other/grey-dune.jpeg.REMOVED.git-id @@ -0,0 +1 @@ +2131a11962de4aa72bbfb9d87dbcc39d914ae8f9
\ No newline at end of file diff --git a/modules/user/aesthetics/themes/oxocarbon/wallpapers/other/yellow-moon-in-sky.jpg.REMOVED.git-id b/modules/user/aesthetics/themes/oxocarbon/wallpapers/other/yellow-moon-in-sky.jpg.REMOVED.git-id new file mode 100644 index 0000000..e970c2e --- /dev/null +++ b/modules/user/aesthetics/themes/oxocarbon/wallpapers/other/yellow-moon-in-sky.jpg.REMOVED.git-id @@ -0,0 +1 @@ +3c99ad95e60b3be7dd87f8a3ee762a721a1aea0b
\ No newline at end of file |
