diff --git a/config-stow b/config-stow
index 1332eec..d269f39 100755
--- a/config-stow
+++ b/config-stow
@@ -29,24 +29,19 @@ GUI_BASE_PKGS = [
"ghostty", # alternative terminal emulator
"misc", # miscellaneous GUI configs (e.g. *-flags)
"mpd", # music player daemon
- # "mpv", # media player
"wallpaper", # wallpapers & manager
- "kvantum", # qt theming
+ "qt6", # qt theming
"nwg-look", # gtk theming
"wezterm", # alternative terminal emulator
]
# for Hyprland setup
-# HYPRLAND_PKGS = [
-# *GUI_BASE_PKGS,
-# "eww", # widgets
-# "hypr", # hypr family
-# "hyprland", # wm config
-# "mako", # notifications
-# "rofi", # application launcher
-# "waybar", # status bar
-# "wlogout", # logout menu
-# ]
+HYPRLAND_PKGS = [
+ *GUI_BASE_PKGS,
+ "hypr", # hypr family
+ "hyprland", # wm config
+ "vicinae", # application launcher
+]
# for Niri setup
NIRI_PKGS = [
@@ -62,7 +57,7 @@ PKGS = {
"base": BASE_PKGS,
"tui": TUI_PKGS,
"gui": GUI_BASE_PKGS,
- # "hyprland": HYPRLAND_PKGS,
+ "hyprland": HYPRLAND_PKGS,
"niri": NIRI_PKGS,
}
diff --git a/config/hyprland/.luarc.json b/config/hyprland/.luarc.json
new file mode 100644
index 0000000..be9f9d6
--- /dev/null
+++ b/config/hyprland/.luarc.json
@@ -0,0 +1,5 @@
+{
+ "workspace": {
+ "library": ["/usr/share/hypr/stubs"]
+ }
+}
diff --git a/config/hyprland/hyprland.lua b/config/hyprland/hyprland.lua
new file mode 100644
index 0000000..c4ebb0f
--- /dev/null
+++ b/config/hyprland/hyprland.lua
@@ -0,0 +1,16 @@
+-- https://wiki.hypr.land/Configuring/Start/
+
+-- require("hyprland/envs") -- managed by uwsm
+
+require("hyprland/monitors")
+require("hyprland/permissions")
+require("hyprland/input")
+
+require("hyprland/looks")
+require("hyprland/animations")
+require("hyprland/layouts")
+require("hyprland/rules")
+require("hyprland/gestures")
+require("hyprland/binds")
+
+require("hyprland/execs")
diff --git a/config/hyprland/hyprland/animations.lua b/config/hyprland/hyprland/animations.lua
new file mode 100644
index 0000000..613dbb0
--- /dev/null
+++ b/config/hyprland/hyprland/animations.lua
@@ -0,0 +1,45 @@
+-- Windows use springs so they settle with weight; everything else uses short
+-- asymmetric beziers, entering with deceleration and leaving faster.
+
+hl.curve("standard", { type = "bezier", points = { { 0.2, 0.0 }, { 0.0, 1.0 } } })
+hl.curve("decel", { type = "bezier", points = { { 0.05, 0.7 }, { 0.1, 1.0 } } })
+hl.curve("accel", { type = "bezier", points = { { 0.3, 0.0 }, { 0.8, 0.15 } } })
+hl.curve("linear", { type = "bezier", points = { { 0.0, 0.0 }, { 1.0, 1.0 } } })
+
+-- Stiffness sets the speed, dampening how much it overshoots.
+hl.curve("snappy", { type = "spring", mass = 1, stiffness = 300, dampening = 26 })
+hl.curve("smooth", { type = "spring", mass = 1, stiffness = 190, dampening = 24 })
+hl.curve("lively", { type = "spring", mass = 1, stiffness = 250, dampening = 19 })
+
+-- Unset leaves inherit from their parent.
+hl.animation({ leaf = "global", enabled = true, speed = 4, bezier = "standard" })
+
+hl.animation({ leaf = "windows", enabled = true, speed = 4, spring = "snappy" })
+hl.animation({ leaf = "windowsIn", enabled = true, speed = 4, spring = "lively", style = "popin 92%" })
+hl.animation({ leaf = "windowsOut", enabled = true, speed = 2.2, bezier = "accel", style = "popin 94%" })
+hl.animation({ leaf = "windowsMove", enabled = true, speed = 4, spring = "smooth" })
+
+hl.animation({ leaf = "layers", enabled = true, speed = 3, bezier = "decel" })
+hl.animation({ leaf = "layersIn", enabled = true, speed = 3, bezier = "decel", style = "slide" })
+hl.animation({ leaf = "layersOut", enabled = true, speed = 2.2, bezier = "accel", style = "slide" })
+
+hl.animation({ leaf = "fade", enabled = true, speed = 2.6, bezier = "standard" })
+hl.animation({ leaf = "fadeIn", enabled = true, speed = 2.2, bezier = "decel" })
+hl.animation({ leaf = "fadeOut", enabled = true, speed = 1.8, bezier = "accel" })
+hl.animation({ leaf = "fadeSwitch", enabled = true, speed = 2.5, bezier = "standard" })
+hl.animation({ leaf = "fadeDim", enabled = true, speed = 2.5, bezier = "standard" })
+hl.animation({ leaf = "fadeLayersIn", enabled = true, speed = 2.2, bezier = "decel" })
+hl.animation({ leaf = "fadeLayersOut", enabled = true, speed = 1.8, bezier = "accel" })
+hl.animation({ leaf = "fadePopupsIn", enabled = true, speed = 1.8, bezier = "decel" })
+hl.animation({ leaf = "fadePopupsOut", enabled = true, speed = 1.4, bezier = "accel" })
+
+hl.animation({ leaf = "border", enabled = true, speed = 3, bezier = "standard" })
+
+-- `borderangle` with style "loop" is left unset on purpose: it renders
+-- continuously at the refresh rate even when idle, which costs battery.
+
+hl.animation({ leaf = "workspaces", enabled = true, speed = 4.5, bezier = "standard", style = "slidefadevert 12%" })
+hl.animation({ leaf = "specialWorkspace", enabled = true, speed = 4, spring = "smooth", style = "slidevert" })
+
+hl.animation({ leaf = "zoomFactor", enabled = true, speed = 4, bezier = "decel" })
+hl.animation({ leaf = "monitorAdded", enabled = true, speed = 4, bezier = "decel" })
diff --git a/config/hyprland/hyprland/binds.lua b/config/hyprland/hyprland/binds.lua
new file mode 100644
index 0000000..2bb52bc
--- /dev/null
+++ b/config/hyprland/hyprland/binds.lua
@@ -0,0 +1,189 @@
+local mod = "SUPER"
+local L = require("hyprland/layout-actions")
+
+-- Applications
+
+hl.bind(mod .. " + T", hl.dsp.exec_cmd("kitty"), { description = "Terminal" })
+hl.bind(mod .. " + Return", hl.dsp.exec_cmd("kitty"), { description = "Terminal" })
+hl.bind(mod .. " + SHIFT + T", hl.dsp.exec_cmd("kitty-floating"), { description = "Floating terminal" })
+hl.bind(mod .. " + SHIFT + Return", hl.dsp.exec_cmd("kitty-floating"), { description = "Floating terminal" })
+
+hl.bind(mod .. " + C", hl.dsp.exec_cmd("code"), { description = "Editor" })
+hl.bind(mod .. " + E", hl.dsp.exec_cmd("nautilus --new-window"), { description = "File manager (GTK)" })
+hl.bind(mod .. " + SHIFT + E", hl.dsp.exec_cmd("dolphin --new-window"), { description = "File manager" })
+hl.bind(mod .. " + W", hl.dsp.exec_cmd("zen || zen-browser"), { description = "Browser" })
+
+hl.bind(mod .. " + B", hl.dsp.exec_cmd("pkill -x -n btop || kitty-floating -e btop"), { description = "System monitor" })
+hl.bind(mod .. " + O", hl.dsp.exec_cmd("pkill -x -n pwvucontrol || pwvucontrol"), { description = "Audio mixer" })
+hl.bind("CTRL + ALT + Delete", hl.dsp.exec_cmd("pkill -x wlogout || wlogout"), { description = "Session menu" })
+
+-- Launcher. URLs are quoted: `?` is a glob to the `sh -c` exec_cmd runs.
+
+hl.bind("ALT + space", hl.dsp.exec_cmd("vicinae toggle"), { description = "Launcher" })
+hl.bind(mod .. " + D", hl.dsp.exec_cmd("vicinae 'vicinae://launch/system/run?toggle=true'"), { description = "Run command" })
+hl.bind(mod .. " + V", hl.dsp.exec_cmd("vicinae 'vicinae://launch/clipboard/history?toggle=true'"), { description = "Clipboard history" })
+hl.bind(mod .. " + period", hl.dsp.exec_cmd("vicinae 'vicinae://launch/core/search-emojis?toggle=true'"), { description = "Emoji picker" })
+
+-- Screenshots and colour
+
+hl.bind("Print", hl.dsp.exec_cmd("screenshot-script full"), { description = "Screenshot: screen" })
+hl.bind(mod .. " + SHIFT + S", hl.dsp.exec_cmd("screenshot-script area"), { description = "Screenshot: region" })
+hl.bind(mod .. " + CTRL + SHIFT + S", hl.dsp.exec_cmd("screenshot-script window"), { description = "Screenshot: window" })
+hl.bind(mod .. " + SHIFT + C", hl.dsp.exec_cmd("hyprpicker -a"), { description = "Pick colour" })
+
+-- Utilities
+
+hl.bind(mod .. " + N", hl.dsp.exec_cmd("sunset"), { description = "Night light" })
+hl.bind(mod .. " + SHIFT + K", hl.dsp.exec_cmd("pkill -x waybar; waybar"), { description = "Restart the bar" })
+hl.bind(mod .. " + CTRL + R", hl.dsp.exec_cmd("hyprctl reload"), { description = "Reload config" })
+
+-- hypridle has no runtime toggle, and probing for it would mean a blocking
+-- popen, which must not happen in a bind callback.
+local idle_inhibited = false
+hl.bind(mod .. " + I", function()
+ idle_inhibited = not idle_inhibited
+ if idle_inhibited then
+ hl.exec_cmd("pkill -x hypridle")
+ else
+ hl.exec_cmd("hypridle")
+ end
+ hl.notification.create({
+ text = idle_inhibited and "Idle inhibited" or "Idle timers active",
+ timeout = 1500,
+ })
+end, { description = "Toggle idle inhibit" })
+
+-- Media and brightness. BRIGHTNESSCTL_DEVICE comes from set_display.
+
+hl.bind("XF86AudioRaiseVolume", hl.dsp.exec_cmd("wpctl set-volume -l 1.5 @DEFAULT_AUDIO_SINK@ 5%+"),
+ { locked = true, repeating = true })
+hl.bind("XF86AudioLowerVolume", hl.dsp.exec_cmd("wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-"),
+ { locked = true, repeating = true })
+hl.bind("XF86AudioMute", hl.dsp.exec_cmd("wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle"), { locked = true })
+hl.bind("XF86AudioMicMute", hl.dsp.exec_cmd("wpctl set-mute @DEFAULT_AUDIO_SOURCE@ toggle"), { locked = true })
+
+hl.bind("XF86AudioPlay", hl.dsp.exec_cmd("playerctl play-pause"), { locked = true })
+hl.bind("XF86AudioPause", hl.dsp.exec_cmd("playerctl play-pause"), { locked = true })
+hl.bind("XF86AudioNext", hl.dsp.exec_cmd("playerctl next"), { locked = true })
+hl.bind("XF86AudioPrev", hl.dsp.exec_cmd("playerctl previous"), { locked = true })
+
+hl.bind("XF86MonBrightnessUp",
+ hl.dsp.exec_cmd('brightnessctl -d "${BRIGHTNESSCTL_DEVICE:-intel_backlight}" -e4 -n2 set 5%+'),
+ { locked = true, repeating = true })
+hl.bind("XF86MonBrightnessDown",
+ hl.dsp.exec_cmd('brightnessctl -d "${BRIGHTNESSCTL_DEVICE:-intel_backlight}" -e4 -n2 set 5%-'),
+ { locked = true, repeating = true })
+
+-- Window management
+
+hl.bind(mod .. " + Q", hl.dsp.window.close(), { description = "Close window" })
+hl.bind("ALT + F4", hl.dsp.window.close(), { description = "Close window" })
+hl.bind(mod .. " + SHIFT + Q", hl.dsp.window.kill(), { description = "Force kill window" })
+
+for key, dir in pairs({ Left = "l", Right = "r", Up = "u", Down = "d" }) do
+ hl.bind(mod .. " + " .. key, hl.dsp.focus({ direction = dir }))
+ hl.bind(mod .. " + SHIFT + " .. key, hl.dsp.window.move({ direction = dir, group_aware = true }))
+ hl.bind(mod .. " + CTRL + " .. key, hl.dsp.focus({ monitor = dir }))
+ hl.bind(mod .. " + CTRL + SHIFT + " .. key, hl.dsp.window.move({ monitor = dir, follow = true }))
+end
+
+hl.bind(mod .. " + ALT + space", hl.dsp.window.float({ action = "toggle" }), { description = "Toggle floating" })
+hl.bind(mod .. " + P", hl.dsp.window.pin(), { description = "Pin window" })
+hl.bind(mod .. " + Y", hl.dsp.window.center(), { description = "Centre window" })
+
+hl.bind(mod .. " + F", hl.dsp.window.fullscreen({ mode = "maximized" }), { description = "Maximize" })
+hl.bind(mod .. " + SHIFT + F", hl.dsp.window.fullscreen({ mode = "fullscreen" }), { description = "Fullscreen" })
+
+-- The client believes it is fullscreen, the layout does not. Stops
+-- Chromium-likes dropping into presentation mode.
+hl.bind(mod .. " + ALT + F", hl.dsp.window.fullscreen_state({ internal = 0, client = 2 }),
+ { description = "Fake fullscreen" })
+
+hl.bind("ALT + Tab", function()
+ L.cycle_next()
+ hl.dispatch(hl.dsp.window.bring_to_top())
+end, { description = "Next window" })
+hl.bind("ALT + SHIFT + Tab", function()
+ L.cycle_prev()
+ hl.dispatch(hl.dsp.window.bring_to_top())
+end, { description = "Previous window" })
+
+hl.bind(mod .. " + SHIFT + Tab", function()
+ local w = hl.get_active_window()
+ hl.dispatch(hl.dsp.focus({ window = (w and w.floating) and "tiled" or "floating" }))
+end, { description = "Floating <-> tiled focus" })
+
+-- Tabbed groups
+
+hl.bind(mod .. " + SHIFT + M", hl.dsp.group.toggle(), { description = "Toggle tabbed group" })
+hl.bind(mod .. " + CTRL + Tab", hl.dsp.group.next(), { description = "Next tab" })
+hl.bind(mod .. " + CTRL + SHIFT + Tab", hl.dsp.group.prev(), { description = "Previous tab" })
+
+-- Layout-aware
+
+hl.bind(mod .. " + minus", L.narrow, { repeating = true, description = "Narrower" })
+hl.bind(mod .. " + plus", L.widen, { repeating = true, description = "Wider" })
+hl.bind(mod .. " + SHIFT + minus", hl.dsp.window.resize({ x = 0, y = -40, relative = true }), { repeating = true })
+hl.bind(mod .. " + SHIFT + plus", hl.dsp.window.resize({ x = 0, y = 40, relative = true }), { repeating = true })
+
+hl.bind(mod .. " + R", L.cycle_width, { description = "Cycle preset width" })
+hl.bind(mod .. " + J", L.tweak, { description = "Split / orientation / expand" })
+hl.bind(mod .. " + U", L.promote, { description = "Promote window" })
+
+hl.bind(mod .. " + ALT + Left", L.consume_prev, { description = "Consume/expel left" })
+hl.bind(mod .. " + ALT + Right", L.consume_next, { description = "Consume/expel right" })
+hl.bind(mod .. " + SHIFT + comma", L.consume, { description = "Consume window" })
+hl.bind(mod .. " + SHIFT + period", L.expel, { description = "Expel window" })
+
+-- Workspaces
+
+for i = 1, 10 do
+ local key = tostring(i % 10) -- workspace 10 sits on the 0 key
+ hl.bind(mod .. " + " .. key, hl.dsp.focus({ workspace = i }))
+ hl.bind(mod .. " + ALT + " .. key, hl.dsp.window.move({ workspace = i, follow = true }))
+end
+
+hl.bind(mod .. " + Page_Down", hl.dsp.focus({ workspace = "+1" }))
+hl.bind(mod .. " + Page_Up", hl.dsp.focus({ workspace = "-1" }))
+-- hl.bind(mod .. " + Down", hl.dsp.focus({ workspace = "+1" }))
+-- hl.bind(mod .. " + Up", hl.dsp.focus({ workspace = "-1" }))
+hl.bind(mod .. " + SHIFT + Page_Down", hl.dsp.window.move({ workspace = "+1", follow = true }))
+hl.bind(mod .. " + SHIFT + Page_Up", hl.dsp.window.move({ workspace = "-1", follow = true }))
+-- hl.bind(mod .. " + SHIFT + Down", hl.dsp.window.move({ workspace = "+1", follow = true }))
+-- hl.bind(mod .. " + SHIFT + Up", hl.dsp.window.move({ workspace = "-1", follow = true }))
+
+-- Scroll through only the workspaces that exist.
+hl.bind(mod .. " + mouse_down", hl.dsp.focus({ workspace = "e+1" }))
+hl.bind(mod .. " + mouse_up", hl.dsp.focus({ workspace = "e-1" }))
+
+hl.bind(mod .. " + Tab", hl.dsp.focus({ workspace = "previous" }), { description = "Last workspace" })
+
+hl.bind(mod .. " + S", hl.dsp.workspace.toggle_special("scratchpad"), { description = "Scratchpad" })
+hl.bind(mod .. " + ALT + S", hl.dsp.window.move({ workspace = "special:scratchpad" }),
+ { description = "Send to scratchpad" })
+
+-- Mouse
+
+hl.bind(mod .. " + mouse:272", hl.dsp.window.drag(), { mouse = true })
+hl.bind(mod .. " + mouse:273", hl.dsp.window.resize(), { mouse = true })
+hl.bind(mod .. " + mouse:274", hl.dsp.window.close(), { description = "Close window" })
+
+-- Cycles dwindle -> master -> scrolling, notifying which. No submap: a modal
+-- state with no on-screen indicator traps the keyboard.
+hl.bind(mod .. " + SHIFT + L", L.next(), { description = "Cycle layout" })
+
+-- Session
+
+hl.bind(mod .. " + L", hl.dsp.exec_cmd("loginctl lock-session"), { description = "Lock" })
+
+-- The delay is deliberate: driving dpms straight from a keybind is documented
+-- as undefined behaviour.
+hl.bind(mod .. " + SHIFT + P", function()
+ hl.exec_cmd("loginctl lock-session")
+ hl.timer(function()
+ hl.dispatch(hl.dsp.dpms({ action = "disable" }))
+ end, { timeout = 800, type = "oneshot" })
+end, { description = "Lock and blank screens" })
+
+-- hyprshutdown rather than hl.dsp.exit(), so the session tears down in order.
+hl.bind(mod .. " + K", hl.dsp.exec_cmd("hyprshutdown"), { description = "Exit Hyprland" })
diff --git a/config/hyprland/hyprland/envs.lua b/config/hyprland/hyprland/envs.lua
new file mode 100644
index 0000000..ac1ebc8
--- /dev/null
+++ b/config/hyprland/hyprland/envs.lua
@@ -0,0 +1,41 @@
+-- Cursor
+
+hl.env("XCURSOR_SIZE", "24")
+hl.env("HYPRCURSOR_SIZE", "24")
+hl.env("XCURSOR_THEME", "Bibata-Modern-Ice")
+
+-- Qt
+
+hl.env("QT_QPA_PLATFORM", "wayland")
+hl.env("QT_QPA_PLATFORMTHEME", "kde")
+hl.env("QT_STYLE_OVERRIDE", "Kvantum")
+
+-- Nvidia
+
+hl.env("LIBVA_DRIVER_NAME", "nvidia")
+hl.env("NVD_BACKEND", "nvidia")
+hl.env("GBM_BACKEND", "nvidia-drm")
+
+-- Aquamarine reads AQ_DRM_DEVICES; set_display exports the resolved list as
+-- HYPR_AQ_DRM_DEVICES. The fallback applies only if it was never sourced.
+local drm_devices = os.getenv("HYPR_AQ_DRM_DEVICES")
+if drm_devices == nil or drm_devices == "" then
+ drm_devices = "/dev/dri/card0:/dev/dri/card1"
+end
+hl.env("AQ_DRM_DEVICES", drm_devices)
+
+-- Input method
+
+hl.env("QT_IM_MODULE", "fcitx")
+hl.env("XMODIFIERS", "@im=fcitx")
+hl.env("SDL_IM_MODULE", "fcitx")
+hl.env("GLFW_IM_MODULE", "ibus")
+hl.env("INPUT_METHOD", "fcitx")
+
+-- Swing
+
+hl.env("_JAVA_AWT_WM_NONREPARENTING", "1")
+
+-- Others
+
+hl.env("ELECTRON_OZONE_PLATFORM_HINT", "wayland")
diff --git a/config/hyprland/hyprland/execs.lua b/config/hyprland/hyprland/execs.lua
new file mode 100644
index 0000000..52fece5
--- /dev/null
+++ b/config/hyprland/hyprland/execs.lua
@@ -0,0 +1,10 @@
+hl.on("hyprland.start", function()
+ hl.exec_cmd("uwsm finalize HYPRLAND_INSTANCE_SIGNATURE")
+ hl.exec_cmd("waybar")
+ hl.exec_cmd("gnome-keyring-daemon --start --components=secrets")
+ hl.exec_cmd("/usr/lib/soteria-polkit/soteria")
+ hl.exec_cmd("solaar -w hide")
+ hl.exec_cmd("sunshine")
+ hl.exec_cmd("hypridle")
+ hl.exec_cmd("vicinae server")
+end)
diff --git a/config/hyprland/hyprland/gestures.lua b/config/hyprland/hyprland/gestures.lua
new file mode 100644
index 0000000..452012d
--- /dev/null
+++ b/config/hyprland/hyprland/gestures.lua
@@ -0,0 +1,28 @@
+hl.config({
+ gestures = {
+ workspace_swipe_distance = 400,
+ workspace_swipe_cancel_ratio = 0.2,
+ workspace_swipe_min_speed_to_force = 5,
+
+ workspace_swipe_direction_lock = true,
+ workspace_swipe_direction_lock_threshold = 10,
+
+ workspace_swipe_create_new = true,
+ workspace_swipe_forever = true,
+ workspace_swipe_touch = false,
+ },
+})
+
+hl.gesture({ fingers = 3, direction = "vertical", action = "workspace" })
+
+-- Only does anything under the scrolling layout, harmless elsewhere.
+hl.gesture({ fingers = 4, direction = "horizontal", action = "scroll_move" })
+
+hl.gesture({ fingers = 4, direction = "up", action = "special", workspace_name = "scratchpad" })
+
+-- Held modifiers turn a swipe into a window action rather than navigation.
+hl.gesture({ fingers = 3, direction = "up", mods = "SUPER", action = "fullscreen" })
+hl.gesture({ fingers = 3, direction = "down", mods = "SUPER", action = "close" })
+hl.gesture({ fingers = 3, direction = "left", mods = "SUPER", scale = 1.5, action = "float" })
+
+hl.gesture({ fingers = 2, direction = "pinch", action = "cursor_zoom", zoom_level = 1, mode = "live" })
diff --git a/config/hyprland/hyprland/input.lua b/config/hyprland/hyprland/input.lua
new file mode 100644
index 0000000..f78396e
--- /dev/null
+++ b/config/hyprland/hyprland/input.lua
@@ -0,0 +1,14 @@
+hl.config({
+ input = {
+ kb_layout = "de",
+ numlock_by_default = true,
+
+ follow_mouse = 1,
+
+ sensitivity = 0, -- -1.0 - 1.0
+
+ touchpad = {
+ natural_scroll = true,
+ },
+ },
+})
diff --git a/config/hyprland/hyprland/layout-actions.lua b/config/hyprland/hyprland/layout-actions.lua
new file mode 100644
index 0000000..c1529c4
--- /dev/null
+++ b/config/hyprland/hyprland/layout-actions.lua
@@ -0,0 +1,120 @@
+-- Layout messages are layout-specific: "splitratio" means nothing to master,
+-- "mfact" nothing to scrolling. These resolve one key to the right action.
+
+local M = {}
+
+--- Layout of the active workspace; per-workspace rules win over the default.
+function M.current()
+ local ws = hl.get_active_workspace()
+ if ws and ws.tiled_layout and ws.tiled_layout ~= "" then
+ return ws.tiled_layout
+ end
+ return hl.get_config("general.layout") or "dwindle"
+end
+
+--- `map` is keyed by layout name, `map.default` covers anything unlisted.
+--- Values are functions so no dispatcher is built until the bind fires.
+local function by_layout(map)
+ return function()
+ local pick = map[M.current()] or map.default
+ if pick then
+ hl.dispatch(pick())
+ end
+ end
+end
+
+M.by_layout = by_layout
+
+M.widen = by_layout({
+ dwindle = function() return hl.dsp.layout("splitratio +0.05") end,
+ master = function() return hl.dsp.layout("mfact +0.05") end,
+ scrolling = function() return hl.dsp.layout("colresize +0.05") end,
+})
+
+M.narrow = by_layout({
+ dwindle = function() return hl.dsp.layout("splitratio -0.05") end,
+ master = function() return hl.dsp.layout("mfact -0.05") end,
+ scrolling = function() return hl.dsp.layout("colresize -0.05") end,
+})
+
+--- Cycle preset widths under scrolling, elsewhere snap back to an even split.
+M.cycle_width = by_layout({
+ dwindle = function() return hl.dsp.layout("splitratio 1.0 exact") end,
+ master = function() return hl.dsp.layout("mfact exact 0.58") end,
+ scrolling = function() return hl.dsp.layout("colresize +conf") end,
+})
+
+--- Root of the tree, the master slot, or a column of its own.
+M.promote = by_layout({
+ dwindle = function() return hl.dsp.layout("movetoroot") end,
+ master = function() return hl.dsp.layout("swapwithmaster master") end,
+ scrolling = function() return hl.dsp.layout("promote") end,
+})
+
+--- Flip the split, rotate the master area, or fill the free space.
+M.tweak = by_layout({
+ dwindle = function() return hl.dsp.layout("togglesplit") end,
+ master = function() return hl.dsp.layout("orientationnext") end,
+ scrolling = function() return hl.dsp.layout("fit expand") end,
+})
+
+M.cycle_next = by_layout({
+ master = function() return hl.dsp.layout("cyclenext") end,
+ default = function() return hl.dsp.window.cycle_next() end,
+})
+
+M.cycle_prev = by_layout({
+ master = function() return hl.dsp.layout("cycleprev") end,
+ default = function() return hl.dsp.window.cycle_next({ next = false }) end,
+})
+
+--- Scrolling consumes into columns; elsewhere the analogue is a tabbed group.
+M.consume_prev = by_layout({
+ scrolling = function() return hl.dsp.layout("consume_or_expel prev") end,
+ default = function() return hl.dsp.window.move({ into_or_create_group = "l" }) end,
+})
+
+M.consume_next = by_layout({
+ scrolling = function() return hl.dsp.layout("consume_or_expel next") end,
+ default = function() return hl.dsp.window.move({ into_or_create_group = "r" }) end,
+})
+
+M.consume = by_layout({
+ scrolling = function() return hl.dsp.layout("consume") end,
+ default = function() return hl.dsp.window.move({ into_or_create_group = "l" }) end,
+})
+
+M.expel = by_layout({
+ scrolling = function() return hl.dsp.layout("expel") end,
+ default = function() return hl.dsp.window.move({ out_of_group = true }) end,
+})
+
+local LAYOUTS = { "dwindle", "master", "scrolling" }
+
+--- Re-point the active workspace at another layout. Returns a bind callback.
+function M.set(name)
+ return function()
+ local ws = hl.get_active_workspace()
+ if not ws then
+ return
+ end
+ hl.workspace_rule({ workspace = tostring(ws.id), layout = name })
+ hl.notification.create({ text = "Layout: " .. name, timeout = 1500 })
+ end
+end
+
+function M.next()
+ return function()
+ local now = M.current()
+ local at = 1
+ for i, name in ipairs(LAYOUTS) do
+ if name == now then
+ at = i
+ break
+ end
+ end
+ M.set(LAYOUTS[(at % #LAYOUTS) + 1])()
+ end
+end
+
+return M
diff --git a/config/hyprland/hyprland/layouts.lua b/config/hyprland/hyprland/layouts.lua
new file mode 100644
index 0000000..62efdec
--- /dev/null
+++ b/config/hyprland/hyprland/layouts.lua
@@ -0,0 +1,58 @@
+-- All three layouts. SUPER+SHIFT+L switches the active workspace between them;
+-- the keymap is shared, see layout-actions.lua.
+
+hl.config({
+ dwindle = {
+ -- Required for SUPER+J (togglesplit) to mean anything.
+ preserve_split = true,
+
+ smart_split = false,
+ force_split = 2, -- new window lands right/bottom
+
+ smart_resizing = true,
+ use_active_for_splits = true,
+ precise_mouse_move = true,
+
+ default_split_ratio = 1.0,
+ -- 2560px stays "wide" through several splits, so stack sooner.
+ split_width_multiplier = 1.35,
+
+ special_scale_factor = 1.0,
+ },
+
+ master = {
+ mfact = 0.58,
+ orientation = "left",
+
+ -- New windows join the stack instead of stealing the master slot.
+ new_status = "slave",
+ new_on_active = "after",
+ new_on_top = false,
+
+ allow_small_split = true,
+ smart_resizing = true,
+ drop_at_cursor = true,
+ always_keep_position = false,
+ focus_master_on_close = false,
+
+ slave_count_for_center_master = 2,
+ center_master_fallback = "left",
+ special_scale_factor = 1.0,
+ },
+
+ scrolling = {
+ column_width = 0.5,
+ explicit_column_widths = "0.3, 0.5, 0.7, 1.0",
+
+ fullscreen_on_one_column = true,
+ focus_fit_method = 1,
+ follow_focus = true,
+ follow_min_visible = 0.4,
+
+ -- Let focus fall off the ends onto the other monitor.
+ wrap_focus = false,
+ wrap_swapcol = true,
+
+ direction = "right",
+ },
+})
diff --git a/config/hyprland/hyprland/looks.lua b/config/hyprland/hyprland/looks.lua
new file mode 100644
index 0000000..56b0f8b
--- /dev/null
+++ b/config/hyprland/hyprland/looks.lua
@@ -0,0 +1,168 @@
+local c = require("hyprland/theme")
+
+hl.config({
+ general = {
+ gaps_in = 3,
+ gaps_out = 6,
+ gaps_workspaces = 40,
+
+ border_size = 2,
+ col = {
+ active_border = c.gradient(c.blue, c.mauve, 45),
+ inactive_border = c.rgba(c.surface0, "cc"),
+ },
+
+ resize_on_border = true,
+ extend_border_grab_area = 12, -- 2px borders are hard to hit
+ hover_icon_on_border = true,
+
+ no_focus_fallback = true,
+ allow_tearing = true, -- gates the `immediate` rule
+
+ layout = "dwindle",
+
+ snap = {
+ enabled = true,
+ window_gap = 8,
+ monitor_gap = 8,
+ respect_gaps = true,
+ },
+ },
+
+ decoration = {
+ rounding = 14,
+ rounding_power = 2,
+
+ active_opacity = 1.0,
+ inactive_opacity = 0.96,
+ fullscreen_opacity = 1.0,
+
+ dim_inactive = false,
+ dim_special = 0.3,
+
+ shadow = {
+ enabled = true,
+ range = 24,
+ render_power = 3,
+ offset = { 0, 4 },
+ color = c.rgba("000000", "44"),
+ color_inactive = c.rgba("000000", "22"),
+ },
+
+ blur = {
+ enabled = true,
+ size = 6,
+ passes = 3,
+ new_optimizations = true,
+ xray = true,
+ ignore_opacity = true,
+ noise = 0.012,
+ contrast = 1.0,
+ brightness = 1.0,
+ vibrancy = 0.17,
+ vibrancy_darkness = 0.0,
+
+ special = false,
+ popups = true,
+ popups_ignorealpha = 0.6,
+
+ -- Keeps the fcitx5 candidate window readable over bright content.
+ input_methods = true,
+ input_methods_ignorealpha = 0.8,
+ },
+ },
+
+ group = {
+ auto_group = false,
+ insert_after_current = true,
+ focus_removed_window = true,
+ merge_groups_on_drag = true,
+
+ col = {
+ border_active = c.gradient(c.blue, c.mauve, 45),
+ border_inactive = c.rgba(c.surface0, "cc"),
+ border_locked_active = c.gradient(c.peach, c.red, 45),
+ border_locked_inactive = c.rgba(c.surface0, "cc"),
+ },
+
+ groupbar = {
+ enabled = true,
+ font_family = "Noto Sans",
+ font_size = 11,
+ height = 18,
+ indicator_height = 3,
+ indicator_gap = 2,
+ gradients = false,
+ render_titles = true,
+ scrolling = true,
+ middle_click_close = true,
+ stacked = false,
+ keep_upper_gap = true,
+ rounding = 6,
+ gaps_in = 2,
+ gaps_out = 2,
+
+ col = {
+ active = c.rgb(c.blue),
+ inactive = c.rgba(c.surface0, "dd"),
+ locked_active = c.rgb(c.peach),
+ locked_inactive = c.rgba(c.surface0, "dd"),
+ },
+ text_color = c.rgb(c.crust),
+ text_color_inactive = c.rgb(c.text),
+ },
+ },
+
+ cursor = {
+ warp_on_change_workspace = 1,
+ warp_on_toggle_special = 1,
+ persistent_warps = true,
+
+ hide_on_key_press = true,
+ inactive_timeout = 0,
+
+ default_monitor = "DP-1",
+ },
+
+ binds = {
+ workspace_back_and_forth = true,
+ allow_workspace_cycles = true,
+ hide_special_on_workspace_change = true,
+ movefocus_cycles_fullscreen = false,
+ window_direction_monitor_fallback = true,
+ scroll_event_delay = 0,
+ drag_threshold = 10,
+ },
+
+ misc = {
+ font_family = "Noto Sans",
+
+ -- Backdrop behind windows; no wallpaper daemon is started here.
+ disable_hyprland_logo = true,
+ disable_splash_rendering = true,
+ force_default_wallpaper = 0,
+ background_color = c.rgb(c.base),
+
+ vrr = 2, -- fullscreen only; 3 also gates on content type
+
+ mouse_move_enables_dpms = true,
+ key_press_enables_dpms = true,
+
+ animate_manual_resizes = false,
+ animate_mouse_windowdragging = false,
+
+ enable_swallow = false,
+ middle_click_paste = false,
+
+ focus_on_activate = true,
+ initial_workspace_tracking = 0,
+ on_focus_under_fullscreen = 2,
+ allow_session_lock_restore = true,
+ close_special_on_empty = true,
+ },
+
+ xwayland = {
+ -- The panel runs at 1.25; without this XWayland apps render blurry.
+ force_zero_scaling = true,
+ },
+})
diff --git a/config/hyprland/hyprland/monitors.lua b/config/hyprland/hyprland/monitors.lua
new file mode 100644
index 0000000..6c91d85
--- /dev/null
+++ b/config/hyprland/hyprland/monitors.lua
@@ -0,0 +1,27 @@
+hl.monitor({
+ output = "eDP-1",
+ mode = "2560x1600@60",
+ position = "0x0",
+ scale = 1.25
+})
+
+hl.monitor({
+ output = "eDP-2",
+ mode = "2560x1600@60",
+ position = "0x0",
+ scale = 1.25
+})
+
+hl.monitor({
+ output = "DP-1",
+ mode = "2560x1440@180",
+ position = "2048x0",
+ scale = 1
+})
+
+hl.workspace_rule({ workspace = 1, monitor = "DP-1", persistent = true })
+hl.workspace_rule({ workspace = 3, monitor = "DP-1", persistent = false })
+hl.workspace_rule({ workspace = 5, monitor = "DP-1", persistent = false })
+hl.workspace_rule({ workspace = 2, monitor = "eDP-1", persistent = true })
+hl.workspace_rule({ workspace = 4, monitor = "eDP-1", persistent = false })
+hl.workspace_rule({ workspace = 6, monitor = "eDP-1", persistent = false })
diff --git a/config/hyprland/hyprland/permissions.lua b/config/hyprland/hyprland/permissions.lua
new file mode 100644
index 0000000..48e48d5
--- /dev/null
+++ b/config/hyprland/hyprland/permissions.lua
@@ -0,0 +1,17 @@
+hl.config({
+ ecosystem = {
+ enforce_permissions = true,
+ },
+})
+
+hl.permission({ binary = "/usr/(lib|libexec|lib64)/xdg-desktop-portal-hyprland", type = "screencopy", mode = "allow" })
+hl.permission({ binary = "/usr/(bin|local/bin)/hyprpm", type = "plugin", mode = "allow" })
+
+-- Prompts are drawn by hyprland-qtutils, which is not installed, so anything
+-- not granted here fails rather than asking.
+hl.permission({ binary = "/usr/(bin|local/bin)/grim", type = "screencopy", mode = "allow" })
+hl.permission({ binary = "/usr/(bin|local/bin)/hyprshot", type = "screencopy", mode = "allow" })
+hl.permission({ binary = "/usr/(bin|local/bin)/hyprpicker", type = "screencopy", mode = "allow" })
+hl.permission({ binary = "/usr/(bin|local/bin)/wf-recorder", type = "screencopy", mode = "allow" })
+hl.permission({ binary = "/usr/(bin|local/bin)/wl-mirror", type = "screencopy", mode = "allow" })
+hl.permission({ binary = "/usr/(bin|local/bin)/sunshine", type = "screencopy", mode = "allow" })
diff --git a/config/hyprland/hyprland/rules.lua b/config/hyprland/hyprland/rules.lua
new file mode 100644
index 0000000..7434880
--- /dev/null
+++ b/config/hyprland/hyprland/rules.lua
@@ -0,0 +1,140 @@
+local c = require("hyprland/theme")
+
+-- Most apps ask to be maximized on launch, which is rarely wanted when tiling.
+hl.window_rule({
+ name = "suppress-maximize",
+ match = { class = ".*" },
+ suppress_event = "maximize",
+})
+
+-- XWayland drag surfaces appear as empty floating windows; focusing them
+-- breaks the drag.
+hl.window_rule({
+ name = "fix-xwayland-drags",
+ match = { class = "^$", title = "^$", xwayland = true, float = true, fullscreen = false, pin = false },
+ no_focus = true,
+})
+
+-- Blurring XWayland makes their client-drawn shadows look wrong.
+hl.window_rule({ name = "no-blur-xwayland", match = { xwayland = true }, no_blur = true })
+
+hl.window_rule({ name = "no-shadow-tiled", match = { float = false }, no_shadow = true })
+
+-- Dialogs
+
+local dialogs = {
+ "^(Open File)(.*)$",
+ "^(Select a File)(.*)$",
+ "^(Choose wallpaper)(.*)$",
+ "^(Open Folder)(.*)$",
+ "^(Save As)(.*)$",
+ "^(Library)(.*)$",
+ "^(File Upload)(.*)$",
+}
+for _, title in ipairs(dialogs) do
+ hl.window_rule({ match = { title = title }, float = true, center = true })
+end
+
+hl.window_rule({ name = "float-modals", match = { modal = true }, float = true, center = true })
+
+-- Picture-in-Picture
+
+local pip = "^([Pp]icture[-\\s]?[Ii]n[-\\s]?[Pp]icture)(.*)$"
+hl.window_rule({
+ name = "pip",
+ match = { title = pip },
+ float = true,
+ pin = true,
+ keep_aspect_ratio = true,
+ size = { "monitor_w*0.22", "monitor_h*0.22" },
+ move = { "monitor_w-window_w-24", "monitor_h-window_h-24" },
+ no_shadow = false,
+})
+
+-- Floating by default
+
+local floaters = {
+ "^(blueberry\\.py)$",
+ "^(blueman-manager)$",
+ "^(org\\.pulseaudio\\.pavucontrol)$",
+ "^(com\\.saivert\\.pwvucontrol)$",
+ "^(Waydroid)$",
+ "^(waydroid.*)$",
+ "^(org\\.kde\\.kcalc)$",
+ "^(org\\.kde\\.kalk)$",
+ "^(org\\.gnome\\.NautilusPreviewer)$",
+ "^(coin)$",
+ "^(wallreel)$",
+ "^(be\\.alexandervanhee\\.gradia)$",
+ "^(nm-connection-editor)$",
+ "^(org\\.gnome\\.Calculator)$",
+ "^(xdg-desktop-portal-gtk)$",
+}
+for _, class in ipairs(floaters) do
+ hl.window_rule({ match = { class = class }, float = true, center = true })
+end
+
+-- QQ's image viewer has no useful class, only a title.
+hl.window_rule({ match = { title = "^(图片查看器)(.*)$" }, float = true, center = true })
+
+-- Terminals
+
+hl.window_rule({
+ name = "floating-terminal",
+ match = { class = "^(kitty-floating)$" },
+ float = true,
+ size = { "monitor_w*0.5", "monitor_h*0.5" },
+ center = true,
+})
+hl.window_rule({ match = { class = "^(com\\.mitchellh\\.ghostty)$" }, float = true, center = true })
+
+hl.window_rule({ match = { class = "^(kitty)$" }, scrolling_width = 0.5 })
+hl.window_rule({ match = { class = "^(scrcpy)$" }, scrolling_width = 0.3 })
+
+-- Media, games, tearing
+
+hl.window_rule({ name = "opaque-video", match = { content = "video" }, opaque = true, no_blur = true })
+hl.window_rule({
+ name = "opaque-game",
+ match = { content = "game" },
+ opaque = true,
+ no_blur = true,
+ no_dim = true,
+ immediate = true,
+})
+
+hl.window_rule({ match = { class = "^(steam_app.*)$" }, immediate = true })
+hl.window_rule({ match = { title = "^(.*\\.exe)$" }, immediate = true })
+
+-- Steam's notification toasts are windows, and they steal focus.
+hl.window_rule({
+ name = "steam-toasts",
+ match = { class = "^(steam)$", title = "^(notificationtoasts_\\d+_desktop)$" },
+ float = true,
+ no_initial_focus = true,
+ no_shadow = true,
+})
+
+hl.window_rule({ match = { class = "^(org\\.mozilla\\.[Tt]hunderbird)$" }, no_screen_share = true })
+
+hl.window_rule({ match = { pin = true }, border_color = c.gradient(c.teal, c.green, 45) })
+
+-- Smart gaps: a lone tiled or fullscreen window drops its gaps and border.
+-- Rounding is kept.
+hl.workspace_rule({ workspace = "w[tv1]s[false]", gaps_out = 0, gaps_in = 0 })
+hl.workspace_rule({ workspace = "f[1]s[false]", gaps_out = 0, gaps_in = 0 })
+hl.window_rule({ match = { float = false, workspace = "w[tv1]s[false]" }, border_size = 0 })
+hl.window_rule({ match = { float = false, workspace = "f[1]s[false]" }, border_size = 0 })
+
+hl.workspace_rule({ workspace = "special:scratchpad", gaps_out = 40, gaps_in = 6 })
+
+-- Layer rules
+
+hl.layer_rule({ name = "blur-bar", match = { namespace = "^waybar$" }, blur = true, ignore_alpha = 0.4 })
+hl.layer_rule({ name = "blur-launcher", match = { namespace = "^vicinae$" }, blur = true, ignore_alpha = 0.4 })
+hl.layer_rule({ name = "blur-logout", match = { namespace = "^logout_dialog$" }, blur = true })
+hl.layer_rule({ name = "blur-notifications", match = { namespace = "^notifications$" }, blur = true, ignore_alpha = 0.6 })
+
+-- The colour picker must see the screen exactly as it is.
+hl.layer_rule({ name = "no-anim-picker", match = { namespace = "^hyprpicker$" }, no_anim = true })
+hl.layer_rule({ name = "no-anim-selection", match = { namespace = "^selection$" }, no_anim = true })
diff --git a/config/hyprland/hyprland/theme.lua b/config/hyprland/hyprland/theme.lua
new file mode 100644
index 0000000..31f6308
--- /dev/null
+++ b/config/hyprland/hyprland/theme.lua
@@ -0,0 +1,37 @@
+-- Catppuccin Mocha.
+
+local M = {
+ base = "1e1e2e",
+ mantle = "181825",
+ crust = "11111b",
+ surface0 = "313244",
+ surface1 = "45475a",
+ surface2 = "585b70",
+ overlay0 = "6c7086",
+ subtext0 = "a6adc8",
+ text = "cdd6f4",
+
+ blue = "89b4fa",
+ lavender = "b4befe",
+ mauve = "cba6f7",
+ red = "f38ba8",
+ peach = "fab387",
+ yellow = "f9e2af",
+ green = "a6e3a1",
+ teal = "94e2d5",
+}
+
+function M.rgb(hex)
+ return "rgb(" .. hex .. ")"
+end
+
+--- `alpha` is a two-digit hex string, e.g. "80".
+function M.rgba(hex, alpha)
+ return "rgba(" .. hex .. alpha .. ")"
+end
+
+function M.gradient(from, to, angle)
+ return { colors = { M.rgb(from), M.rgb(to) }, angle = angle or 45 }
+end
+
+return M
diff --git a/config/kvantum/.config/Kvantum/catppuccin-frappe-blue/catppuccin-frappe-blue.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-frappe-blue/catppuccin-frappe-blue.kvconfig
index e76be42..9874411 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-frappe-blue/catppuccin-frappe-blue.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-frappe-blue/catppuccin-frappe-blue.kvconfig
@@ -80,16 +80,17 @@ light.color=#51576D
mid.light.color=#51576D
dark.color=#292C3C
mid.color=#292C3C
-highlight.color=#8CAAEE
-inactive.highlight.color=#8CAAEE
+highlight.color=#8CAAEE4D
+inactive.highlight.color=#51576D
+tooltip.base.color=#292C3C
text.color=#C6D0F5
window.text.color=#C6D0F5
button.text.color=#C6D0F5
disabled.text.color=#626880
tooltip.text.color=#C6D0F5
-highlight.text.color=#292C3C
-link.color=#F2D5CF
-link.visited.color=#8CAAEE
+highlight.text.color=#C6D0F5
+link.color=#8CAAEE
+link.visited.color=#98B2EF
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#292C3C
+text.press.color=#C6D0F5
+text.toggle.color=#C6D0F5
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#C6D0F5
text.focus.color=#C6D0F5
-text.press.color=#292C3C
-text.toggle.color=#292C3C
+text.press.color=#C6D0F5
+text.toggle.color=#C6D0F5
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#626880
+text.normal.color=#949CBB
text.focus.color=#C6D0F5
text.press.color=#C6D0F5
text.toggle.color=#C6D0F5
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#C6D0F5
text.focus.color=#C6D0F5
-text.press.color=#292C3C
-text.toggle.color=#292C3C
+text.press.color=#C6D0F5
+text.toggle.color=#C6D0F5
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#C6D0F5
text.press.color=#C6D0F5
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#C6D0F5
text.toggle.color=#C6D0F5
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-frappe-blue/catppuccin-frappe-blue.svg b/config/kvantum/.config/Kvantum/catppuccin-frappe-blue/catppuccin-frappe-blue.svg
index 170f0c1..24364aa 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-frappe-blue/catppuccin-frappe-blue.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-frappe-blue/catppuccin-frappe-blue.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-frappe-flamingo/catppuccin-frappe-flamingo.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-frappe-flamingo/catppuccin-frappe-flamingo.kvconfig
index 1abf109..cdadd1f 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-frappe-flamingo/catppuccin-frappe-flamingo.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-frappe-flamingo/catppuccin-frappe-flamingo.kvconfig
@@ -80,16 +80,17 @@ light.color=#51576D
mid.light.color=#51576D
dark.color=#292C3C
mid.color=#292C3C
-highlight.color=#EEBEBE
-inactive.highlight.color=#EEBEBE
+highlight.color=#EEBEBE4D
+inactive.highlight.color=#51576D
+tooltip.base.color=#292C3C
text.color=#C6D0F5
window.text.color=#C6D0F5
button.text.color=#C6D0F5
disabled.text.color=#626880
tooltip.text.color=#C6D0F5
-highlight.text.color=#292C3C
-link.color=#F2D5CF
-link.visited.color=#8CAAEE
+highlight.text.color=#C6D0F5
+link.color=#EEBEBE
+link.visited.color=#E6C2C9
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#292C3C
+text.press.color=#C6D0F5
+text.toggle.color=#C6D0F5
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#C6D0F5
text.focus.color=#C6D0F5
-text.press.color=#292C3C
-text.toggle.color=#292C3C
+text.press.color=#C6D0F5
+text.toggle.color=#C6D0F5
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#626880
+text.normal.color=#949CBB
text.focus.color=#C6D0F5
text.press.color=#C6D0F5
text.toggle.color=#C6D0F5
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#C6D0F5
text.focus.color=#C6D0F5
-text.press.color=#292C3C
-text.toggle.color=#292C3C
+text.press.color=#C6D0F5
+text.toggle.color=#C6D0F5
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#C6D0F5
text.press.color=#C6D0F5
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#C6D0F5
text.toggle.color=#C6D0F5
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-frappe-flamingo/catppuccin-frappe-flamingo.svg b/config/kvantum/.config/Kvantum/catppuccin-frappe-flamingo/catppuccin-frappe-flamingo.svg
index 86c81e2..72046f1 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-frappe-flamingo/catppuccin-frappe-flamingo.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-frappe-flamingo/catppuccin-frappe-flamingo.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-frappe-green/catppuccin-frappe-green.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-frappe-green/catppuccin-frappe-green.kvconfig
index 857d9e7..730a36e 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-frappe-green/catppuccin-frappe-green.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-frappe-green/catppuccin-frappe-green.kvconfig
@@ -80,16 +80,17 @@ light.color=#51576D
mid.light.color=#51576D
dark.color=#292C3C
mid.color=#292C3C
-highlight.color=#A6D189
-inactive.highlight.color=#A6D189
+highlight.color=#A6D1894D
+inactive.highlight.color=#51576D
+tooltip.base.color=#292C3C
text.color=#C6D0F5
window.text.color=#C6D0F5
button.text.color=#C6D0F5
disabled.text.color=#626880
tooltip.text.color=#C6D0F5
-highlight.text.color=#292C3C
-link.color=#F2D5CF
-link.visited.color=#8CAAEE
+highlight.text.color=#C6D0F5
+link.color=#A6D189
+link.visited.color=#ADD19F
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#292C3C
+text.press.color=#C6D0F5
+text.toggle.color=#C6D0F5
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#C6D0F5
text.focus.color=#C6D0F5
-text.press.color=#292C3C
-text.toggle.color=#292C3C
+text.press.color=#C6D0F5
+text.toggle.color=#C6D0F5
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#626880
+text.normal.color=#949CBB
text.focus.color=#C6D0F5
text.press.color=#C6D0F5
text.toggle.color=#C6D0F5
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#C6D0F5
text.focus.color=#C6D0F5
-text.press.color=#292C3C
-text.toggle.color=#292C3C
+text.press.color=#C6D0F5
+text.toggle.color=#C6D0F5
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#C6D0F5
text.press.color=#C6D0F5
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#C6D0F5
text.toggle.color=#C6D0F5
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-frappe-green/catppuccin-frappe-green.svg b/config/kvantum/.config/Kvantum/catppuccin-frappe-green/catppuccin-frappe-green.svg
index 4178e21..8700de7 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-frappe-green/catppuccin-frappe-green.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-frappe-green/catppuccin-frappe-green.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-frappe-lavender/catppuccin-frappe-lavender.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-frappe-lavender/catppuccin-frappe-lavender.kvconfig
index 4eb1440..ea54d15 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-frappe-lavender/catppuccin-frappe-lavender.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-frappe-lavender/catppuccin-frappe-lavender.kvconfig
@@ -80,16 +80,17 @@ light.color=#51576D
mid.light.color=#51576D
dark.color=#292C3C
mid.color=#292C3C
-highlight.color=#BABBF1
-inactive.highlight.color=#BABBF1
+highlight.color=#BABBF14D
+inactive.highlight.color=#51576D
+tooltip.base.color=#292C3C
text.color=#C6D0F5
window.text.color=#C6D0F5
button.text.color=#C6D0F5
disabled.text.color=#626880
tooltip.text.color=#C6D0F5
-highlight.text.color=#292C3C
-link.color=#F2D5CF
-link.visited.color=#8CAAEE
+highlight.text.color=#C6D0F5
+link.color=#BABBF1
+link.visited.color=#BDC0F2
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#292C3C
+text.press.color=#C6D0F5
+text.toggle.color=#C6D0F5
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#C6D0F5
text.focus.color=#C6D0F5
-text.press.color=#292C3C
-text.toggle.color=#292C3C
+text.press.color=#C6D0F5
+text.toggle.color=#C6D0F5
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#626880
+text.normal.color=#949CBB
text.focus.color=#C6D0F5
text.press.color=#C6D0F5
text.toggle.color=#C6D0F5
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#C6D0F5
text.focus.color=#C6D0F5
-text.press.color=#292C3C
-text.toggle.color=#292C3C
+text.press.color=#C6D0F5
+text.toggle.color=#C6D0F5
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#C6D0F5
text.press.color=#C6D0F5
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#C6D0F5
text.toggle.color=#C6D0F5
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-frappe-lavender/catppuccin-frappe-lavender.svg b/config/kvantum/.config/Kvantum/catppuccin-frappe-lavender/catppuccin-frappe-lavender.svg
index fb7f7c4..8fbee0c 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-frappe-lavender/catppuccin-frappe-lavender.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-frappe-lavender/catppuccin-frappe-lavender.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-frappe-maroon/catppuccin-frappe-maroon.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-frappe-maroon/catppuccin-frappe-maroon.kvconfig
index daff153..1386c30 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-frappe-maroon/catppuccin-frappe-maroon.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-frappe-maroon/catppuccin-frappe-maroon.kvconfig
@@ -80,16 +80,17 @@ light.color=#51576D
mid.light.color=#51576D
dark.color=#292C3C
mid.color=#292C3C
-highlight.color=#EA999C
-inactive.highlight.color=#EA999C
+highlight.color=#EA999C4D
+inactive.highlight.color=#51576D
+tooltip.base.color=#292C3C
text.color=#C6D0F5
window.text.color=#C6D0F5
button.text.color=#C6D0F5
disabled.text.color=#626880
tooltip.text.color=#C6D0F5
-highlight.text.color=#292C3C
-link.color=#F2D5CF
-link.visited.color=#8CAAEE
+highlight.text.color=#C6D0F5
+link.color=#EA999C
+link.visited.color=#E3A4AE
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#292C3C
+text.press.color=#C6D0F5
+text.toggle.color=#C6D0F5
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#C6D0F5
text.focus.color=#C6D0F5
-text.press.color=#292C3C
-text.toggle.color=#292C3C
+text.press.color=#C6D0F5
+text.toggle.color=#C6D0F5
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#626880
+text.normal.color=#949CBB
text.focus.color=#C6D0F5
text.press.color=#C6D0F5
text.toggle.color=#C6D0F5
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#C6D0F5
text.focus.color=#C6D0F5
-text.press.color=#292C3C
-text.toggle.color=#292C3C
+text.press.color=#C6D0F5
+text.toggle.color=#C6D0F5
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#C6D0F5
text.press.color=#C6D0F5
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#C6D0F5
text.toggle.color=#C6D0F5
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-frappe-maroon/catppuccin-frappe-maroon.svg b/config/kvantum/.config/Kvantum/catppuccin-frappe-maroon/catppuccin-frappe-maroon.svg
index a8ae6ad..af8077a 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-frappe-maroon/catppuccin-frappe-maroon.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-frappe-maroon/catppuccin-frappe-maroon.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-frappe-mauve/catppuccin-frappe-mauve.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-frappe-mauve/catppuccin-frappe-mauve.kvconfig
index dcfd5ef..e69bad6 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-frappe-mauve/catppuccin-frappe-mauve.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-frappe-mauve/catppuccin-frappe-mauve.kvconfig
@@ -80,16 +80,17 @@ light.color=#51576D
mid.light.color=#51576D
dark.color=#292C3C
mid.color=#292C3C
-highlight.color=#CA9EE6
-inactive.highlight.color=#CA9EE6
+highlight.color=#CA9EE64D
+inactive.highlight.color=#51576D
+tooltip.base.color=#292C3C
text.color=#C6D0F5
window.text.color=#C6D0F5
button.text.color=#C6D0F5
disabled.text.color=#626880
tooltip.text.color=#C6D0F5
-highlight.text.color=#292C3C
-link.color=#F2D5CF
-link.visited.color=#8CAAEE
+highlight.text.color=#C6D0F5
+link.color=#CA9EE6
+link.visited.color=#CAA8E9
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#292C3C
+text.press.color=#C6D0F5
+text.toggle.color=#C6D0F5
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#C6D0F5
text.focus.color=#C6D0F5
-text.press.color=#292C3C
-text.toggle.color=#292C3C
+text.press.color=#C6D0F5
+text.toggle.color=#C6D0F5
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#626880
+text.normal.color=#949CBB
text.focus.color=#C6D0F5
text.press.color=#C6D0F5
text.toggle.color=#C6D0F5
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#C6D0F5
text.focus.color=#C6D0F5
-text.press.color=#292C3C
-text.toggle.color=#292C3C
+text.press.color=#C6D0F5
+text.toggle.color=#C6D0F5
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#C6D0F5
text.press.color=#C6D0F5
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#C6D0F5
text.toggle.color=#C6D0F5
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-frappe-mauve/catppuccin-frappe-mauve.svg b/config/kvantum/.config/Kvantum/catppuccin-frappe-mauve/catppuccin-frappe-mauve.svg
index adce02a..92b57bb 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-frappe-mauve/catppuccin-frappe-mauve.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-frappe-mauve/catppuccin-frappe-mauve.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-frappe-peach/catppuccin-frappe-peach.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-frappe-peach/catppuccin-frappe-peach.kvconfig
index b0cac42..2f12efc 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-frappe-peach/catppuccin-frappe-peach.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-frappe-peach/catppuccin-frappe-peach.kvconfig
@@ -80,16 +80,17 @@ light.color=#51576D
mid.light.color=#51576D
dark.color=#292C3C
mid.color=#292C3C
-highlight.color=#EF9F76
-inactive.highlight.color=#EF9F76
+highlight.color=#EF9F764D
+inactive.highlight.color=#51576D
+tooltip.base.color=#292C3C
text.color=#C6D0F5
window.text.color=#C6D0F5
button.text.color=#C6D0F5
disabled.text.color=#626880
tooltip.text.color=#C6D0F5
-highlight.text.color=#292C3C
-link.color=#F2D5CF
-link.visited.color=#8CAAEE
+highlight.text.color=#C6D0F5
+link.color=#EF9F76
+link.visited.color=#E7A98F
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#292C3C
+text.press.color=#C6D0F5
+text.toggle.color=#C6D0F5
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#C6D0F5
text.focus.color=#C6D0F5
-text.press.color=#292C3C
-text.toggle.color=#292C3C
+text.press.color=#C6D0F5
+text.toggle.color=#C6D0F5
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#626880
+text.normal.color=#949CBB
text.focus.color=#C6D0F5
text.press.color=#C6D0F5
text.toggle.color=#C6D0F5
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#C6D0F5
text.focus.color=#C6D0F5
-text.press.color=#292C3C
-text.toggle.color=#292C3C
+text.press.color=#C6D0F5
+text.toggle.color=#C6D0F5
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#C6D0F5
text.press.color=#C6D0F5
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#C6D0F5
text.toggle.color=#C6D0F5
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-frappe-peach/catppuccin-frappe-peach.svg b/config/kvantum/.config/Kvantum/catppuccin-frappe-peach/catppuccin-frappe-peach.svg
index 7e8aec7..75e395b 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-frappe-peach/catppuccin-frappe-peach.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-frappe-peach/catppuccin-frappe-peach.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-frappe-pink/catppuccin-frappe-pink.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-frappe-pink/catppuccin-frappe-pink.kvconfig
index 60a7d86..14cfb88 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-frappe-pink/catppuccin-frappe-pink.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-frappe-pink/catppuccin-frappe-pink.kvconfig
@@ -80,16 +80,17 @@ light.color=#51576D
mid.light.color=#51576D
dark.color=#292C3C
mid.color=#292C3C
-highlight.color=#F4B8E4
-inactive.highlight.color=#F4B8E4
+highlight.color=#F4B8E44D
+inactive.highlight.color=#51576D
+tooltip.base.color=#292C3C
text.color=#C6D0F5
window.text.color=#C6D0F5
button.text.color=#C6D0F5
disabled.text.color=#626880
tooltip.text.color=#C6D0F5
-highlight.text.color=#292C3C
-link.color=#F2D5CF
-link.visited.color=#8CAAEE
+highlight.text.color=#C6D0F5
+link.color=#F4B8E4
+link.visited.color=#EBBDE7
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#292C3C
+text.press.color=#C6D0F5
+text.toggle.color=#C6D0F5
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#C6D0F5
text.focus.color=#C6D0F5
-text.press.color=#292C3C
-text.toggle.color=#292C3C
+text.press.color=#C6D0F5
+text.toggle.color=#C6D0F5
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#626880
+text.normal.color=#949CBB
text.focus.color=#C6D0F5
text.press.color=#C6D0F5
text.toggle.color=#C6D0F5
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#C6D0F5
text.focus.color=#C6D0F5
-text.press.color=#292C3C
-text.toggle.color=#292C3C
+text.press.color=#C6D0F5
+text.toggle.color=#C6D0F5
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#C6D0F5
text.press.color=#C6D0F5
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#C6D0F5
text.toggle.color=#C6D0F5
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-frappe-pink/catppuccin-frappe-pink.svg b/config/kvantum/.config/Kvantum/catppuccin-frappe-pink/catppuccin-frappe-pink.svg
index a61166e..1eafbe3 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-frappe-pink/catppuccin-frappe-pink.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-frappe-pink/catppuccin-frappe-pink.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-frappe-red/catppuccin-frappe-red.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-frappe-red/catppuccin-frappe-red.kvconfig
index a7b0e23..bc378c3 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-frappe-red/catppuccin-frappe-red.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-frappe-red/catppuccin-frappe-red.kvconfig
@@ -80,16 +80,17 @@ light.color=#51576D
mid.light.color=#51576D
dark.color=#292C3C
mid.color=#292C3C
-highlight.color=#E78284
-inactive.highlight.color=#E78284
+highlight.color=#E782844D
+inactive.highlight.color=#51576D
+tooltip.base.color=#292C3C
text.color=#C6D0F5
window.text.color=#C6D0F5
button.text.color=#C6D0F5
disabled.text.color=#626880
tooltip.text.color=#C6D0F5
-highlight.text.color=#292C3C
-link.color=#F2D5CF
-link.visited.color=#8CAAEE
+highlight.text.color=#C6D0F5
+link.color=#E78284
+link.visited.color=#E1929B
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#292C3C
+text.press.color=#C6D0F5
+text.toggle.color=#C6D0F5
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#C6D0F5
text.focus.color=#C6D0F5
-text.press.color=#292C3C
-text.toggle.color=#292C3C
+text.press.color=#C6D0F5
+text.toggle.color=#C6D0F5
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#626880
+text.normal.color=#949CBB
text.focus.color=#C6D0F5
text.press.color=#C6D0F5
text.toggle.color=#C6D0F5
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#C6D0F5
text.focus.color=#C6D0F5
-text.press.color=#292C3C
-text.toggle.color=#292C3C
+text.press.color=#C6D0F5
+text.toggle.color=#C6D0F5
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#C6D0F5
text.press.color=#C6D0F5
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#C6D0F5
text.toggle.color=#C6D0F5
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-frappe-red/catppuccin-frappe-red.svg b/config/kvantum/.config/Kvantum/catppuccin-frappe-red/catppuccin-frappe-red.svg
index 0bce89b..e8fcc73 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-frappe-red/catppuccin-frappe-red.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-frappe-red/catppuccin-frappe-red.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-frappe-rosewater/catppuccin-frappe-rosewater.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-frappe-rosewater/catppuccin-frappe-rosewater.kvconfig
index 55dd690..cecf450 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-frappe-rosewater/catppuccin-frappe-rosewater.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-frappe-rosewater/catppuccin-frappe-rosewater.kvconfig
@@ -80,16 +80,17 @@ light.color=#51576D
mid.light.color=#51576D
dark.color=#292C3C
mid.color=#292C3C
-highlight.color=#F2D5CF
-inactive.highlight.color=#F2D5CF
+highlight.color=#F2D5CF4D
+inactive.highlight.color=#51576D
+tooltip.base.color=#292C3C
text.color=#C6D0F5
window.text.color=#C6D0F5
button.text.color=#C6D0F5
disabled.text.color=#626880
tooltip.text.color=#C6D0F5
-highlight.text.color=#292C3C
+highlight.text.color=#C6D0F5
link.color=#F2D5CF
-link.visited.color=#8CAAEE
+link.visited.color=#EAD4D7
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#292C3C
+text.press.color=#C6D0F5
+text.toggle.color=#C6D0F5
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#C6D0F5
text.focus.color=#C6D0F5
-text.press.color=#292C3C
-text.toggle.color=#292C3C
+text.press.color=#C6D0F5
+text.toggle.color=#C6D0F5
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#626880
+text.normal.color=#949CBB
text.focus.color=#C6D0F5
text.press.color=#C6D0F5
text.toggle.color=#C6D0F5
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#C6D0F5
text.focus.color=#C6D0F5
-text.press.color=#292C3C
-text.toggle.color=#292C3C
+text.press.color=#C6D0F5
+text.toggle.color=#C6D0F5
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#C6D0F5
text.press.color=#C6D0F5
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#C6D0F5
text.toggle.color=#C6D0F5
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-frappe-rosewater/catppuccin-frappe-rosewater.svg b/config/kvantum/.config/Kvantum/catppuccin-frappe-rosewater/catppuccin-frappe-rosewater.svg
index babd88d..647f0cf 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-frappe-rosewater/catppuccin-frappe-rosewater.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-frappe-rosewater/catppuccin-frappe-rosewater.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-frappe-sapphire/catppuccin-frappe-sapphire.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-frappe-sapphire/catppuccin-frappe-sapphire.kvconfig
index 99a307a..0fe80e8 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-frappe-sapphire/catppuccin-frappe-sapphire.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-frappe-sapphire/catppuccin-frappe-sapphire.kvconfig
@@ -80,16 +80,17 @@ light.color=#51576D
mid.light.color=#51576D
dark.color=#292C3C
mid.color=#292C3C
-highlight.color=#85C1DC
-inactive.highlight.color=#85C1DC
+highlight.color=#85C1DC4D
+inactive.highlight.color=#51576D
+tooltip.base.color=#292C3C
text.color=#C6D0F5
window.text.color=#C6D0F5
button.text.color=#C6D0F5
disabled.text.color=#626880
tooltip.text.color=#C6D0F5
-highlight.text.color=#292C3C
-link.color=#F2D5CF
-link.visited.color=#8CAAEE
+highlight.text.color=#C6D0F5
+link.color=#85C1DC
+link.visited.color=#92C4E1
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#292C3C
+text.press.color=#C6D0F5
+text.toggle.color=#C6D0F5
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#C6D0F5
text.focus.color=#C6D0F5
-text.press.color=#292C3C
-text.toggle.color=#292C3C
+text.press.color=#C6D0F5
+text.toggle.color=#C6D0F5
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#626880
+text.normal.color=#949CBB
text.focus.color=#C6D0F5
text.press.color=#C6D0F5
text.toggle.color=#C6D0F5
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#C6D0F5
text.focus.color=#C6D0F5
-text.press.color=#292C3C
-text.toggle.color=#292C3C
+text.press.color=#C6D0F5
+text.toggle.color=#C6D0F5
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#C6D0F5
text.press.color=#C6D0F5
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#C6D0F5
text.toggle.color=#C6D0F5
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-frappe-sapphire/catppuccin-frappe-sapphire.svg b/config/kvantum/.config/Kvantum/catppuccin-frappe-sapphire/catppuccin-frappe-sapphire.svg
index bc8e214..c4ad8b6 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-frappe-sapphire/catppuccin-frappe-sapphire.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-frappe-sapphire/catppuccin-frappe-sapphire.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-frappe-sky/catppuccin-frappe-sky.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-frappe-sky/catppuccin-frappe-sky.kvconfig
index ba2dbd4..861fe40 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-frappe-sky/catppuccin-frappe-sky.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-frappe-sky/catppuccin-frappe-sky.kvconfig
@@ -80,16 +80,17 @@ light.color=#51576D
mid.light.color=#51576D
dark.color=#292C3C
mid.color=#292C3C
-highlight.color=#99D1DB
-inactive.highlight.color=#99D1DB
+highlight.color=#99D1DB4D
+inactive.highlight.color=#51576D
+tooltip.base.color=#292C3C
text.color=#C6D0F5
window.text.color=#C6D0F5
button.text.color=#C6D0F5
disabled.text.color=#626880
tooltip.text.color=#C6D0F5
-highlight.text.color=#292C3C
-link.color=#F2D5CF
-link.visited.color=#8CAAEE
+highlight.text.color=#C6D0F5
+link.color=#99D1DB
+link.visited.color=#A2D1E0
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#292C3C
+text.press.color=#C6D0F5
+text.toggle.color=#C6D0F5
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#C6D0F5
text.focus.color=#C6D0F5
-text.press.color=#292C3C
-text.toggle.color=#292C3C
+text.press.color=#C6D0F5
+text.toggle.color=#C6D0F5
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#626880
+text.normal.color=#949CBB
text.focus.color=#C6D0F5
text.press.color=#C6D0F5
text.toggle.color=#C6D0F5
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#C6D0F5
text.focus.color=#C6D0F5
-text.press.color=#292C3C
-text.toggle.color=#292C3C
+text.press.color=#C6D0F5
+text.toggle.color=#C6D0F5
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#C6D0F5
text.press.color=#C6D0F5
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#C6D0F5
text.toggle.color=#C6D0F5
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-frappe-sky/catppuccin-frappe-sky.svg b/config/kvantum/.config/Kvantum/catppuccin-frappe-sky/catppuccin-frappe-sky.svg
index dc1444b..4082c09 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-frappe-sky/catppuccin-frappe-sky.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-frappe-sky/catppuccin-frappe-sky.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-frappe-teal/catppuccin-frappe-teal.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-frappe-teal/catppuccin-frappe-teal.kvconfig
index 4949c93..5ace583 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-frappe-teal/catppuccin-frappe-teal.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-frappe-teal/catppuccin-frappe-teal.kvconfig
@@ -80,16 +80,17 @@ light.color=#51576D
mid.light.color=#51576D
dark.color=#292C3C
mid.color=#292C3C
-highlight.color=#81C8BE
-inactive.highlight.color=#81C8BE
+highlight.color=#81C8BE4D
+inactive.highlight.color=#51576D
+tooltip.base.color=#292C3C
text.color=#C6D0F5
window.text.color=#C6D0F5
button.text.color=#C6D0F5
disabled.text.color=#626880
tooltip.text.color=#C6D0F5
-highlight.text.color=#292C3C
-link.color=#F2D5CF
-link.visited.color=#8CAAEE
+highlight.text.color=#C6D0F5
+link.color=#81C8BE
+link.visited.color=#8FCAC9
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#292C3C
+text.press.color=#C6D0F5
+text.toggle.color=#C6D0F5
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#C6D0F5
text.focus.color=#C6D0F5
-text.press.color=#292C3C
-text.toggle.color=#292C3C
+text.press.color=#C6D0F5
+text.toggle.color=#C6D0F5
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#626880
+text.normal.color=#949CBB
text.focus.color=#C6D0F5
text.press.color=#C6D0F5
text.toggle.color=#C6D0F5
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#C6D0F5
text.focus.color=#C6D0F5
-text.press.color=#292C3C
-text.toggle.color=#292C3C
+text.press.color=#C6D0F5
+text.toggle.color=#C6D0F5
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#C6D0F5
text.press.color=#C6D0F5
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#C6D0F5
text.toggle.color=#C6D0F5
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-frappe-teal/catppuccin-frappe-teal.svg b/config/kvantum/.config/Kvantum/catppuccin-frappe-teal/catppuccin-frappe-teal.svg
index 02e8c1d..36082c3 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-frappe-teal/catppuccin-frappe-teal.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-frappe-teal/catppuccin-frappe-teal.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-frappe-yellow/catppuccin-frappe-yellow.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-frappe-yellow/catppuccin-frappe-yellow.kvconfig
index 611261a..bdbc9b6 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-frappe-yellow/catppuccin-frappe-yellow.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-frappe-yellow/catppuccin-frappe-yellow.kvconfig
@@ -80,16 +80,17 @@ light.color=#51576D
mid.light.color=#51576D
dark.color=#292C3C
mid.color=#292C3C
-highlight.color=#E5C890
-inactive.highlight.color=#E5C890
+highlight.color=#E5C8904D
+inactive.highlight.color=#51576D
+tooltip.base.color=#292C3C
text.color=#C6D0F5
window.text.color=#C6D0F5
button.text.color=#C6D0F5
disabled.text.color=#626880
tooltip.text.color=#C6D0F5
-highlight.text.color=#292C3C
-link.color=#F2D5CF
-link.visited.color=#8CAAEE
+highlight.text.color=#C6D0F5
+link.color=#E5C890
+link.visited.color=#DFCAA4
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#292C3C
+text.press.color=#C6D0F5
+text.toggle.color=#C6D0F5
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#C6D0F5
text.focus.color=#C6D0F5
-text.press.color=#292C3C
-text.toggle.color=#292C3C
+text.press.color=#C6D0F5
+text.toggle.color=#C6D0F5
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#626880
+text.normal.color=#949CBB
text.focus.color=#C6D0F5
text.press.color=#C6D0F5
text.toggle.color=#C6D0F5
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#C6D0F5
text.focus.color=#C6D0F5
-text.press.color=#292C3C
-text.toggle.color=#292C3C
+text.press.color=#C6D0F5
+text.toggle.color=#C6D0F5
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#C6D0F5
text.press.color=#C6D0F5
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#C6D0F5
text.toggle.color=#C6D0F5
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-frappe-yellow/catppuccin-frappe-yellow.svg b/config/kvantum/.config/Kvantum/catppuccin-frappe-yellow/catppuccin-frappe-yellow.svg
index 3cbcefd..c747708 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-frappe-yellow/catppuccin-frappe-yellow.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-frappe-yellow/catppuccin-frappe-yellow.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-latte-blue/catppuccin-latte-blue.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-latte-blue/catppuccin-latte-blue.kvconfig
index 0ce2484..f552fd7 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-latte-blue/catppuccin-latte-blue.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-latte-blue/catppuccin-latte-blue.kvconfig
@@ -80,16 +80,17 @@ light.color=#BCC0CC
mid.light.color=#BCC0CC
dark.color=#E6E9EF
mid.color=#E6E9EF
-highlight.color=#1E66F5
-inactive.highlight.color=#1E66F5
+highlight.color=#1E66F54D
+inactive.highlight.color=#BCC0CC
+tooltip.base.color=#E6E9EF
text.color=#4C4F69
window.text.color=#4C4F69
button.text.color=#4C4F69
disabled.text.color=#ACB0BE
tooltip.text.color=#4C4F69
-highlight.text.color=#E6E9EF
-link.color=#DC8A78
-link.visited.color=#1E66F5
+highlight.text.color=#4C4F69
+link.color=#1E66F5
+link.visited.color=#2762D9
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#E6E9EF
+text.press.color=#4C4F69
+text.toggle.color=#4C4F69
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#4C4F69
text.focus.color=#4C4F69
-text.press.color=#E6E9EF
-text.toggle.color=#E6E9EF
+text.press.color=#4C4F69
+text.toggle.color=#4C4F69
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#ACB0BE
+text.normal.color=#7C7F93
text.focus.color=#4C4F69
text.press.color=#4C4F69
text.toggle.color=#4C4F69
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#4C4F69
text.focus.color=#4C4F69
-text.press.color=#E6E9EF
-text.toggle.color=#E6E9EF
+text.press.color=#4C4F69
+text.toggle.color=#4C4F69
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#4C4F69
text.press.color=#4C4F69
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#4C4F69
text.toggle.color=#4C4F69
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-latte-blue/catppuccin-latte-blue.svg b/config/kvantum/.config/Kvantum/catppuccin-latte-blue/catppuccin-latte-blue.svg
index de83096..ba3a856 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-latte-blue/catppuccin-latte-blue.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-latte-blue/catppuccin-latte-blue.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-latte-flamingo/catppuccin-latte-flamingo.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-latte-flamingo/catppuccin-latte-flamingo.kvconfig
index d6122c7..f62d9b2 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-latte-flamingo/catppuccin-latte-flamingo.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-latte-flamingo/catppuccin-latte-flamingo.kvconfig
@@ -80,16 +80,17 @@ light.color=#BCC0CC
mid.light.color=#BCC0CC
dark.color=#E6E9EF
mid.color=#E6E9EF
-highlight.color=#DD7878
-inactive.highlight.color=#DD7878
+highlight.color=#DD78784D
+inactive.highlight.color=#BCC0CC
+tooltip.base.color=#E6E9EF
text.color=#4C4F69
window.text.color=#4C4F69
button.text.color=#4C4F69
disabled.text.color=#ACB0BE
tooltip.text.color=#4C4F69
-highlight.text.color=#E6E9EF
-link.color=#DC8A78
-link.visited.color=#1E66F5
+highlight.text.color=#4C4F69
+link.color=#DD7878
+link.visited.color=#C07075
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#E6E9EF
+text.press.color=#4C4F69
+text.toggle.color=#4C4F69
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#4C4F69
text.focus.color=#4C4F69
-text.press.color=#E6E9EF
-text.toggle.color=#E6E9EF
+text.press.color=#4C4F69
+text.toggle.color=#4C4F69
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#ACB0BE
+text.normal.color=#7C7F93
text.focus.color=#4C4F69
text.press.color=#4C4F69
text.toggle.color=#4C4F69
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#4C4F69
text.focus.color=#4C4F69
-text.press.color=#E6E9EF
-text.toggle.color=#E6E9EF
+text.press.color=#4C4F69
+text.toggle.color=#4C4F69
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#4C4F69
text.press.color=#4C4F69
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#4C4F69
text.toggle.color=#4C4F69
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-latte-flamingo/catppuccin-latte-flamingo.svg b/config/kvantum/.config/Kvantum/catppuccin-latte-flamingo/catppuccin-latte-flamingo.svg
index 00681d2..5a0bbb4 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-latte-flamingo/catppuccin-latte-flamingo.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-latte-flamingo/catppuccin-latte-flamingo.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-latte-green/catppuccin-latte-green.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-latte-green/catppuccin-latte-green.kvconfig
index 68d4ec9..e44f59c 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-latte-green/catppuccin-latte-green.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-latte-green/catppuccin-latte-green.kvconfig
@@ -80,16 +80,17 @@ light.color=#BCC0CC
mid.light.color=#BCC0CC
dark.color=#E6E9EF
mid.color=#E6E9EF
-highlight.color=#40A02B
-inactive.highlight.color=#40A02B
+highlight.color=#40A02B4D
+inactive.highlight.color=#BCC0CC
+tooltip.base.color=#E6E9EF
text.color=#4C4F69
window.text.color=#4C4F69
button.text.color=#4C4F69
disabled.text.color=#ACB0BE
tooltip.text.color=#4C4F69
-highlight.text.color=#E6E9EF
-link.color=#DC8A78
-link.visited.color=#1E66F5
+highlight.text.color=#4C4F69
+link.color=#40A02B
+link.visited.color=#429037
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#E6E9EF
+text.press.color=#4C4F69
+text.toggle.color=#4C4F69
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#4C4F69
text.focus.color=#4C4F69
-text.press.color=#E6E9EF
-text.toggle.color=#E6E9EF
+text.press.color=#4C4F69
+text.toggle.color=#4C4F69
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#ACB0BE
+text.normal.color=#7C7F93
text.focus.color=#4C4F69
text.press.color=#4C4F69
text.toggle.color=#4C4F69
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#4C4F69
text.focus.color=#4C4F69
-text.press.color=#E6E9EF
-text.toggle.color=#E6E9EF
+text.press.color=#4C4F69
+text.toggle.color=#4C4F69
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#4C4F69
text.press.color=#4C4F69
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#4C4F69
text.toggle.color=#4C4F69
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-latte-green/catppuccin-latte-green.svg b/config/kvantum/.config/Kvantum/catppuccin-latte-green/catppuccin-latte-green.svg
index 3e677a2..9857ec2 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-latte-green/catppuccin-latte-green.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-latte-green/catppuccin-latte-green.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-latte-lavender/catppuccin-latte-lavender.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-latte-lavender/catppuccin-latte-lavender.kvconfig
index a9590e3..f321270 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-latte-lavender/catppuccin-latte-lavender.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-latte-lavender/catppuccin-latte-lavender.kvconfig
@@ -80,16 +80,17 @@ light.color=#BCC0CC
mid.light.color=#BCC0CC
dark.color=#E6E9EF
mid.color=#E6E9EF
-highlight.color=#7287FD
-inactive.highlight.color=#7287FD
+highlight.color=#7287FD4D
+inactive.highlight.color=#BCC0CC
+tooltip.base.color=#E6E9EF
text.color=#4C4F69
window.text.color=#4C4F69
button.text.color=#4C4F69
disabled.text.color=#ACB0BE
tooltip.text.color=#4C4F69
-highlight.text.color=#E6E9EF
-link.color=#DC8A78
-link.visited.color=#1E66F5
+highlight.text.color=#4C4F69
+link.color=#7287FD
+link.visited.color=#6A7CDF
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#E6E9EF
+text.press.color=#4C4F69
+text.toggle.color=#4C4F69
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#4C4F69
text.focus.color=#4C4F69
-text.press.color=#E6E9EF
-text.toggle.color=#E6E9EF
+text.press.color=#4C4F69
+text.toggle.color=#4C4F69
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#ACB0BE
+text.normal.color=#7C7F93
text.focus.color=#4C4F69
text.press.color=#4C4F69
text.toggle.color=#4C4F69
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#4C4F69
text.focus.color=#4C4F69
-text.press.color=#E6E9EF
-text.toggle.color=#E6E9EF
+text.press.color=#4C4F69
+text.toggle.color=#4C4F69
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#4C4F69
text.press.color=#4C4F69
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#4C4F69
text.toggle.color=#4C4F69
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-latte-lavender/catppuccin-latte-lavender.svg b/config/kvantum/.config/Kvantum/catppuccin-latte-lavender/catppuccin-latte-lavender.svg
index 9757715..76eac42 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-latte-lavender/catppuccin-latte-lavender.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-latte-lavender/catppuccin-latte-lavender.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-latte-maroon/catppuccin-latte-maroon.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-latte-maroon/catppuccin-latte-maroon.kvconfig
index 43e72a9..dae29dd 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-latte-maroon/catppuccin-latte-maroon.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-latte-maroon/catppuccin-latte-maroon.kvconfig
@@ -80,16 +80,17 @@ light.color=#BCC0CC
mid.light.color=#BCC0CC
dark.color=#E6E9EF
mid.color=#E6E9EF
-highlight.color=#E64553
-inactive.highlight.color=#E64553
+highlight.color=#E645534D
+inactive.highlight.color=#BCC0CC
+tooltip.base.color=#E6E9EF
text.color=#4C4F69
window.text.color=#4C4F69
button.text.color=#4C4F69
disabled.text.color=#ACB0BE
tooltip.text.color=#4C4F69
-highlight.text.color=#E6E9EF
-link.color=#DC8A78
-link.visited.color=#1E66F5
+highlight.text.color=#4C4F69
+link.color=#E64553
+link.visited.color=#C74757
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#E6E9EF
+text.press.color=#4C4F69
+text.toggle.color=#4C4F69
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#4C4F69
text.focus.color=#4C4F69
-text.press.color=#E6E9EF
-text.toggle.color=#E6E9EF
+text.press.color=#4C4F69
+text.toggle.color=#4C4F69
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#ACB0BE
+text.normal.color=#7C7F93
text.focus.color=#4C4F69
text.press.color=#4C4F69
text.toggle.color=#4C4F69
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#4C4F69
text.focus.color=#4C4F69
-text.press.color=#E6E9EF
-text.toggle.color=#E6E9EF
+text.press.color=#4C4F69
+text.toggle.color=#4C4F69
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#4C4F69
text.press.color=#4C4F69
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#4C4F69
text.toggle.color=#4C4F69
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-latte-maroon/catppuccin-latte-maroon.svg b/config/kvantum/.config/Kvantum/catppuccin-latte-maroon/catppuccin-latte-maroon.svg
index f7aebf3..64013f3 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-latte-maroon/catppuccin-latte-maroon.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-latte-maroon/catppuccin-latte-maroon.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-latte-mauve/catppuccin-latte-mauve.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-latte-mauve/catppuccin-latte-mauve.kvconfig
index 26b8a56..9e98367 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-latte-mauve/catppuccin-latte-mauve.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-latte-mauve/catppuccin-latte-mauve.kvconfig
@@ -80,16 +80,17 @@ light.color=#BCC0CC
mid.light.color=#BCC0CC
dark.color=#E6E9EF
mid.color=#E6E9EF
-highlight.color=#8839EF
-inactive.highlight.color=#8839EF
+highlight.color=#8839EF4D
+inactive.highlight.color=#BCC0CC
+tooltip.base.color=#E6E9EF
text.color=#4C4F69
window.text.color=#4C4F69
button.text.color=#4C4F69
disabled.text.color=#ACB0BE
tooltip.text.color=#4C4F69
-highlight.text.color=#E6E9EF
-link.color=#DC8A78
-link.visited.color=#1E66F5
+highlight.text.color=#4C4F69
+link.color=#8839EF
+link.visited.color=#7C3ED4
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#E6E9EF
+text.press.color=#4C4F69
+text.toggle.color=#4C4F69
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#4C4F69
text.focus.color=#4C4F69
-text.press.color=#E6E9EF
-text.toggle.color=#E6E9EF
+text.press.color=#4C4F69
+text.toggle.color=#4C4F69
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#ACB0BE
+text.normal.color=#7C7F93
text.focus.color=#4C4F69
text.press.color=#4C4F69
text.toggle.color=#4C4F69
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#4C4F69
text.focus.color=#4C4F69
-text.press.color=#E6E9EF
-text.toggle.color=#E6E9EF
+text.press.color=#4C4F69
+text.toggle.color=#4C4F69
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#4C4F69
text.press.color=#4C4F69
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#4C4F69
text.toggle.color=#4C4F69
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-latte-mauve/catppuccin-latte-mauve.svg b/config/kvantum/.config/Kvantum/catppuccin-latte-mauve/catppuccin-latte-mauve.svg
index 9473cf0..e6f7ba8 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-latte-mauve/catppuccin-latte-mauve.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-latte-mauve/catppuccin-latte-mauve.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-latte-peach/catppuccin-latte-peach.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-latte-peach/catppuccin-latte-peach.kvconfig
index 7a5ece6..fe5e889 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-latte-peach/catppuccin-latte-peach.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-latte-peach/catppuccin-latte-peach.kvconfig
@@ -80,16 +80,17 @@ light.color=#BCC0CC
mid.light.color=#BCC0CC
dark.color=#E6E9EF
mid.color=#E6E9EF
-highlight.color=#FE640B
-inactive.highlight.color=#FE640B
+highlight.color=#FE640B4D
+inactive.highlight.color=#BCC0CC
+tooltip.base.color=#E6E9EF
text.color=#4C4F69
window.text.color=#4C4F69
button.text.color=#4C4F69
disabled.text.color=#ACB0BE
tooltip.text.color=#4C4F69
-highlight.text.color=#E6E9EF
-link.color=#DC8A78
-link.visited.color=#1E66F5
+highlight.text.color=#4C4F69
+link.color=#FE640B
+link.visited.color=#DA601E
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#E6E9EF
+text.press.color=#4C4F69
+text.toggle.color=#4C4F69
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#4C4F69
text.focus.color=#4C4F69
-text.press.color=#E6E9EF
-text.toggle.color=#E6E9EF
+text.press.color=#4C4F69
+text.toggle.color=#4C4F69
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#ACB0BE
+text.normal.color=#7C7F93
text.focus.color=#4C4F69
text.press.color=#4C4F69
text.toggle.color=#4C4F69
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#4C4F69
text.focus.color=#4C4F69
-text.press.color=#E6E9EF
-text.toggle.color=#E6E9EF
+text.press.color=#4C4F69
+text.toggle.color=#4C4F69
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#4C4F69
text.press.color=#4C4F69
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#4C4F69
text.toggle.color=#4C4F69
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-latte-peach/catppuccin-latte-peach.svg b/config/kvantum/.config/Kvantum/catppuccin-latte-peach/catppuccin-latte-peach.svg
index 4f84b02..877a44a 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-latte-peach/catppuccin-latte-peach.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-latte-peach/catppuccin-latte-peach.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-latte-pink/catppuccin-latte-pink.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-latte-pink/catppuccin-latte-pink.kvconfig
index c884364..3bea5af 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-latte-pink/catppuccin-latte-pink.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-latte-pink/catppuccin-latte-pink.kvconfig
@@ -80,16 +80,17 @@ light.color=#BCC0CC
mid.light.color=#BCC0CC
dark.color=#E6E9EF
mid.color=#E6E9EF
-highlight.color=#EA76CB
-inactive.highlight.color=#EA76CB
+highlight.color=#EA76CB4D
+inactive.highlight.color=#BCC0CC
+tooltip.base.color=#E6E9EF
text.color=#4C4F69
window.text.color=#4C4F69
button.text.color=#4C4F69
disabled.text.color=#ACB0BE
tooltip.text.color=#4C4F69
-highlight.text.color=#E6E9EF
-link.color=#DC8A78
-link.visited.color=#1E66F5
+highlight.text.color=#4C4F69
+link.color=#EA76CB
+link.visited.color=#CA6EB7
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#E6E9EF
+text.press.color=#4C4F69
+text.toggle.color=#4C4F69
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#4C4F69
text.focus.color=#4C4F69
-text.press.color=#E6E9EF
-text.toggle.color=#E6E9EF
+text.press.color=#4C4F69
+text.toggle.color=#4C4F69
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#ACB0BE
+text.normal.color=#7C7F93
text.focus.color=#4C4F69
text.press.color=#4C4F69
text.toggle.color=#4C4F69
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#4C4F69
text.focus.color=#4C4F69
-text.press.color=#E6E9EF
-text.toggle.color=#E6E9EF
+text.press.color=#4C4F69
+text.toggle.color=#4C4F69
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#4C4F69
text.press.color=#4C4F69
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#4C4F69
text.toggle.color=#4C4F69
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-latte-pink/catppuccin-latte-pink.svg b/config/kvantum/.config/Kvantum/catppuccin-latte-pink/catppuccin-latte-pink.svg
index 305a5a1..bff30ea 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-latte-pink/catppuccin-latte-pink.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-latte-pink/catppuccin-latte-pink.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-latte-red/catppuccin-latte-red.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-latte-red/catppuccin-latte-red.kvconfig
index fbaae8c..1de67e7 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-latte-red/catppuccin-latte-red.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-latte-red/catppuccin-latte-red.kvconfig
@@ -80,16 +80,17 @@ light.color=#BCC0CC
mid.light.color=#BCC0CC
dark.color=#E6E9EF
mid.color=#E6E9EF
-highlight.color=#D20F39
-inactive.highlight.color=#D20F39
+highlight.color=#D20F394D
+inactive.highlight.color=#BCC0CC
+tooltip.base.color=#E6E9EF
text.color=#4C4F69
window.text.color=#4C4F69
button.text.color=#4C4F69
disabled.text.color=#ACB0BE
tooltip.text.color=#4C4F69
-highlight.text.color=#E6E9EF
-link.color=#DC8A78
-link.visited.color=#1E66F5
+highlight.text.color=#4C4F69
+link.color=#D20F39
+link.visited.color=#B71C43
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#E6E9EF
+text.press.color=#4C4F69
+text.toggle.color=#4C4F69
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#4C4F69
text.focus.color=#4C4F69
-text.press.color=#E6E9EF
-text.toggle.color=#E6E9EF
+text.press.color=#4C4F69
+text.toggle.color=#4C4F69
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#ACB0BE
+text.normal.color=#7C7F93
text.focus.color=#4C4F69
text.press.color=#4C4F69
text.toggle.color=#4C4F69
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#4C4F69
text.focus.color=#4C4F69
-text.press.color=#E6E9EF
-text.toggle.color=#E6E9EF
+text.press.color=#4C4F69
+text.toggle.color=#4C4F69
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#4C4F69
text.press.color=#4C4F69
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#4C4F69
text.toggle.color=#4C4F69
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-latte-red/catppuccin-latte-red.svg b/config/kvantum/.config/Kvantum/catppuccin-latte-red/catppuccin-latte-red.svg
index ae14bf7..48396a9 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-latte-red/catppuccin-latte-red.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-latte-red/catppuccin-latte-red.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-latte-rosewater/catppuccin-latte-rosewater.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-latte-rosewater/catppuccin-latte-rosewater.kvconfig
index b320f87..1c6621b 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-latte-rosewater/catppuccin-latte-rosewater.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-latte-rosewater/catppuccin-latte-rosewater.kvconfig
@@ -80,16 +80,17 @@ light.color=#BCC0CC
mid.light.color=#BCC0CC
dark.color=#E6E9EF
mid.color=#E6E9EF
-highlight.color=#DC8A78
-inactive.highlight.color=#DC8A78
+highlight.color=#DC8A784D
+inactive.highlight.color=#BCC0CC
+tooltip.base.color=#E6E9EF
text.color=#4C4F69
window.text.color=#4C4F69
button.text.color=#4C4F69
disabled.text.color=#ACB0BE
tooltip.text.color=#4C4F69
-highlight.text.color=#E6E9EF
+highlight.text.color=#4C4F69
link.color=#DC8A78
-link.visited.color=#1E66F5
+link.visited.color=#BF7E75
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#E6E9EF
+text.press.color=#4C4F69
+text.toggle.color=#4C4F69
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#4C4F69
text.focus.color=#4C4F69
-text.press.color=#E6E9EF
-text.toggle.color=#E6E9EF
+text.press.color=#4C4F69
+text.toggle.color=#4C4F69
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#ACB0BE
+text.normal.color=#7C7F93
text.focus.color=#4C4F69
text.press.color=#4C4F69
text.toggle.color=#4C4F69
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#4C4F69
text.focus.color=#4C4F69
-text.press.color=#E6E9EF
-text.toggle.color=#E6E9EF
+text.press.color=#4C4F69
+text.toggle.color=#4C4F69
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#4C4F69
text.press.color=#4C4F69
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#4C4F69
text.toggle.color=#4C4F69
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-latte-rosewater/catppuccin-latte-rosewater.svg b/config/kvantum/.config/Kvantum/catppuccin-latte-rosewater/catppuccin-latte-rosewater.svg
index f0f8b85..5dff7ea 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-latte-rosewater/catppuccin-latte-rosewater.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-latte-rosewater/catppuccin-latte-rosewater.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-latte-sapphire/catppuccin-latte-sapphire.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-latte-sapphire/catppuccin-latte-sapphire.kvconfig
index fb96f0f..4c50862 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-latte-sapphire/catppuccin-latte-sapphire.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-latte-sapphire/catppuccin-latte-sapphire.kvconfig
@@ -80,16 +80,17 @@ light.color=#BCC0CC
mid.light.color=#BCC0CC
dark.color=#E6E9EF
mid.color=#E6E9EF
-highlight.color=#209FB5
-inactive.highlight.color=#209FB5
+highlight.color=#209FB54D
+inactive.highlight.color=#BCC0CC
+tooltip.base.color=#E6E9EF
text.color=#4C4F69
window.text.color=#4C4F69
button.text.color=#4C4F69
disabled.text.color=#ACB0BE
tooltip.text.color=#4C4F69
-highlight.text.color=#E6E9EF
-link.color=#DC8A78
-link.visited.color=#1E66F5
+highlight.text.color=#4C4F69
+link.color=#209FB5
+link.visited.color=#298FA6
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#E6E9EF
+text.press.color=#4C4F69
+text.toggle.color=#4C4F69
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#4C4F69
text.focus.color=#4C4F69
-text.press.color=#E6E9EF
-text.toggle.color=#E6E9EF
+text.press.color=#4C4F69
+text.toggle.color=#4C4F69
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#ACB0BE
+text.normal.color=#7C7F93
text.focus.color=#4C4F69
text.press.color=#4C4F69
text.toggle.color=#4C4F69
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#4C4F69
text.focus.color=#4C4F69
-text.press.color=#E6E9EF
-text.toggle.color=#E6E9EF
+text.press.color=#4C4F69
+text.toggle.color=#4C4F69
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#4C4F69
text.press.color=#4C4F69
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#4C4F69
text.toggle.color=#4C4F69
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-latte-sapphire/catppuccin-latte-sapphire.svg b/config/kvantum/.config/Kvantum/catppuccin-latte-sapphire/catppuccin-latte-sapphire.svg
index 2dacf0f..4eb0480 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-latte-sapphire/catppuccin-latte-sapphire.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-latte-sapphire/catppuccin-latte-sapphire.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-latte-sky/catppuccin-latte-sky.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-latte-sky/catppuccin-latte-sky.kvconfig
index ca4b34c..be69cec 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-latte-sky/catppuccin-latte-sky.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-latte-sky/catppuccin-latte-sky.kvconfig
@@ -80,16 +80,17 @@ light.color=#BCC0CC
mid.light.color=#BCC0CC
dark.color=#E6E9EF
mid.color=#E6E9EF
-highlight.color=#04A5E5
-inactive.highlight.color=#04A5E5
+highlight.color=#04A5E54D
+inactive.highlight.color=#BCC0CC
+tooltip.base.color=#E6E9EF
text.color=#4C4F69
window.text.color=#4C4F69
button.text.color=#4C4F69
disabled.text.color=#ACB0BE
tooltip.text.color=#4C4F69
-highlight.text.color=#E6E9EF
-link.color=#DC8A78
-link.visited.color=#1E66F5
+highlight.text.color=#4C4F69
+link.color=#04A5E5
+link.visited.color=#1294CC
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#E6E9EF
+text.press.color=#4C4F69
+text.toggle.color=#4C4F69
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#4C4F69
text.focus.color=#4C4F69
-text.press.color=#E6E9EF
-text.toggle.color=#E6E9EF
+text.press.color=#4C4F69
+text.toggle.color=#4C4F69
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#ACB0BE
+text.normal.color=#7C7F93
text.focus.color=#4C4F69
text.press.color=#4C4F69
text.toggle.color=#4C4F69
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#4C4F69
text.focus.color=#4C4F69
-text.press.color=#E6E9EF
-text.toggle.color=#E6E9EF
+text.press.color=#4C4F69
+text.toggle.color=#4C4F69
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#4C4F69
text.press.color=#4C4F69
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#4C4F69
text.toggle.color=#4C4F69
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-latte-sky/catppuccin-latte-sky.svg b/config/kvantum/.config/Kvantum/catppuccin-latte-sky/catppuccin-latte-sky.svg
index ae8e4bd..78591de 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-latte-sky/catppuccin-latte-sky.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-latte-sky/catppuccin-latte-sky.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-latte-teal/catppuccin-latte-teal.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-latte-teal/catppuccin-latte-teal.kvconfig
index 1792395..dd1a8c8 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-latte-teal/catppuccin-latte-teal.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-latte-teal/catppuccin-latte-teal.kvconfig
@@ -80,16 +80,17 @@ light.color=#BCC0CC
mid.light.color=#BCC0CC
dark.color=#E6E9EF
mid.color=#E6E9EF
-highlight.color=#179299
-inactive.highlight.color=#179299
+highlight.color=#1792994D
+inactive.highlight.color=#BCC0CC
+tooltip.base.color=#E6E9EF
text.color=#4C4F69
window.text.color=#4C4F69
button.text.color=#4C4F69
disabled.text.color=#ACB0BE
tooltip.text.color=#4C4F69
-highlight.text.color=#E6E9EF
-link.color=#DC8A78
-link.visited.color=#1E66F5
+highlight.text.color=#4C4F69
+link.color=#179299
+link.visited.color=#21858F
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#E6E9EF
+text.press.color=#4C4F69
+text.toggle.color=#4C4F69
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#4C4F69
text.focus.color=#4C4F69
-text.press.color=#E6E9EF
-text.toggle.color=#E6E9EF
+text.press.color=#4C4F69
+text.toggle.color=#4C4F69
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#ACB0BE
+text.normal.color=#7C7F93
text.focus.color=#4C4F69
text.press.color=#4C4F69
text.toggle.color=#4C4F69
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#4C4F69
text.focus.color=#4C4F69
-text.press.color=#E6E9EF
-text.toggle.color=#E6E9EF
+text.press.color=#4C4F69
+text.toggle.color=#4C4F69
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#4C4F69
text.press.color=#4C4F69
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#4C4F69
text.toggle.color=#4C4F69
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-latte-teal/catppuccin-latte-teal.svg b/config/kvantum/.config/Kvantum/catppuccin-latte-teal/catppuccin-latte-teal.svg
index e2a1361..63c5850 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-latte-teal/catppuccin-latte-teal.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-latte-teal/catppuccin-latte-teal.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-latte-yellow/catppuccin-latte-yellow.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-latte-yellow/catppuccin-latte-yellow.kvconfig
index a5ef5fa..ba5eb02 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-latte-yellow/catppuccin-latte-yellow.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-latte-yellow/catppuccin-latte-yellow.kvconfig
@@ -80,16 +80,17 @@ light.color=#BCC0CC
mid.light.color=#BCC0CC
dark.color=#E6E9EF
mid.color=#E6E9EF
-highlight.color=#DF8E1D
-inactive.highlight.color=#DF8E1D
+highlight.color=#DF8E1D4D
+inactive.highlight.color=#BCC0CC
+tooltip.base.color=#E6E9EF
text.color=#4C4F69
window.text.color=#4C4F69
button.text.color=#4C4F69
disabled.text.color=#ACB0BE
tooltip.text.color=#4C4F69
-highlight.text.color=#E6E9EF
-link.color=#DC8A78
-link.visited.color=#1E66F5
+highlight.text.color=#4C4F69
+link.color=#DF8E1D
+link.visited.color=#C1822C
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#E6E9EF
+text.press.color=#4C4F69
+text.toggle.color=#4C4F69
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#4C4F69
text.focus.color=#4C4F69
-text.press.color=#E6E9EF
-text.toggle.color=#E6E9EF
+text.press.color=#4C4F69
+text.toggle.color=#4C4F69
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#ACB0BE
+text.normal.color=#7C7F93
text.focus.color=#4C4F69
text.press.color=#4C4F69
text.toggle.color=#4C4F69
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#4C4F69
text.focus.color=#4C4F69
-text.press.color=#E6E9EF
-text.toggle.color=#E6E9EF
+text.press.color=#4C4F69
+text.toggle.color=#4C4F69
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#4C4F69
text.press.color=#4C4F69
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#4C4F69
text.toggle.color=#4C4F69
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-latte-yellow/catppuccin-latte-yellow.svg b/config/kvantum/.config/Kvantum/catppuccin-latte-yellow/catppuccin-latte-yellow.svg
index edff930..c153d77 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-latte-yellow/catppuccin-latte-yellow.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-latte-yellow/catppuccin-latte-yellow.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-macchiato-blue/catppuccin-macchiato-blue.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-macchiato-blue/catppuccin-macchiato-blue.kvconfig
index d20a31f..37930dc 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-macchiato-blue/catppuccin-macchiato-blue.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-macchiato-blue/catppuccin-macchiato-blue.kvconfig
@@ -80,16 +80,17 @@ light.color=#494D64
mid.light.color=#494D64
dark.color=#1E2030
mid.color=#1E2030
-highlight.color=#8AADF4
-inactive.highlight.color=#8AADF4
+highlight.color=#8AADF44D
+inactive.highlight.color=#494D64
+tooltip.base.color=#1E2030
text.color=#CAD3F5
window.text.color=#CAD3F5
button.text.color=#CAD3F5
disabled.text.color=#5B6078
tooltip.text.color=#CAD3F5
-highlight.text.color=#1E2030
-link.color=#F4DBD6
-link.visited.color=#8AADF4
+highlight.text.color=#CAD3F5
+link.color=#8AADF4
+link.visited.color=#96B4F4
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#1E2030
+text.press.color=#CAD3F5
+text.toggle.color=#CAD3F5
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#CAD3F5
text.focus.color=#CAD3F5
-text.press.color=#1E2030
-text.toggle.color=#1E2030
+text.press.color=#CAD3F5
+text.toggle.color=#CAD3F5
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#5B6078
+text.normal.color=#939AB7
text.focus.color=#CAD3F5
text.press.color=#CAD3F5
text.toggle.color=#CAD3F5
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#CAD3F5
text.focus.color=#CAD3F5
-text.press.color=#1E2030
-text.toggle.color=#1E2030
+text.press.color=#CAD3F5
+text.toggle.color=#CAD3F5
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#CAD3F5
text.press.color=#CAD3F5
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#CAD3F5
text.toggle.color=#CAD3F5
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-macchiato-blue/catppuccin-macchiato-blue.svg b/config/kvantum/.config/Kvantum/catppuccin-macchiato-blue/catppuccin-macchiato-blue.svg
index e915528..0b7cc47 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-macchiato-blue/catppuccin-macchiato-blue.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-macchiato-blue/catppuccin-macchiato-blue.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-macchiato-flamingo/catppuccin-macchiato-flamingo.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-macchiato-flamingo/catppuccin-macchiato-flamingo.kvconfig
index 8707b06..668349e 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-macchiato-flamingo/catppuccin-macchiato-flamingo.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-macchiato-flamingo/catppuccin-macchiato-flamingo.kvconfig
@@ -80,16 +80,17 @@ light.color=#494D64
mid.light.color=#494D64
dark.color=#1E2030
mid.color=#1E2030
-highlight.color=#F0C6C6
-inactive.highlight.color=#F0C6C6
+highlight.color=#F0C6C64D
+inactive.highlight.color=#494D64
+tooltip.base.color=#1E2030
text.color=#CAD3F5
window.text.color=#CAD3F5
button.text.color=#CAD3F5
disabled.text.color=#5B6078
tooltip.text.color=#CAD3F5
-highlight.text.color=#1E2030
-link.color=#F4DBD6
-link.visited.color=#8AADF4
+highlight.text.color=#CAD3F5
+link.color=#F0C6C6
+link.visited.color=#E8C8CF
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#1E2030
+text.press.color=#CAD3F5
+text.toggle.color=#CAD3F5
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#CAD3F5
text.focus.color=#CAD3F5
-text.press.color=#1E2030
-text.toggle.color=#1E2030
+text.press.color=#CAD3F5
+text.toggle.color=#CAD3F5
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#5B6078
+text.normal.color=#939AB7
text.focus.color=#CAD3F5
text.press.color=#CAD3F5
text.toggle.color=#CAD3F5
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#CAD3F5
text.focus.color=#CAD3F5
-text.press.color=#1E2030
-text.toggle.color=#1E2030
+text.press.color=#CAD3F5
+text.toggle.color=#CAD3F5
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#CAD3F5
text.press.color=#CAD3F5
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#CAD3F5
text.toggle.color=#CAD3F5
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-macchiato-flamingo/catppuccin-macchiato-flamingo.svg b/config/kvantum/.config/Kvantum/catppuccin-macchiato-flamingo/catppuccin-macchiato-flamingo.svg
index c62bdbe..fca7b1b 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-macchiato-flamingo/catppuccin-macchiato-flamingo.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-macchiato-flamingo/catppuccin-macchiato-flamingo.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-macchiato-green/catppuccin-macchiato-green.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-macchiato-green/catppuccin-macchiato-green.kvconfig
index 98deb06..3fce44a 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-macchiato-green/catppuccin-macchiato-green.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-macchiato-green/catppuccin-macchiato-green.kvconfig
@@ -80,16 +80,17 @@ light.color=#494D64
mid.light.color=#494D64
dark.color=#1E2030
mid.color=#1E2030
-highlight.color=#A6DA95
-inactive.highlight.color=#A6DA95
+highlight.color=#A6DA954D
+inactive.highlight.color=#494D64
+tooltip.base.color=#1E2030
text.color=#CAD3F5
window.text.color=#CAD3F5
button.text.color=#CAD3F5
disabled.text.color=#5B6078
tooltip.text.color=#CAD3F5
-highlight.text.color=#1E2030
-link.color=#F4DBD6
-link.visited.color=#8AADF4
+highlight.text.color=#CAD3F5
+link.color=#A6DA95
+link.visited.color=#ADD8A8
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#1E2030
+text.press.color=#CAD3F5
+text.toggle.color=#CAD3F5
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#CAD3F5
text.focus.color=#CAD3F5
-text.press.color=#1E2030
-text.toggle.color=#1E2030
+text.press.color=#CAD3F5
+text.toggle.color=#CAD3F5
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#5B6078
+text.normal.color=#939AB7
text.focus.color=#CAD3F5
text.press.color=#CAD3F5
text.toggle.color=#CAD3F5
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#CAD3F5
text.focus.color=#CAD3F5
-text.press.color=#1E2030
-text.toggle.color=#1E2030
+text.press.color=#CAD3F5
+text.toggle.color=#CAD3F5
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#CAD3F5
text.press.color=#CAD3F5
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#CAD3F5
text.toggle.color=#CAD3F5
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-macchiato-green/catppuccin-macchiato-green.svg b/config/kvantum/.config/Kvantum/catppuccin-macchiato-green/catppuccin-macchiato-green.svg
index fc3cfc1..413b4f9 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-macchiato-green/catppuccin-macchiato-green.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-macchiato-green/catppuccin-macchiato-green.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-macchiato-lavender/catppuccin-macchiato-lavender.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-macchiato-lavender/catppuccin-macchiato-lavender.kvconfig
index dadfa98..ac84185 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-macchiato-lavender/catppuccin-macchiato-lavender.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-macchiato-lavender/catppuccin-macchiato-lavender.kvconfig
@@ -80,16 +80,17 @@ light.color=#494D64
mid.light.color=#494D64
dark.color=#1E2030
mid.color=#1E2030
-highlight.color=#B7BDF8
-inactive.highlight.color=#B7BDF8
+highlight.color=#B7BDF84D
+inactive.highlight.color=#494D64
+tooltip.base.color=#1E2030
text.color=#CAD3F5
window.text.color=#CAD3F5
button.text.color=#CAD3F5
disabled.text.color=#5B6078
tooltip.text.color=#CAD3F5
-highlight.text.color=#1E2030
-link.color=#F4DBD6
-link.visited.color=#8AADF4
+highlight.text.color=#CAD3F5
+link.color=#B7BDF8
+link.visited.color=#BAC1F7
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#1E2030
+text.press.color=#CAD3F5
+text.toggle.color=#CAD3F5
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#CAD3F5
text.focus.color=#CAD3F5
-text.press.color=#1E2030
-text.toggle.color=#1E2030
+text.press.color=#CAD3F5
+text.toggle.color=#CAD3F5
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#5B6078
+text.normal.color=#939AB7
text.focus.color=#CAD3F5
text.press.color=#CAD3F5
text.toggle.color=#CAD3F5
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#CAD3F5
text.focus.color=#CAD3F5
-text.press.color=#1E2030
-text.toggle.color=#1E2030
+text.press.color=#CAD3F5
+text.toggle.color=#CAD3F5
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#CAD3F5
text.press.color=#CAD3F5
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#CAD3F5
text.toggle.color=#CAD3F5
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-macchiato-lavender/catppuccin-macchiato-lavender.svg b/config/kvantum/.config/Kvantum/catppuccin-macchiato-lavender/catppuccin-macchiato-lavender.svg
index 4b0ef96..ce0ac1a 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-macchiato-lavender/catppuccin-macchiato-lavender.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-macchiato-lavender/catppuccin-macchiato-lavender.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-macchiato-maroon/catppuccin-macchiato-maroon.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-macchiato-maroon/catppuccin-macchiato-maroon.kvconfig
index 4e6e420..fdced11 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-macchiato-maroon/catppuccin-macchiato-maroon.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-macchiato-maroon/catppuccin-macchiato-maroon.kvconfig
@@ -80,16 +80,17 @@ light.color=#494D64
mid.light.color=#494D64
dark.color=#1E2030
mid.color=#1E2030
-highlight.color=#EE99A0
-inactive.highlight.color=#EE99A0
+highlight.color=#EE99A04D
+inactive.highlight.color=#494D64
+tooltip.base.color=#1E2030
text.color=#CAD3F5
window.text.color=#CAD3F5
button.text.color=#CAD3F5
disabled.text.color=#5B6078
tooltip.text.color=#CAD3F5
-highlight.text.color=#1E2030
-link.color=#F4DBD6
-link.visited.color=#8AADF4
+highlight.text.color=#CAD3F5
+link.color=#EE99A0
+link.visited.color=#E6A4B1
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#1E2030
+text.press.color=#CAD3F5
+text.toggle.color=#CAD3F5
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#CAD3F5
text.focus.color=#CAD3F5
-text.press.color=#1E2030
-text.toggle.color=#1E2030
+text.press.color=#CAD3F5
+text.toggle.color=#CAD3F5
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#5B6078
+text.normal.color=#939AB7
text.focus.color=#CAD3F5
text.press.color=#CAD3F5
text.toggle.color=#CAD3F5
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#CAD3F5
text.focus.color=#CAD3F5
-text.press.color=#1E2030
-text.toggle.color=#1E2030
+text.press.color=#CAD3F5
+text.toggle.color=#CAD3F5
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#CAD3F5
text.press.color=#CAD3F5
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#CAD3F5
text.toggle.color=#CAD3F5
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-macchiato-maroon/catppuccin-macchiato-maroon.svg b/config/kvantum/.config/Kvantum/catppuccin-macchiato-maroon/catppuccin-macchiato-maroon.svg
index b14ca56..7792c97 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-macchiato-maroon/catppuccin-macchiato-maroon.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-macchiato-maroon/catppuccin-macchiato-maroon.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-macchiato-mauve/catppuccin-macchiato-mauve.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-macchiato-mauve/catppuccin-macchiato-mauve.kvconfig
index 23d84b8..01f2303 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-macchiato-mauve/catppuccin-macchiato-mauve.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-macchiato-mauve/catppuccin-macchiato-mauve.kvconfig
@@ -80,16 +80,17 @@ light.color=#494D64
mid.light.color=#494D64
dark.color=#1E2030
mid.color=#1E2030
-highlight.color=#C6A0F6
-inactive.highlight.color=#C6A0F6
+highlight.color=#C6A0F64D
+inactive.highlight.color=#494D64
+tooltip.base.color=#1E2030
text.color=#CAD3F5
window.text.color=#CAD3F5
button.text.color=#CAD3F5
disabled.text.color=#5B6078
tooltip.text.color=#CAD3F5
-highlight.text.color=#1E2030
-link.color=#F4DBD6
-link.visited.color=#8AADF4
+highlight.text.color=#CAD3F5
+link.color=#C6A0F6
+link.visited.color=#C6AAF6
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#1E2030
+text.press.color=#CAD3F5
+text.toggle.color=#CAD3F5
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#CAD3F5
text.focus.color=#CAD3F5
-text.press.color=#1E2030
-text.toggle.color=#1E2030
+text.press.color=#CAD3F5
+text.toggle.color=#CAD3F5
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#5B6078
+text.normal.color=#939AB7
text.focus.color=#CAD3F5
text.press.color=#CAD3F5
text.toggle.color=#CAD3F5
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#CAD3F5
text.focus.color=#CAD3F5
-text.press.color=#1E2030
-text.toggle.color=#1E2030
+text.press.color=#CAD3F5
+text.toggle.color=#CAD3F5
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#CAD3F5
text.press.color=#CAD3F5
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#CAD3F5
text.toggle.color=#CAD3F5
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-macchiato-mauve/catppuccin-macchiato-mauve.svg b/config/kvantum/.config/Kvantum/catppuccin-macchiato-mauve/catppuccin-macchiato-mauve.svg
index ffb5748..de0439d 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-macchiato-mauve/catppuccin-macchiato-mauve.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-macchiato-mauve/catppuccin-macchiato-mauve.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-macchiato-peach/catppuccin-macchiato-peach.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-macchiato-peach/catppuccin-macchiato-peach.kvconfig
index c0ff86b..2f8503b 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-macchiato-peach/catppuccin-macchiato-peach.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-macchiato-peach/catppuccin-macchiato-peach.kvconfig
@@ -80,16 +80,17 @@ light.color=#494D64
mid.light.color=#494D64
dark.color=#1E2030
mid.color=#1E2030
-highlight.color=#F5A97F
-inactive.highlight.color=#F5A97F
+highlight.color=#F5A97F4D
+inactive.highlight.color=#494D64
+tooltip.base.color=#1E2030
text.color=#CAD3F5
window.text.color=#CAD3F5
button.text.color=#CAD3F5
disabled.text.color=#5B6078
tooltip.text.color=#CAD3F5
-highlight.text.color=#1E2030
-link.color=#F4DBD6
-link.visited.color=#8AADF4
+highlight.text.color=#CAD3F5
+link.color=#F5A97F
+link.visited.color=#ECB197
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#1E2030
+text.press.color=#CAD3F5
+text.toggle.color=#CAD3F5
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#CAD3F5
text.focus.color=#CAD3F5
-text.press.color=#1E2030
-text.toggle.color=#1E2030
+text.press.color=#CAD3F5
+text.toggle.color=#CAD3F5
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#5B6078
+text.normal.color=#939AB7
text.focus.color=#CAD3F5
text.press.color=#CAD3F5
text.toggle.color=#CAD3F5
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#CAD3F5
text.focus.color=#CAD3F5
-text.press.color=#1E2030
-text.toggle.color=#1E2030
+text.press.color=#CAD3F5
+text.toggle.color=#CAD3F5
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#CAD3F5
text.press.color=#CAD3F5
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#CAD3F5
text.toggle.color=#CAD3F5
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-macchiato-peach/catppuccin-macchiato-peach.svg b/config/kvantum/.config/Kvantum/catppuccin-macchiato-peach/catppuccin-macchiato-peach.svg
index 142cd8a..e3db5b4 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-macchiato-peach/catppuccin-macchiato-peach.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-macchiato-peach/catppuccin-macchiato-peach.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-macchiato-pink/catppuccin-macchiato-pink.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-macchiato-pink/catppuccin-macchiato-pink.kvconfig
index 8f0fb6a..6bfac78 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-macchiato-pink/catppuccin-macchiato-pink.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-macchiato-pink/catppuccin-macchiato-pink.kvconfig
@@ -80,16 +80,17 @@ light.color=#494D64
mid.light.color=#494D64
dark.color=#1E2030
mid.color=#1E2030
-highlight.color=#F5BDE6
-inactive.highlight.color=#F5BDE6
+highlight.color=#F5BDE64D
+inactive.highlight.color=#494D64
+tooltip.base.color=#1E2030
text.color=#CAD3F5
window.text.color=#CAD3F5
button.text.color=#CAD3F5
disabled.text.color=#5B6078
tooltip.text.color=#CAD3F5
-highlight.text.color=#1E2030
-link.color=#F4DBD6
-link.visited.color=#8AADF4
+highlight.text.color=#CAD3F5
+link.color=#F5BDE6
+link.visited.color=#ECC1E9
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#1E2030
+text.press.color=#CAD3F5
+text.toggle.color=#CAD3F5
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#CAD3F5
text.focus.color=#CAD3F5
-text.press.color=#1E2030
-text.toggle.color=#1E2030
+text.press.color=#CAD3F5
+text.toggle.color=#CAD3F5
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#5B6078
+text.normal.color=#939AB7
text.focus.color=#CAD3F5
text.press.color=#CAD3F5
text.toggle.color=#CAD3F5
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#CAD3F5
text.focus.color=#CAD3F5
-text.press.color=#1E2030
-text.toggle.color=#1E2030
+text.press.color=#CAD3F5
+text.toggle.color=#CAD3F5
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#CAD3F5
text.press.color=#CAD3F5
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#CAD3F5
text.toggle.color=#CAD3F5
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-macchiato-pink/catppuccin-macchiato-pink.svg b/config/kvantum/.config/Kvantum/catppuccin-macchiato-pink/catppuccin-macchiato-pink.svg
index c2d5f8e..fba5c83 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-macchiato-pink/catppuccin-macchiato-pink.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-macchiato-pink/catppuccin-macchiato-pink.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-macchiato-red/catppuccin-macchiato-red.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-macchiato-red/catppuccin-macchiato-red.kvconfig
index 057678f..2b96e96 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-macchiato-red/catppuccin-macchiato-red.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-macchiato-red/catppuccin-macchiato-red.kvconfig
@@ -80,16 +80,17 @@ light.color=#494D64
mid.light.color=#494D64
dark.color=#1E2030
mid.color=#1E2030
-highlight.color=#ED8796
-inactive.highlight.color=#ED8796
+highlight.color=#ED87964D
+inactive.highlight.color=#494D64
+tooltip.base.color=#1E2030
text.color=#CAD3F5
window.text.color=#CAD3F5
button.text.color=#CAD3F5
disabled.text.color=#5B6078
tooltip.text.color=#CAD3F5
-highlight.text.color=#1E2030
-link.color=#F4DBD6
-link.visited.color=#8AADF4
+highlight.text.color=#CAD3F5
+link.color=#ED8796
+link.visited.color=#E696A9
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#1E2030
+text.press.color=#CAD3F5
+text.toggle.color=#CAD3F5
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#CAD3F5
text.focus.color=#CAD3F5
-text.press.color=#1E2030
-text.toggle.color=#1E2030
+text.press.color=#CAD3F5
+text.toggle.color=#CAD3F5
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#5B6078
+text.normal.color=#939AB7
text.focus.color=#CAD3F5
text.press.color=#CAD3F5
text.toggle.color=#CAD3F5
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#CAD3F5
text.focus.color=#CAD3F5
-text.press.color=#1E2030
-text.toggle.color=#1E2030
+text.press.color=#CAD3F5
+text.toggle.color=#CAD3F5
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#CAD3F5
text.press.color=#CAD3F5
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#CAD3F5
text.toggle.color=#CAD3F5
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-macchiato-red/catppuccin-macchiato-red.svg b/config/kvantum/.config/Kvantum/catppuccin-macchiato-red/catppuccin-macchiato-red.svg
index f99ace8..aeda7c2 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-macchiato-red/catppuccin-macchiato-red.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-macchiato-red/catppuccin-macchiato-red.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-macchiato-rosewater/catppuccin-macchiato-rosewater.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-macchiato-rosewater/catppuccin-macchiato-rosewater.kvconfig
index 426def7..5309eea 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-macchiato-rosewater/catppuccin-macchiato-rosewater.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-macchiato-rosewater/catppuccin-macchiato-rosewater.kvconfig
@@ -80,16 +80,17 @@ light.color=#494D64
mid.light.color=#494D64
dark.color=#1E2030
mid.color=#1E2030
-highlight.color=#F4DBD6
-inactive.highlight.color=#F4DBD6
+highlight.color=#F4DBD64D
+inactive.highlight.color=#494D64
+tooltip.base.color=#1E2030
text.color=#CAD3F5
window.text.color=#CAD3F5
button.text.color=#CAD3F5
disabled.text.color=#5B6078
tooltip.text.color=#CAD3F5
-highlight.text.color=#1E2030
+highlight.text.color=#CAD3F5
link.color=#F4DBD6
-link.visited.color=#8AADF4
+link.visited.color=#EBD9DC
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#1E2030
+text.press.color=#CAD3F5
+text.toggle.color=#CAD3F5
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#CAD3F5
text.focus.color=#CAD3F5
-text.press.color=#1E2030
-text.toggle.color=#1E2030
+text.press.color=#CAD3F5
+text.toggle.color=#CAD3F5
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#5B6078
+text.normal.color=#939AB7
text.focus.color=#CAD3F5
text.press.color=#CAD3F5
text.toggle.color=#CAD3F5
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#CAD3F5
text.focus.color=#CAD3F5
-text.press.color=#1E2030
-text.toggle.color=#1E2030
+text.press.color=#CAD3F5
+text.toggle.color=#CAD3F5
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#CAD3F5
text.press.color=#CAD3F5
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#CAD3F5
text.toggle.color=#CAD3F5
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-macchiato-rosewater/catppuccin-macchiato-rosewater.svg b/config/kvantum/.config/Kvantum/catppuccin-macchiato-rosewater/catppuccin-macchiato-rosewater.svg
index 3ea5fd1..cc734e2 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-macchiato-rosewater/catppuccin-macchiato-rosewater.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-macchiato-rosewater/catppuccin-macchiato-rosewater.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-macchiato-sapphire/catppuccin-macchiato-sapphire.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-macchiato-sapphire/catppuccin-macchiato-sapphire.kvconfig
index bcce0e0..bd97f30 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-macchiato-sapphire/catppuccin-macchiato-sapphire.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-macchiato-sapphire/catppuccin-macchiato-sapphire.kvconfig
@@ -80,16 +80,17 @@ light.color=#494D64
mid.light.color=#494D64
dark.color=#1E2030
mid.color=#1E2030
-highlight.color=#7DC4E4
-inactive.highlight.color=#7DC4E4
+highlight.color=#7DC4E44D
+inactive.highlight.color=#494D64
+tooltip.base.color=#1E2030
text.color=#CAD3F5
window.text.color=#CAD3F5
button.text.color=#CAD3F5
disabled.text.color=#5B6078
tooltip.text.color=#CAD3F5
-highlight.text.color=#1E2030
-link.color=#F4DBD6
-link.visited.color=#8AADF4
+highlight.text.color=#CAD3F5
+link.color=#7DC4E4
+link.visited.color=#8CC7E7
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#1E2030
+text.press.color=#CAD3F5
+text.toggle.color=#CAD3F5
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#CAD3F5
text.focus.color=#CAD3F5
-text.press.color=#1E2030
-text.toggle.color=#1E2030
+text.press.color=#CAD3F5
+text.toggle.color=#CAD3F5
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#5B6078
+text.normal.color=#939AB7
text.focus.color=#CAD3F5
text.press.color=#CAD3F5
text.toggle.color=#CAD3F5
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#CAD3F5
text.focus.color=#CAD3F5
-text.press.color=#1E2030
-text.toggle.color=#1E2030
+text.press.color=#CAD3F5
+text.toggle.color=#CAD3F5
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#CAD3F5
text.press.color=#CAD3F5
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#CAD3F5
text.toggle.color=#CAD3F5
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-macchiato-sapphire/catppuccin-macchiato-sapphire.svg b/config/kvantum/.config/Kvantum/catppuccin-macchiato-sapphire/catppuccin-macchiato-sapphire.svg
index 4dd1725..3e39f03 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-macchiato-sapphire/catppuccin-macchiato-sapphire.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-macchiato-sapphire/catppuccin-macchiato-sapphire.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-macchiato-sky/catppuccin-macchiato-sky.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-macchiato-sky/catppuccin-macchiato-sky.kvconfig
index 1e4df4a..341008a 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-macchiato-sky/catppuccin-macchiato-sky.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-macchiato-sky/catppuccin-macchiato-sky.kvconfig
@@ -80,16 +80,17 @@ light.color=#494D64
mid.light.color=#494D64
dark.color=#1E2030
mid.color=#1E2030
-highlight.color=#91D7E3
-inactive.highlight.color=#91D7E3
+highlight.color=#91D7E34D
+inactive.highlight.color=#494D64
+tooltip.base.color=#1E2030
text.color=#CAD3F5
window.text.color=#CAD3F5
button.text.color=#CAD3F5
disabled.text.color=#5B6078
tooltip.text.color=#CAD3F5
-highlight.text.color=#1E2030
-link.color=#F4DBD6
-link.visited.color=#8AADF4
+highlight.text.color=#CAD3F5
+link.color=#91D7E3
+link.visited.color=#9CD6E7
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#1E2030
+text.press.color=#CAD3F5
+text.toggle.color=#CAD3F5
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#CAD3F5
text.focus.color=#CAD3F5
-text.press.color=#1E2030
-text.toggle.color=#1E2030
+text.press.color=#CAD3F5
+text.toggle.color=#CAD3F5
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#5B6078
+text.normal.color=#939AB7
text.focus.color=#CAD3F5
text.press.color=#CAD3F5
text.toggle.color=#CAD3F5
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#CAD3F5
text.focus.color=#CAD3F5
-text.press.color=#1E2030
-text.toggle.color=#1E2030
+text.press.color=#CAD3F5
+text.toggle.color=#CAD3F5
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#CAD3F5
text.press.color=#CAD3F5
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#CAD3F5
text.toggle.color=#CAD3F5
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-macchiato-sky/catppuccin-macchiato-sky.svg b/config/kvantum/.config/Kvantum/catppuccin-macchiato-sky/catppuccin-macchiato-sky.svg
index 86ab01b..6abb885 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-macchiato-sky/catppuccin-macchiato-sky.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-macchiato-sky/catppuccin-macchiato-sky.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-macchiato-teal/catppuccin-macchiato-teal.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-macchiato-teal/catppuccin-macchiato-teal.kvconfig
index f51f10c..3c8b6ac 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-macchiato-teal/catppuccin-macchiato-teal.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-macchiato-teal/catppuccin-macchiato-teal.kvconfig
@@ -80,16 +80,17 @@ light.color=#494D64
mid.light.color=#494D64
dark.color=#1E2030
mid.color=#1E2030
-highlight.color=#8BD5CA
-inactive.highlight.color=#8BD5CA
+highlight.color=#8BD5CA4D
+inactive.highlight.color=#494D64
+tooltip.base.color=#1E2030
text.color=#CAD3F5
window.text.color=#CAD3F5
button.text.color=#CAD3F5
disabled.text.color=#5B6078
tooltip.text.color=#CAD3F5
-highlight.text.color=#1E2030
-link.color=#F4DBD6
-link.visited.color=#8AADF4
+highlight.text.color=#CAD3F5
+link.color=#8BD5CA
+link.visited.color=#97D4D3
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#1E2030
+text.press.color=#CAD3F5
+text.toggle.color=#CAD3F5
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#CAD3F5
text.focus.color=#CAD3F5
-text.press.color=#1E2030
-text.toggle.color=#1E2030
+text.press.color=#CAD3F5
+text.toggle.color=#CAD3F5
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#5B6078
+text.normal.color=#939AB7
text.focus.color=#CAD3F5
text.press.color=#CAD3F5
text.toggle.color=#CAD3F5
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#CAD3F5
text.focus.color=#CAD3F5
-text.press.color=#1E2030
-text.toggle.color=#1E2030
+text.press.color=#CAD3F5
+text.toggle.color=#CAD3F5
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#CAD3F5
text.press.color=#CAD3F5
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#CAD3F5
text.toggle.color=#CAD3F5
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-macchiato-teal/catppuccin-macchiato-teal.svg b/config/kvantum/.config/Kvantum/catppuccin-macchiato-teal/catppuccin-macchiato-teal.svg
index 31af34a..819c224 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-macchiato-teal/catppuccin-macchiato-teal.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-macchiato-teal/catppuccin-macchiato-teal.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-macchiato-yellow/catppuccin-macchiato-yellow.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-macchiato-yellow/catppuccin-macchiato-yellow.kvconfig
index 928407d..fae3ded 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-macchiato-yellow/catppuccin-macchiato-yellow.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-macchiato-yellow/catppuccin-macchiato-yellow.kvconfig
@@ -80,16 +80,17 @@ light.color=#494D64
mid.light.color=#494D64
dark.color=#1E2030
mid.color=#1E2030
-highlight.color=#EED49F
-inactive.highlight.color=#EED49F
+highlight.color=#EED49F4D
+inactive.highlight.color=#494D64
+tooltip.base.color=#1E2030
text.color=#CAD3F5
window.text.color=#CAD3F5
button.text.color=#CAD3F5
disabled.text.color=#5B6078
tooltip.text.color=#CAD3F5
-highlight.text.color=#1E2030
-link.color=#F4DBD6
-link.visited.color=#8AADF4
+highlight.text.color=#CAD3F5
+link.color=#EED49F
+link.visited.color=#E6D4B0
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#1E2030
+text.press.color=#CAD3F5
+text.toggle.color=#CAD3F5
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#CAD3F5
text.focus.color=#CAD3F5
-text.press.color=#1E2030
-text.toggle.color=#1E2030
+text.press.color=#CAD3F5
+text.toggle.color=#CAD3F5
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#5B6078
+text.normal.color=#939AB7
text.focus.color=#CAD3F5
text.press.color=#CAD3F5
text.toggle.color=#CAD3F5
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#CAD3F5
text.focus.color=#CAD3F5
-text.press.color=#1E2030
-text.toggle.color=#1E2030
+text.press.color=#CAD3F5
+text.toggle.color=#CAD3F5
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#CAD3F5
text.press.color=#CAD3F5
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#CAD3F5
text.toggle.color=#CAD3F5
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-macchiato-yellow/catppuccin-macchiato-yellow.svg b/config/kvantum/.config/Kvantum/catppuccin-macchiato-yellow/catppuccin-macchiato-yellow.svg
index 67a9464..bcfc8ed 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-macchiato-yellow/catppuccin-macchiato-yellow.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-macchiato-yellow/catppuccin-macchiato-yellow.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-mocha-blue/catppuccin-mocha-blue.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-mocha-blue/catppuccin-mocha-blue.kvconfig
index e61067b..7fb2596 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-mocha-blue/catppuccin-mocha-blue.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-mocha-blue/catppuccin-mocha-blue.kvconfig
@@ -80,16 +80,17 @@ light.color=#45475A
mid.light.color=#45475A
dark.color=#181825
mid.color=#181825
-highlight.color=#89B4FA
-inactive.highlight.color=#89B4FA
+highlight.color=#89B4FA4D
+inactive.highlight.color=#45475A
+tooltip.base.color=#181825
text.color=#CDD6F4
window.text.color=#CDD6F4
button.text.color=#CDD6F4
disabled.text.color=#585B70
tooltip.text.color=#CDD6F4
-highlight.text.color=#181825
-link.color=#F5E0DC
-link.visited.color=#89B4FA
+highlight.text.color=#CDD6F4
+link.color=#89B4FA
+link.visited.color=#97BBF9
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#181825
+text.press.color=#CDD6F4
+text.toggle.color=#CDD6F4
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#CDD6F4
text.focus.color=#CDD6F4
-text.press.color=#181825
-text.toggle.color=#181825
+text.press.color=#CDD6F4
+text.toggle.color=#CDD6F4
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#585B70
+text.normal.color=#9399B2
text.focus.color=#CDD6F4
text.press.color=#CDD6F4
text.toggle.color=#CDD6F4
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#CDD6F4
text.focus.color=#CDD6F4
-text.press.color=#181825
-text.toggle.color=#181825
+text.press.color=#CDD6F4
+text.toggle.color=#CDD6F4
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#CDD6F4
text.press.color=#CDD6F4
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#CDD6F4
text.toggle.color=#CDD6F4
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-mocha-blue/catppuccin-mocha-blue.svg b/config/kvantum/.config/Kvantum/catppuccin-mocha-blue/catppuccin-mocha-blue.svg
index cc027e4..7c4c369 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-mocha-blue/catppuccin-mocha-blue.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-mocha-blue/catppuccin-mocha-blue.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-mocha-flamingo/catppuccin-mocha-flamingo.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-mocha-flamingo/catppuccin-mocha-flamingo.kvconfig
index 0bd15d5..ae6ed47 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-mocha-flamingo/catppuccin-mocha-flamingo.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-mocha-flamingo/catppuccin-mocha-flamingo.kvconfig
@@ -80,16 +80,17 @@ light.color=#45475A
mid.light.color=#45475A
dark.color=#181825
mid.color=#181825
-highlight.color=#F2CDCD
-inactive.highlight.color=#F2CDCD
+highlight.color=#F2CDCD4D
+inactive.highlight.color=#45475A
+tooltip.base.color=#181825
text.color=#CDD6F4
window.text.color=#CDD6F4
button.text.color=#CDD6F4
disabled.text.color=#585B70
tooltip.text.color=#CDD6F4
-highlight.text.color=#181825
-link.color=#F5E0DC
-link.visited.color=#89B4FA
+highlight.text.color=#CDD6F4
+link.color=#F2CDCD
+link.visited.color=#EBCFD5
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#181825
+text.press.color=#CDD6F4
+text.toggle.color=#CDD6F4
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#CDD6F4
text.focus.color=#CDD6F4
-text.press.color=#181825
-text.toggle.color=#181825
+text.press.color=#CDD6F4
+text.toggle.color=#CDD6F4
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#585B70
+text.normal.color=#9399B2
text.focus.color=#CDD6F4
text.press.color=#CDD6F4
text.toggle.color=#CDD6F4
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#CDD6F4
text.focus.color=#CDD6F4
-text.press.color=#181825
-text.toggle.color=#181825
+text.press.color=#CDD6F4
+text.toggle.color=#CDD6F4
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#CDD6F4
text.press.color=#CDD6F4
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#CDD6F4
text.toggle.color=#CDD6F4
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-mocha-flamingo/catppuccin-mocha-flamingo.svg b/config/kvantum/.config/Kvantum/catppuccin-mocha-flamingo/catppuccin-mocha-flamingo.svg
index 5a2fd63..263ac32 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-mocha-flamingo/catppuccin-mocha-flamingo.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-mocha-flamingo/catppuccin-mocha-flamingo.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-mocha-green/catppuccin-mocha-green.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-mocha-green/catppuccin-mocha-green.kvconfig
index 2ceb9c2..753d3d6 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-mocha-green/catppuccin-mocha-green.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-mocha-green/catppuccin-mocha-green.kvconfig
@@ -80,16 +80,17 @@ light.color=#45475A
mid.light.color=#45475A
dark.color=#181825
mid.color=#181825
-highlight.color=#A6E3A1
-inactive.highlight.color=#A6E3A1
+highlight.color=#A6E3A14D
+inactive.highlight.color=#45475A
+tooltip.base.color=#181825
text.color=#CDD6F4
window.text.color=#CDD6F4
button.text.color=#CDD6F4
disabled.text.color=#585B70
tooltip.text.color=#CDD6F4
-highlight.text.color=#181825
-link.color=#F5E0DC
-link.visited.color=#89B4FA
+highlight.text.color=#CDD6F4
+link.color=#A6E3A1
+link.visited.color=#AEE1B2
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#181825
+text.press.color=#CDD6F4
+text.toggle.color=#CDD6F4
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#CDD6F4
text.focus.color=#CDD6F4
-text.press.color=#181825
-text.toggle.color=#181825
+text.press.color=#CDD6F4
+text.toggle.color=#CDD6F4
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#585B70
+text.normal.color=#9399B2
text.focus.color=#CDD6F4
text.press.color=#CDD6F4
text.toggle.color=#CDD6F4
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#CDD6F4
text.focus.color=#CDD6F4
-text.press.color=#181825
-text.toggle.color=#181825
+text.press.color=#CDD6F4
+text.toggle.color=#CDD6F4
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#CDD6F4
text.press.color=#CDD6F4
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#CDD6F4
text.toggle.color=#CDD6F4
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-mocha-green/catppuccin-mocha-green.svg b/config/kvantum/.config/Kvantum/catppuccin-mocha-green/catppuccin-mocha-green.svg
index 2e4c3ec..38dbedc 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-mocha-green/catppuccin-mocha-green.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-mocha-green/catppuccin-mocha-green.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-mocha-lavender/catppuccin-mocha-lavender.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-mocha-lavender/catppuccin-mocha-lavender.kvconfig
index 2517bb1..356e1e2 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-mocha-lavender/catppuccin-mocha-lavender.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-mocha-lavender/catppuccin-mocha-lavender.kvconfig
@@ -80,16 +80,17 @@ light.color=#45475A
mid.light.color=#45475A
dark.color=#181825
mid.color=#181825
-highlight.color=#B4BEFE
-inactive.highlight.color=#B4BEFE
+highlight.color=#B4BEFE4D
+inactive.highlight.color=#45475A
+tooltip.base.color=#181825
text.color=#CDD6F4
window.text.color=#CDD6F4
button.text.color=#CDD6F4
disabled.text.color=#585B70
tooltip.text.color=#CDD6F4
-highlight.text.color=#181825
-link.color=#F5E0DC
-link.visited.color=#89B4FA
+highlight.text.color=#CDD6F4
+link.color=#B4BEFE
+link.visited.color=#B9C3FC
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#181825
+text.press.color=#CDD6F4
+text.toggle.color=#CDD6F4
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#CDD6F4
text.focus.color=#CDD6F4
-text.press.color=#181825
-text.toggle.color=#181825
+text.press.color=#CDD6F4
+text.toggle.color=#CDD6F4
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#585B70
+text.normal.color=#9399B2
text.focus.color=#CDD6F4
text.press.color=#CDD6F4
text.toggle.color=#CDD6F4
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#CDD6F4
text.focus.color=#CDD6F4
-text.press.color=#181825
-text.toggle.color=#181825
+text.press.color=#CDD6F4
+text.toggle.color=#CDD6F4
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#CDD6F4
text.press.color=#CDD6F4
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#CDD6F4
text.toggle.color=#CDD6F4
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-mocha-lavender/catppuccin-mocha-lavender.svg b/config/kvantum/.config/Kvantum/catppuccin-mocha-lavender/catppuccin-mocha-lavender.svg
index 311513c..af01048 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-mocha-lavender/catppuccin-mocha-lavender.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-mocha-lavender/catppuccin-mocha-lavender.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-mocha-maroon/catppuccin-mocha-maroon.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-mocha-maroon/catppuccin-mocha-maroon.kvconfig
index fc86715..9c048b8 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-mocha-maroon/catppuccin-mocha-maroon.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-mocha-maroon/catppuccin-mocha-maroon.kvconfig
@@ -80,16 +80,17 @@ light.color=#45475A
mid.light.color=#45475A
dark.color=#181825
mid.color=#181825
-highlight.color=#EBA0AC
-inactive.highlight.color=#EBA0AC
+highlight.color=#EBA0AC4D
+inactive.highlight.color=#45475A
+tooltip.base.color=#181825
text.color=#CDD6F4
window.text.color=#CDD6F4
button.text.color=#CDD6F4
disabled.text.color=#585B70
tooltip.text.color=#CDD6F4
-highlight.text.color=#181825
-link.color=#F5E0DC
-link.visited.color=#89B4FA
+highlight.text.color=#CDD6F4
+link.color=#EBA0AC
+link.visited.color=#E5ABBB
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#181825
+text.press.color=#CDD6F4
+text.toggle.color=#CDD6F4
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#CDD6F4
text.focus.color=#CDD6F4
-text.press.color=#181825
-text.toggle.color=#181825
+text.press.color=#CDD6F4
+text.toggle.color=#CDD6F4
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#585B70
+text.normal.color=#9399B2
text.focus.color=#CDD6F4
text.press.color=#CDD6F4
text.toggle.color=#CDD6F4
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#CDD6F4
text.focus.color=#CDD6F4
-text.press.color=#181825
-text.toggle.color=#181825
+text.press.color=#CDD6F4
+text.toggle.color=#CDD6F4
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#CDD6F4
text.press.color=#CDD6F4
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#CDD6F4
text.toggle.color=#CDD6F4
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-mocha-maroon/catppuccin-mocha-maroon.svg b/config/kvantum/.config/Kvantum/catppuccin-mocha-maroon/catppuccin-mocha-maroon.svg
index 6f0856d..a61e39a 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-mocha-maroon/catppuccin-mocha-maroon.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-mocha-maroon/catppuccin-mocha-maroon.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-mocha-mauve/catppuccin-mocha-mauve.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-mocha-mauve/catppuccin-mocha-mauve.kvconfig
index e407662..785435a 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-mocha-mauve/catppuccin-mocha-mauve.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-mocha-mauve/catppuccin-mocha-mauve.kvconfig
@@ -80,16 +80,17 @@ light.color=#45475A
mid.light.color=#45475A
dark.color=#181825
mid.color=#181825
-highlight.color=#CBA6F7
-inactive.highlight.color=#CBA6F7
+highlight.color=#CBA6F74D
+inactive.highlight.color=#45475A
+tooltip.base.color=#181825
text.color=#CDD6F4
window.text.color=#CDD6F4
button.text.color=#CDD6F4
disabled.text.color=#585B70
tooltip.text.color=#CDD6F4
-highlight.text.color=#181825
-link.color=#F5E0DC
-link.visited.color=#89B4FA
+highlight.text.color=#CDD6F4
+link.color=#CBA6F7
+link.visited.color=#CBB0F7
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#181825
+text.press.color=#CDD6F4
+text.toggle.color=#CDD6F4
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#CDD6F4
text.focus.color=#CDD6F4
-text.press.color=#181825
-text.toggle.color=#181825
+text.press.color=#CDD6F4
+text.toggle.color=#CDD6F4
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#585B70
+text.normal.color=#9399B2
text.focus.color=#CDD6F4
text.press.color=#CDD6F4
text.toggle.color=#CDD6F4
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#CDD6F4
text.focus.color=#CDD6F4
-text.press.color=#181825
-text.toggle.color=#181825
+text.press.color=#CDD6F4
+text.toggle.color=#CDD6F4
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#CDD6F4
text.press.color=#CDD6F4
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#CDD6F4
text.toggle.color=#CDD6F4
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-mocha-mauve/catppuccin-mocha-mauve.svg b/config/kvantum/.config/Kvantum/catppuccin-mocha-mauve/catppuccin-mocha-mauve.svg
index fb79728..168e891 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-mocha-mauve/catppuccin-mocha-mauve.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-mocha-mauve/catppuccin-mocha-mauve.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-mocha-peach/catppuccin-mocha-peach.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-mocha-peach/catppuccin-mocha-peach.kvconfig
index a2bc9a2..c7ac44e 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-mocha-peach/catppuccin-mocha-peach.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-mocha-peach/catppuccin-mocha-peach.kvconfig
@@ -80,16 +80,17 @@ light.color=#45475A
mid.light.color=#45475A
dark.color=#181825
mid.color=#181825
-highlight.color=#FAB387
-inactive.highlight.color=#FAB387
+highlight.color=#FAB3874D
+inactive.highlight.color=#45475A
+tooltip.base.color=#181825
text.color=#CDD6F4
window.text.color=#CDD6F4
button.text.color=#CDD6F4
disabled.text.color=#585B70
tooltip.text.color=#CDD6F4
-highlight.text.color=#181825
-link.color=#F5E0DC
-link.visited.color=#89B4FA
+highlight.text.color=#CDD6F4
+link.color=#FAB387
+link.visited.color=#F1BA9D
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#181825
+text.press.color=#CDD6F4
+text.toggle.color=#CDD6F4
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#CDD6F4
text.focus.color=#CDD6F4
-text.press.color=#181825
-text.toggle.color=#181825
+text.press.color=#CDD6F4
+text.toggle.color=#CDD6F4
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#585B70
+text.normal.color=#9399B2
text.focus.color=#CDD6F4
text.press.color=#CDD6F4
text.toggle.color=#CDD6F4
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#CDD6F4
text.focus.color=#CDD6F4
-text.press.color=#181825
-text.toggle.color=#181825
+text.press.color=#CDD6F4
+text.toggle.color=#CDD6F4
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#CDD6F4
text.press.color=#CDD6F4
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#CDD6F4
text.toggle.color=#CDD6F4
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-mocha-peach/catppuccin-mocha-peach.svg b/config/kvantum/.config/Kvantum/catppuccin-mocha-peach/catppuccin-mocha-peach.svg
index ee661d8..cad5af7 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-mocha-peach/catppuccin-mocha-peach.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-mocha-peach/catppuccin-mocha-peach.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-mocha-pink/catppuccin-mocha-pink.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-mocha-pink/catppuccin-mocha-pink.kvconfig
index 171669a..daa8e91 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-mocha-pink/catppuccin-mocha-pink.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-mocha-pink/catppuccin-mocha-pink.kvconfig
@@ -80,16 +80,17 @@ light.color=#45475A
mid.light.color=#45475A
dark.color=#181825
mid.color=#181825
-highlight.color=#F5C2E7
-inactive.highlight.color=#F5C2E7
+highlight.color=#F5C2E74D
+inactive.highlight.color=#45475A
+tooltip.base.color=#181825
text.color=#CDD6F4
window.text.color=#CDD6F4
button.text.color=#CDD6F4
disabled.text.color=#585B70
tooltip.text.color=#CDD6F4
-highlight.text.color=#181825
-link.color=#F5E0DC
-link.visited.color=#89B4FA
+highlight.text.color=#CDD6F4
+link.color=#F5C2E7
+link.visited.color=#EDC6EA
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#181825
+text.press.color=#CDD6F4
+text.toggle.color=#CDD6F4
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#CDD6F4
text.focus.color=#CDD6F4
-text.press.color=#181825
-text.toggle.color=#181825
+text.press.color=#CDD6F4
+text.toggle.color=#CDD6F4
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#585B70
+text.normal.color=#9399B2
text.focus.color=#CDD6F4
text.press.color=#CDD6F4
text.toggle.color=#CDD6F4
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#CDD6F4
text.focus.color=#CDD6F4
-text.press.color=#181825
-text.toggle.color=#181825
+text.press.color=#CDD6F4
+text.toggle.color=#CDD6F4
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#CDD6F4
text.press.color=#CDD6F4
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#CDD6F4
text.toggle.color=#CDD6F4
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-mocha-pink/catppuccin-mocha-pink.svg b/config/kvantum/.config/Kvantum/catppuccin-mocha-pink/catppuccin-mocha-pink.svg
index fcabdd3..e21068f 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-mocha-pink/catppuccin-mocha-pink.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-mocha-pink/catppuccin-mocha-pink.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-mocha-red/catppuccin-mocha-red.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-mocha-red/catppuccin-mocha-red.kvconfig
index 37e86c0..43c3aeb 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-mocha-red/catppuccin-mocha-red.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-mocha-red/catppuccin-mocha-red.kvconfig
@@ -80,16 +80,17 @@ light.color=#45475A
mid.light.color=#45475A
dark.color=#181825
mid.color=#181825
-highlight.color=#F38BA8
-inactive.highlight.color=#F38BA8
+highlight.color=#F38BA84D
+inactive.highlight.color=#45475A
+tooltip.base.color=#181825
text.color=#CDD6F4
window.text.color=#CDD6F4
button.text.color=#CDD6F4
disabled.text.color=#585B70
tooltip.text.color=#CDD6F4
-highlight.text.color=#181825
-link.color=#F5E0DC
-link.visited.color=#89B4FA
+highlight.text.color=#CDD6F4
+link.color=#F38BA8
+link.visited.color=#EB9AB7
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#181825
+text.press.color=#CDD6F4
+text.toggle.color=#CDD6F4
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#CDD6F4
text.focus.color=#CDD6F4
-text.press.color=#181825
-text.toggle.color=#181825
+text.press.color=#CDD6F4
+text.toggle.color=#CDD6F4
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#585B70
+text.normal.color=#9399B2
text.focus.color=#CDD6F4
text.press.color=#CDD6F4
text.toggle.color=#CDD6F4
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#CDD6F4
text.focus.color=#CDD6F4
-text.press.color=#181825
-text.toggle.color=#181825
+text.press.color=#CDD6F4
+text.toggle.color=#CDD6F4
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#CDD6F4
text.press.color=#CDD6F4
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#CDD6F4
text.toggle.color=#CDD6F4
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-mocha-red/catppuccin-mocha-red.svg b/config/kvantum/.config/Kvantum/catppuccin-mocha-red/catppuccin-mocha-red.svg
index 581d5e7..b435c6f 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-mocha-red/catppuccin-mocha-red.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-mocha-red/catppuccin-mocha-red.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-mocha-rosewater/catppuccin-mocha-rosewater.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-mocha-rosewater/catppuccin-mocha-rosewater.kvconfig
index c883a88..ca7c750 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-mocha-rosewater/catppuccin-mocha-rosewater.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-mocha-rosewater/catppuccin-mocha-rosewater.kvconfig
@@ -80,16 +80,17 @@ light.color=#45475A
mid.light.color=#45475A
dark.color=#181825
mid.color=#181825
-highlight.color=#F5E0DC
-inactive.highlight.color=#F5E0DC
+highlight.color=#F5E0DC4D
+inactive.highlight.color=#45475A
+tooltip.base.color=#181825
text.color=#CDD6F4
window.text.color=#CDD6F4
button.text.color=#CDD6F4
disabled.text.color=#585B70
tooltip.text.color=#CDD6F4
-highlight.text.color=#181825
+highlight.text.color=#CDD6F4
link.color=#F5E0DC
-link.visited.color=#89B4FA
+link.visited.color=#EDDEE1
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#181825
+text.press.color=#CDD6F4
+text.toggle.color=#CDD6F4
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#CDD6F4
text.focus.color=#CDD6F4
-text.press.color=#181825
-text.toggle.color=#181825
+text.press.color=#CDD6F4
+text.toggle.color=#CDD6F4
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#585B70
+text.normal.color=#9399B2
text.focus.color=#CDD6F4
text.press.color=#CDD6F4
text.toggle.color=#CDD6F4
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#CDD6F4
text.focus.color=#CDD6F4
-text.press.color=#181825
-text.toggle.color=#181825
+text.press.color=#CDD6F4
+text.toggle.color=#CDD6F4
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#CDD6F4
text.press.color=#CDD6F4
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#CDD6F4
text.toggle.color=#CDD6F4
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-mocha-rosewater/catppuccin-mocha-rosewater.svg b/config/kvantum/.config/Kvantum/catppuccin-mocha-rosewater/catppuccin-mocha-rosewater.svg
index 1adad50..4a8d0d5 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-mocha-rosewater/catppuccin-mocha-rosewater.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-mocha-rosewater/catppuccin-mocha-rosewater.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-mocha-sapphire/catppuccin-mocha-sapphire.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-mocha-sapphire/catppuccin-mocha-sapphire.kvconfig
index 8190702..0c2b294 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-mocha-sapphire/catppuccin-mocha-sapphire.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-mocha-sapphire/catppuccin-mocha-sapphire.kvconfig
@@ -80,16 +80,17 @@ light.color=#45475A
mid.light.color=#45475A
dark.color=#181825
mid.color=#181825
-highlight.color=#74C7EC
-inactive.highlight.color=#74C7EC
+highlight.color=#74C7EC4D
+inactive.highlight.color=#45475A
+tooltip.base.color=#181825
text.color=#CDD6F4
window.text.color=#CDD6F4
button.text.color=#CDD6F4
disabled.text.color=#585B70
tooltip.text.color=#CDD6F4
-highlight.text.color=#181825
-link.color=#F5E0DC
-link.visited.color=#89B4FA
+highlight.text.color=#CDD6F4
+link.color=#74C7EC
+link.visited.color=#86CAEE
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#181825
+text.press.color=#CDD6F4
+text.toggle.color=#CDD6F4
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#CDD6F4
text.focus.color=#CDD6F4
-text.press.color=#181825
-text.toggle.color=#181825
+text.press.color=#CDD6F4
+text.toggle.color=#CDD6F4
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#585B70
+text.normal.color=#9399B2
text.focus.color=#CDD6F4
text.press.color=#CDD6F4
text.toggle.color=#CDD6F4
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#CDD6F4
text.focus.color=#CDD6F4
-text.press.color=#181825
-text.toggle.color=#181825
+text.press.color=#CDD6F4
+text.toggle.color=#CDD6F4
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#CDD6F4
text.press.color=#CDD6F4
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#CDD6F4
text.toggle.color=#CDD6F4
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-mocha-sapphire/catppuccin-mocha-sapphire.svg b/config/kvantum/.config/Kvantum/catppuccin-mocha-sapphire/catppuccin-mocha-sapphire.svg
index 1810fa9..2d549b9 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-mocha-sapphire/catppuccin-mocha-sapphire.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-mocha-sapphire/catppuccin-mocha-sapphire.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-mocha-sky/catppuccin-mocha-sky.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-mocha-sky/catppuccin-mocha-sky.kvconfig
index c717e41..5d0d918 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-mocha-sky/catppuccin-mocha-sky.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-mocha-sky/catppuccin-mocha-sky.kvconfig
@@ -80,16 +80,17 @@ light.color=#45475A
mid.light.color=#45475A
dark.color=#181825
mid.color=#181825
-highlight.color=#89DCEB
-inactive.highlight.color=#89DCEB
+highlight.color=#89DCEB4D
+inactive.highlight.color=#45475A
+tooltip.base.color=#181825
text.color=#CDD6F4
window.text.color=#CDD6F4
button.text.color=#CDD6F4
disabled.text.color=#585B70
tooltip.text.color=#CDD6F4
-highlight.text.color=#181825
-link.color=#F5E0DC
-link.visited.color=#89B4FA
+highlight.text.color=#CDD6F4
+link.color=#89DCEB
+link.visited.color=#97DBED
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#181825
+text.press.color=#CDD6F4
+text.toggle.color=#CDD6F4
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#CDD6F4
text.focus.color=#CDD6F4
-text.press.color=#181825
-text.toggle.color=#181825
+text.press.color=#CDD6F4
+text.toggle.color=#CDD6F4
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#585B70
+text.normal.color=#9399B2
text.focus.color=#CDD6F4
text.press.color=#CDD6F4
text.toggle.color=#CDD6F4
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#CDD6F4
text.focus.color=#CDD6F4
-text.press.color=#181825
-text.toggle.color=#181825
+text.press.color=#CDD6F4
+text.toggle.color=#CDD6F4
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#CDD6F4
text.press.color=#CDD6F4
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#CDD6F4
text.toggle.color=#CDD6F4
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-mocha-sky/catppuccin-mocha-sky.svg b/config/kvantum/.config/Kvantum/catppuccin-mocha-sky/catppuccin-mocha-sky.svg
index 976a45f..a41bbb2 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-mocha-sky/catppuccin-mocha-sky.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-mocha-sky/catppuccin-mocha-sky.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-mocha-teal/catppuccin-mocha-teal.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-mocha-teal/catppuccin-mocha-teal.kvconfig
index e639432..bb0f453 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-mocha-teal/catppuccin-mocha-teal.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-mocha-teal/catppuccin-mocha-teal.kvconfig
@@ -80,16 +80,17 @@ light.color=#45475A
mid.light.color=#45475A
dark.color=#181825
mid.color=#181825
-highlight.color=#94E2D5
-inactive.highlight.color=#94E2D5
+highlight.color=#94E2D54D
+inactive.highlight.color=#45475A
+tooltip.base.color=#181825
text.color=#CDD6F4
window.text.color=#CDD6F4
button.text.color=#CDD6F4
disabled.text.color=#585B70
tooltip.text.color=#CDD6F4
-highlight.text.color=#181825
-link.color=#F5E0DC
-link.visited.color=#89B4FA
+highlight.text.color=#CDD6F4
+link.color=#94E2D5
+link.visited.color=#9FE0DB
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#181825
+text.press.color=#CDD6F4
+text.toggle.color=#CDD6F4
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#CDD6F4
text.focus.color=#CDD6F4
-text.press.color=#181825
-text.toggle.color=#181825
+text.press.color=#CDD6F4
+text.toggle.color=#CDD6F4
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#585B70
+text.normal.color=#9399B2
text.focus.color=#CDD6F4
text.press.color=#CDD6F4
text.toggle.color=#CDD6F4
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#CDD6F4
text.focus.color=#CDD6F4
-text.press.color=#181825
-text.toggle.color=#181825
+text.press.color=#CDD6F4
+text.toggle.color=#CDD6F4
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#CDD6F4
text.press.color=#CDD6F4
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#CDD6F4
text.toggle.color=#CDD6F4
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-mocha-teal/catppuccin-mocha-teal.svg b/config/kvantum/.config/Kvantum/catppuccin-mocha-teal/catppuccin-mocha-teal.svg
index 9a08709..6838274 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-mocha-teal/catppuccin-mocha-teal.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-mocha-teal/catppuccin-mocha-teal.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/catppuccin-mocha-yellow/catppuccin-mocha-yellow.kvconfig b/config/kvantum/.config/Kvantum/catppuccin-mocha-yellow/catppuccin-mocha-yellow.kvconfig
index cd7a546..3f5586a 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-mocha-yellow/catppuccin-mocha-yellow.kvconfig
+++ b/config/kvantum/.config/Kvantum/catppuccin-mocha-yellow/catppuccin-mocha-yellow.kvconfig
@@ -80,16 +80,17 @@ light.color=#45475A
mid.light.color=#45475A
dark.color=#181825
mid.color=#181825
-highlight.color=#F9E2AF
-inactive.highlight.color=#F9E2AF
+highlight.color=#F9E2AF4D
+inactive.highlight.color=#45475A
+tooltip.base.color=#181825
text.color=#CDD6F4
window.text.color=#CDD6F4
button.text.color=#CDD6F4
disabled.text.color=#585B70
tooltip.text.color=#CDD6F4
-highlight.text.color=#181825
-link.color=#F5E0DC
-link.visited.color=#89B4FA
+highlight.text.color=#CDD6F4
+link.color=#F9E2AF
+link.visited.color=#F0E0BD
[ItemView]
inherits=PanelButtonCommand
@@ -98,7 +99,8 @@ interior.element=itemview
frame=true
interior=true
text.iconspacing=3
-text.toggle.color=#181825
+text.press.color=#CDD6F4
+text.toggle.color=#CDD6F4
[RadioButton]
inherits=PanelButtonCommand
@@ -127,8 +129,8 @@ interior.element=button
frame.element=button
text.normal.color=#CDD6F4
text.focus.color=#CDD6F4
-text.press.color=#181825
-text.toggle.color=#181825
+text.press.color=#CDD6F4
+text.toggle.color=#CDD6F4
[PanelButtonTool]
inherits=PanelButtonCommand
@@ -230,7 +232,7 @@ frame.bottom=3
frame.left=3
frame.right=3
indicator.size=10
-text.normal.color=#585B70
+text.normal.color=#9399B2
text.focus.color=#CDD6F4
text.press.color=#CDD6F4
text.toggle.color=#CDD6F4
@@ -312,10 +314,14 @@ interior.element=tbutton
indicator.element=arrow
text.normal.color=#CDD6F4
text.focus.color=#CDD6F4
-text.press.color=#181825
-text.toggle.color=#181825
+text.press.color=#CDD6F4
+text.toggle.color=#CDD6F4
text.bold=false
+[ToolbarLineEdit]
+frame.element=lineedit
+interior.element=lineedit
+
[Scrollbar]
inherits=PanelButtonCommand
indicator.size=0
@@ -381,6 +387,10 @@ frame.right=3
inherits=PanelButtonCommand
interior.element=menuitem
indicator.size=8
+frame=true
+frame.element=menuitem
+frame.right=10
+frame.left=10
text.focus.color=#CDD6F4
text.press.color=#CDD6F4
@@ -422,6 +432,7 @@ text.margin.top=1
text.margin.bottom=1
text.margin.left=3
text.margin.right=3
+text.press.color=#CDD6F4
text.toggle.color=#CDD6F4
[ToolboxTab]
@@ -451,7 +462,7 @@ blur_translucent=true
centered_forms=false
kinetic_scrolling=false
middle_click_scroll=false
-no_selection_tint=false
+no_selection_tint=true
noninteger_translucency=false
style_vertical_toolbars=false
blur_only_active_window=false
diff --git a/config/kvantum/.config/Kvantum/catppuccin-mocha-yellow/catppuccin-mocha-yellow.svg b/config/kvantum/.config/Kvantum/catppuccin-mocha-yellow/catppuccin-mocha-yellow.svg
index 38055fc..81bf8af 100644
--- a/config/kvantum/.config/Kvantum/catppuccin-mocha-yellow/catppuccin-mocha-yellow.svg
+++ b/config/kvantum/.config/Kvantum/catppuccin-mocha-yellow/catppuccin-mocha-yellow.svg
@@ -193,40 +193,41 @@
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -258,8 +259,8 @@
-
-
+
+
@@ -275,46 +276,46 @@
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -415,63 +416,63 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
@@ -507,32 +508,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -566,28 +567,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -868,10 +869,10 @@
-
+
-
-
+
+
@@ -1193,7 +1194,7 @@
-
+
@@ -1202,8 +1203,8 @@
-
-
+
+
@@ -1216,7 +1217,7 @@
-
+
@@ -1225,7 +1226,7 @@
-
+
@@ -1240,21 +1241,21 @@
-
+
-
+
-
+
@@ -1266,7 +1267,7 @@
-
+
@@ -1278,7 +1279,7 @@
-
+
@@ -1289,7 +1290,7 @@
-
+
@@ -1298,8 +1299,8 @@
-
-
+
+
@@ -1312,7 +1313,7 @@
-
+
@@ -1321,7 +1322,7 @@
-
+
@@ -1335,7 +1336,7 @@
-
+
@@ -1350,14 +1351,14 @@
-
+
-
+
-
+
@@ -1465,7 +1466,7 @@
-
+
@@ -1816,69 +1817,69 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/config/kvantum/.config/Kvantum/kvantum.kvconfig b/config/kvantum/.config/Kvantum/kvantum.kvconfig
index f1f65c2..11c9853 100644
--- a/config/kvantum/.config/Kvantum/kvantum.kvconfig
+++ b/config/kvantum/.config/Kvantum/kvantum.kvconfig
@@ -1,2 +1,2 @@
[General]
-theme=catppuccin-mocha-blue
+theme=catppuccin-mocha-pink
diff --git a/config/niri/.config/niri/config/binds.kdl b/config/niri/.config/niri/config/binds.kdl
index a989459..c05130e 100644
--- a/config/niri/.config/niri/config/binds.kdl
+++ b/config/niri/.config/niri/config/binds.kdl
@@ -11,8 +11,8 @@ recent-windows {
binds {
// Apps
Mod+C repeat=false { spawn "code"; }
- Mod+E repeat=false { spawn "dolphin" "--new-window"; }
- Mod+Shift+E repeat=false { spawn "nautilus" "--new-window"; }
+ Mod+E repeat=false { spawn "nautilus" "--new-window"; }
+ Mod+Shift+E repeat=false { spawn "dolphin" "--new-window"; }
Mod+W repeat=false { spawn-sh "zen || zen-browser"; }
Mod+B repeat=false { spawn-sh "pkill -x -n btop || kitty-floating -e btop"; }
Mod+Shift+T repeat=false { spawn "kitty-floating"; }
diff --git a/config/niri/.config/niri/config/envs.kdl b/config/niri/.config/niri/config/envs.kdl
index a85cea6..a8f4568 100644
--- a/config/niri/.config/niri/config/envs.kdl
+++ b/config/niri/.config/niri/config/envs.kdl
@@ -8,14 +8,13 @@ environment {
// Themes
QT_QPA_PLATFORM "wayland"
- QT_QPA_PLATFORMTHEME "kde" // looks nicer than kvantum
- QT_STYLE_OVERRIDE "Kvantum"
+ QT_QPA_PLATFORMTHEME "kde"
+ // QT_STYLE_OVERRIDE "kvantum"
// Nvidia
LIBVA_DRIVER_NAME "nvidia"
NVD_BACKEND "nvidia"
GBM_BACKEND "nvidia-drm"
- WLR_NO_HARDWARE_CURSORS "1"
// Fix Swing
_JAVA_AWT_WM_NONREPARENTING "1"
diff --git a/config/nwg-look/.config/gtk-3.0/colors.css b/config/nwg-look/.config/gtk-3.0/colors.css
index 0762b5a..7033ca0 100644
--- a/config/nwg-look/.config/gtk-3.0/colors.css
+++ b/config/nwg-look/.config/gtk-3.0/colors.css
@@ -15,7 +15,7 @@
@define-color insensitive_unfocused_fg_color_breeze #999fb9;
@define-color insensitive_unfocused_selected_bg_color_breeze #1a1a28;
@define-color insensitive_unfocused_selected_fg_color_breeze #999fb9;
-@define-color link_color_breeze #89b4fa;
+@define-color link_color_breeze #f5c2e7;
@define-color link_visited_color_breeze #cba6f7;
@define-color success_color_backdrop_breeze #728396;
@define-color success_color_breeze #a6e3a1;
@@ -27,15 +27,15 @@
@define-color theme_button_background_backdrop_insensitive_breeze #2b2c3d;
@define-color theme_button_background_insensitive_breeze #2b2c3d;
@define-color theme_button_background_normal_breeze #313244;
-@define-color theme_button_decoration_focus_backdrop_breeze #6773a7;
-@define-color theme_button_decoration_focus_backdrop_insensitive_breeze #6987bd;
-@define-color theme_button_decoration_focus_breeze #89b4fa;
-@define-color theme_button_decoration_focus_insensitive_breeze #6987bd;
-@define-color theme_button_decoration_hover_backdrop_breeze #202031;
-@define-color theme_button_decoration_hover_backdrop_insensitive_breeze #2b2c3d;
-@define-color theme_button_decoration_hover_breeze #313244;
-@define-color theme_button_decoration_hover_insensitive_breeze #2b2c3d;
-@define-color theme_button_foreground_active_backdrop_breeze #808194;
+@define-color theme_button_decoration_focus_backdrop_breeze #847d96;
+@define-color theme_button_decoration_focus_backdrop_insensitive_breeze #b591b0;
+@define-color theme_button_decoration_focus_breeze #f5c2e7;
+@define-color theme_button_decoration_focus_insensitive_breeze #b591b0;
+@define-color theme_button_decoration_hover_backdrop_breeze #33344c;
+@define-color theme_button_decoration_hover_backdrop_insensitive_breeze #393b4d;
+@define-color theme_button_decoration_hover_breeze #45475a;
+@define-color theme_button_decoration_hover_insensitive_breeze #393b4d;
+@define-color theme_button_foreground_active_backdrop_breeze #1e1e2e;
@define-color theme_button_foreground_active_backdrop_insensitive_breeze #999fb9;
@define-color theme_button_foreground_active_breeze #11111b;
@define-color theme_button_foreground_active_insensitive_breeze #999fb9;
@@ -51,8 +51,8 @@
@define-color theme_header_foreground_breeze #cdd6f4;
@define-color theme_header_foreground_insensitive_backdrop_breeze #808194;
@define-color theme_header_foreground_insensitive_breeze #808194;
-@define-color theme_hovering_selected_bg_color_breeze #313244;
-@define-color theme_selected_bg_color_breeze #89b4fa;
+@define-color theme_hovering_selected_bg_color_breeze #45475a;
+@define-color theme_selected_bg_color_breeze #f5c2e7;
@define-color theme_selected_fg_color_breeze #11111b;
@define-color theme_text_color_breeze #cdd6f4;
@define-color theme_titlebar_background_backdrop_breeze #1e1e2e;
@@ -65,14 +65,14 @@
@define-color theme_unfocused_base_color_breeze #1e1e2e;
@define-color theme_unfocused_bg_color_breeze #1e1e2e;
@define-color theme_unfocused_fg_color_breeze #808194;
-@define-color theme_unfocused_selected_bg_color_alt_breeze #28293f;
-@define-color theme_unfocused_selected_bg_color_breeze #28293f;
-@define-color theme_unfocused_selected_fg_color_breeze #808194;
+@define-color theme_unfocused_selected_bg_color_alt_breeze #847d96;
+@define-color theme_unfocused_selected_bg_color_breeze #847d96;
+@define-color theme_unfocused_selected_fg_color_breeze #1e1e2e;
@define-color theme_unfocused_text_color_breeze #808194;
@define-color theme_unfocused_view_bg_color_breeze #1e1e2e;
@define-color theme_unfocused_view_text_color_breeze #999fb9;
-@define-color theme_view_active_decoration_color_breeze #313244;
-@define-color theme_view_hover_decoration_color_breeze #313244;
+@define-color theme_view_active_decoration_color_breeze #45475a;
+@define-color theme_view_hover_decoration_color_breeze #45475a;
@define-color tooltip_background_breeze #1e1e2e;
@define-color tooltip_border_breeze #414356;
@define-color tooltip_text_breeze #cdd6f4;
diff --git a/config/nwg-look/.config/gtk-4.0/colors.css b/config/nwg-look/.config/gtk-4.0/colors.css
index 0762b5a..7033ca0 100644
--- a/config/nwg-look/.config/gtk-4.0/colors.css
+++ b/config/nwg-look/.config/gtk-4.0/colors.css
@@ -15,7 +15,7 @@
@define-color insensitive_unfocused_fg_color_breeze #999fb9;
@define-color insensitive_unfocused_selected_bg_color_breeze #1a1a28;
@define-color insensitive_unfocused_selected_fg_color_breeze #999fb9;
-@define-color link_color_breeze #89b4fa;
+@define-color link_color_breeze #f5c2e7;
@define-color link_visited_color_breeze #cba6f7;
@define-color success_color_backdrop_breeze #728396;
@define-color success_color_breeze #a6e3a1;
@@ -27,15 +27,15 @@
@define-color theme_button_background_backdrop_insensitive_breeze #2b2c3d;
@define-color theme_button_background_insensitive_breeze #2b2c3d;
@define-color theme_button_background_normal_breeze #313244;
-@define-color theme_button_decoration_focus_backdrop_breeze #6773a7;
-@define-color theme_button_decoration_focus_backdrop_insensitive_breeze #6987bd;
-@define-color theme_button_decoration_focus_breeze #89b4fa;
-@define-color theme_button_decoration_focus_insensitive_breeze #6987bd;
-@define-color theme_button_decoration_hover_backdrop_breeze #202031;
-@define-color theme_button_decoration_hover_backdrop_insensitive_breeze #2b2c3d;
-@define-color theme_button_decoration_hover_breeze #313244;
-@define-color theme_button_decoration_hover_insensitive_breeze #2b2c3d;
-@define-color theme_button_foreground_active_backdrop_breeze #808194;
+@define-color theme_button_decoration_focus_backdrop_breeze #847d96;
+@define-color theme_button_decoration_focus_backdrop_insensitive_breeze #b591b0;
+@define-color theme_button_decoration_focus_breeze #f5c2e7;
+@define-color theme_button_decoration_focus_insensitive_breeze #b591b0;
+@define-color theme_button_decoration_hover_backdrop_breeze #33344c;
+@define-color theme_button_decoration_hover_backdrop_insensitive_breeze #393b4d;
+@define-color theme_button_decoration_hover_breeze #45475a;
+@define-color theme_button_decoration_hover_insensitive_breeze #393b4d;
+@define-color theme_button_foreground_active_backdrop_breeze #1e1e2e;
@define-color theme_button_foreground_active_backdrop_insensitive_breeze #999fb9;
@define-color theme_button_foreground_active_breeze #11111b;
@define-color theme_button_foreground_active_insensitive_breeze #999fb9;
@@ -51,8 +51,8 @@
@define-color theme_header_foreground_breeze #cdd6f4;
@define-color theme_header_foreground_insensitive_backdrop_breeze #808194;
@define-color theme_header_foreground_insensitive_breeze #808194;
-@define-color theme_hovering_selected_bg_color_breeze #313244;
-@define-color theme_selected_bg_color_breeze #89b4fa;
+@define-color theme_hovering_selected_bg_color_breeze #45475a;
+@define-color theme_selected_bg_color_breeze #f5c2e7;
@define-color theme_selected_fg_color_breeze #11111b;
@define-color theme_text_color_breeze #cdd6f4;
@define-color theme_titlebar_background_backdrop_breeze #1e1e2e;
@@ -65,14 +65,14 @@
@define-color theme_unfocused_base_color_breeze #1e1e2e;
@define-color theme_unfocused_bg_color_breeze #1e1e2e;
@define-color theme_unfocused_fg_color_breeze #808194;
-@define-color theme_unfocused_selected_bg_color_alt_breeze #28293f;
-@define-color theme_unfocused_selected_bg_color_breeze #28293f;
-@define-color theme_unfocused_selected_fg_color_breeze #808194;
+@define-color theme_unfocused_selected_bg_color_alt_breeze #847d96;
+@define-color theme_unfocused_selected_bg_color_breeze #847d96;
+@define-color theme_unfocused_selected_fg_color_breeze #1e1e2e;
@define-color theme_unfocused_text_color_breeze #808194;
@define-color theme_unfocused_view_bg_color_breeze #1e1e2e;
@define-color theme_unfocused_view_text_color_breeze #999fb9;
-@define-color theme_view_active_decoration_color_breeze #313244;
-@define-color theme_view_hover_decoration_color_breeze #313244;
+@define-color theme_view_active_decoration_color_breeze #45475a;
+@define-color theme_view_hover_decoration_color_breeze #45475a;
@define-color tooltip_background_breeze #1e1e2e;
@define-color tooltip_border_breeze #414356;
@define-color tooltip_text_breeze #cdd6f4;
diff --git a/config/qt6/.config/kdeglobals.apply/apply-color b/config/qt6/.config/kdeglobals.apply/apply-color
new file mode 100755
index 0000000..a1af42e
--- /dev/null
+++ b/config/qt6/.config/kdeglobals.apply/apply-color
@@ -0,0 +1,28 @@
+#!/bin/bash
+
+[ -f "$HOME/.local/snippets/apply-color-helper" ] || {
+ echo "Missing helper script: $HOME/.local/snippets/apply-color-helper"
+ exit 1
+}
+. "$HOME/.local/snippets/apply-color-helper"
+
+scheme=$(echo "${palette}-${colorName}" | sed -E 's/(^|-)([a-z])/\U\2/g')
+
+[ -f "$HOME/.local/share/color-schemes/${scheme}.colors" ] || {
+ log_error "No such color scheme: ${scheme}"
+ exit 1
+}
+
+plasma-apply-colorscheme "$scheme" >/dev/null 2>&1 || {
+ log_error "Failed to apply ${scheme}"
+ exit 1
+}
+
+plasma-apply-colorscheme -a "#${colorHex}" >/dev/null 2>&1
+
+kwriteconfig6 --notify --file kdeglobals --group KDE --key widgetStyle Breeze >/dev/null 2>&1 || {
+ log_error "Failed to set widget style"
+ exit 1
+}
+
+log_success "qt6"
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinFrappeBlue.colors b/config/qt6/.local/share/color-schemes/CatppuccinFrappeBlue.colors
new file mode 100644
index 0000000..dc48f8c
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinFrappeBlue.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=48, 52, 70
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=48, 52, 70
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=140, 170, 238
+BackgroundNormal=65, 69, 89
+DecorationFocus=140, 170, 238
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=140, 170, 238
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Complementary]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=41, 44, 60
+DecorationFocus=140, 170, 238
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=140, 170, 238
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Header]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=41, 44, 60
+DecorationFocus=140, 170, 238
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=140, 170, 238
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Selection]
+BackgroundAlternate=140, 170, 238
+BackgroundNormal=140, 170, 238
+DecorationFocus=140, 170, 238
+DecorationHover=81, 87, 109
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=48, 52, 70
+DecorationFocus=140, 170, 238
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=140, 170, 238
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:View]
+BackgroundAlternate=41, 44, 60
+BackgroundNormal=48, 52, 70
+DecorationFocus=140, 170, 238
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=140, 170, 238
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Window]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=41, 44, 60
+DecorationFocus=140, 170, 238
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=140, 170, 238
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[General]
+ColorScheme=CatppuccinFrappeBlue
+Name=Catppuccin Frappe Blue
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=48, 52, 70
+activeBlend=198, 208, 245
+activeForeground=198, 208, 245
+inactiveBackground=35, 38, 52
+inactiveBlend=165, 173, 206
+inactiveForeground=165, 173, 206
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinFrappeFlamingo.colors b/config/qt6/.local/share/color-schemes/CatppuccinFrappeFlamingo.colors
new file mode 100644
index 0000000..efabc54
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinFrappeFlamingo.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=48, 52, 70
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=48, 52, 70
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=238, 190, 190
+BackgroundNormal=65, 69, 89
+DecorationFocus=238, 190, 190
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=238, 190, 190
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Complementary]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=41, 44, 60
+DecorationFocus=238, 190, 190
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=238, 190, 190
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Header]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=41, 44, 60
+DecorationFocus=238, 190, 190
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=238, 190, 190
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Selection]
+BackgroundAlternate=238, 190, 190
+BackgroundNormal=238, 190, 190
+DecorationFocus=238, 190, 190
+DecorationHover=81, 87, 109
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=48, 52, 70
+DecorationFocus=238, 190, 190
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=238, 190, 190
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:View]
+BackgroundAlternate=41, 44, 60
+BackgroundNormal=48, 52, 70
+DecorationFocus=238, 190, 190
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=238, 190, 190
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Window]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=41, 44, 60
+DecorationFocus=238, 190, 190
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=238, 190, 190
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[General]
+ColorScheme=CatppuccinFrappeFlamingo
+Name=Catppuccin Frappe Flamingo
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=48, 52, 70
+activeBlend=198, 208, 245
+activeForeground=198, 208, 245
+inactiveBackground=35, 38, 52
+inactiveBlend=165, 173, 206
+inactiveForeground=165, 173, 206
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinFrappeGreen.colors b/config/qt6/.local/share/color-schemes/CatppuccinFrappeGreen.colors
new file mode 100644
index 0000000..d0a1357
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinFrappeGreen.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=48, 52, 70
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=48, 52, 70
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=166, 209, 137
+BackgroundNormal=65, 69, 89
+DecorationFocus=166, 209, 137
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=166, 209, 137
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Complementary]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=41, 44, 60
+DecorationFocus=166, 209, 137
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=166, 209, 137
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Header]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=41, 44, 60
+DecorationFocus=166, 209, 137
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=166, 209, 137
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Selection]
+BackgroundAlternate=166, 209, 137
+BackgroundNormal=166, 209, 137
+DecorationFocus=166, 209, 137
+DecorationHover=81, 87, 109
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=48, 52, 70
+DecorationFocus=166, 209, 137
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=166, 209, 137
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:View]
+BackgroundAlternate=41, 44, 60
+BackgroundNormal=48, 52, 70
+DecorationFocus=166, 209, 137
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=166, 209, 137
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Window]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=41, 44, 60
+DecorationFocus=166, 209, 137
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=166, 209, 137
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[General]
+ColorScheme=CatppuccinFrappeGreen
+Name=Catppuccin Frappe Green
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=48, 52, 70
+activeBlend=198, 208, 245
+activeForeground=198, 208, 245
+inactiveBackground=35, 38, 52
+inactiveBlend=165, 173, 206
+inactiveForeground=165, 173, 206
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinFrappeLavender.colors b/config/qt6/.local/share/color-schemes/CatppuccinFrappeLavender.colors
new file mode 100644
index 0000000..418f0a8
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinFrappeLavender.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=48, 52, 70
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=48, 52, 70
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=186, 187, 241
+BackgroundNormal=65, 69, 89
+DecorationFocus=186, 187, 241
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=186, 187, 241
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Complementary]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=41, 44, 60
+DecorationFocus=186, 187, 241
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=186, 187, 241
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Header]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=41, 44, 60
+DecorationFocus=186, 187, 241
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=186, 187, 241
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Selection]
+BackgroundAlternate=186, 187, 241
+BackgroundNormal=186, 187, 241
+DecorationFocus=186, 187, 241
+DecorationHover=81, 87, 109
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=48, 52, 70
+DecorationFocus=186, 187, 241
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=186, 187, 241
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:View]
+BackgroundAlternate=41, 44, 60
+BackgroundNormal=48, 52, 70
+DecorationFocus=186, 187, 241
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=186, 187, 241
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Window]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=41, 44, 60
+DecorationFocus=186, 187, 241
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=186, 187, 241
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[General]
+ColorScheme=CatppuccinFrappeLavender
+Name=Catppuccin Frappe Lavender
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=48, 52, 70
+activeBlend=198, 208, 245
+activeForeground=198, 208, 245
+inactiveBackground=35, 38, 52
+inactiveBlend=165, 173, 206
+inactiveForeground=165, 173, 206
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinFrappeMaroon.colors b/config/qt6/.local/share/color-schemes/CatppuccinFrappeMaroon.colors
new file mode 100644
index 0000000..33990b9
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinFrappeMaroon.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=48, 52, 70
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=48, 52, 70
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=234, 153, 156
+BackgroundNormal=65, 69, 89
+DecorationFocus=234, 153, 156
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=234, 153, 156
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Complementary]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=41, 44, 60
+DecorationFocus=234, 153, 156
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=234, 153, 156
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Header]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=41, 44, 60
+DecorationFocus=234, 153, 156
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=234, 153, 156
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Selection]
+BackgroundAlternate=234, 153, 156
+BackgroundNormal=234, 153, 156
+DecorationFocus=234, 153, 156
+DecorationHover=81, 87, 109
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=48, 52, 70
+DecorationFocus=234, 153, 156
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=234, 153, 156
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:View]
+BackgroundAlternate=41, 44, 60
+BackgroundNormal=48, 52, 70
+DecorationFocus=234, 153, 156
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=234, 153, 156
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Window]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=41, 44, 60
+DecorationFocus=234, 153, 156
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=234, 153, 156
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[General]
+ColorScheme=CatppuccinFrappeMaroon
+Name=Catppuccin Frappe Maroon
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=48, 52, 70
+activeBlend=198, 208, 245
+activeForeground=198, 208, 245
+inactiveBackground=35, 38, 52
+inactiveBlend=165, 173, 206
+inactiveForeground=165, 173, 206
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinFrappeMauve.colors b/config/qt6/.local/share/color-schemes/CatppuccinFrappeMauve.colors
new file mode 100644
index 0000000..18107d2
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinFrappeMauve.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=48, 52, 70
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=48, 52, 70
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=202, 158, 230
+BackgroundNormal=65, 69, 89
+DecorationFocus=202, 158, 230
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=202, 158, 230
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Complementary]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=41, 44, 60
+DecorationFocus=202, 158, 230
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=202, 158, 230
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Header]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=41, 44, 60
+DecorationFocus=202, 158, 230
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=202, 158, 230
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Selection]
+BackgroundAlternate=202, 158, 230
+BackgroundNormal=202, 158, 230
+DecorationFocus=202, 158, 230
+DecorationHover=81, 87, 109
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=48, 52, 70
+DecorationFocus=202, 158, 230
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=202, 158, 230
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:View]
+BackgroundAlternate=41, 44, 60
+BackgroundNormal=48, 52, 70
+DecorationFocus=202, 158, 230
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=202, 158, 230
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Window]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=41, 44, 60
+DecorationFocus=202, 158, 230
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=202, 158, 230
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[General]
+ColorScheme=CatppuccinFrappeMauve
+Name=Catppuccin Frappe Mauve
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=48, 52, 70
+activeBlend=198, 208, 245
+activeForeground=198, 208, 245
+inactiveBackground=35, 38, 52
+inactiveBlend=165, 173, 206
+inactiveForeground=165, 173, 206
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinFrappePeach.colors b/config/qt6/.local/share/color-schemes/CatppuccinFrappePeach.colors
new file mode 100644
index 0000000..fcd8458
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinFrappePeach.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=48, 52, 70
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=48, 52, 70
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=239, 159, 118
+BackgroundNormal=65, 69, 89
+DecorationFocus=239, 159, 118
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=239, 159, 118
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Complementary]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=41, 44, 60
+DecorationFocus=239, 159, 118
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=239, 159, 118
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Header]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=41, 44, 60
+DecorationFocus=239, 159, 118
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=239, 159, 118
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Selection]
+BackgroundAlternate=239, 159, 118
+BackgroundNormal=239, 159, 118
+DecorationFocus=239, 159, 118
+DecorationHover=81, 87, 109
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=48, 52, 70
+DecorationFocus=239, 159, 118
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=239, 159, 118
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:View]
+BackgroundAlternate=41, 44, 60
+BackgroundNormal=48, 52, 70
+DecorationFocus=239, 159, 118
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=239, 159, 118
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Window]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=41, 44, 60
+DecorationFocus=239, 159, 118
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=239, 159, 118
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[General]
+ColorScheme=CatppuccinFrappePeach
+Name=Catppuccin Frappe Peach
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=48, 52, 70
+activeBlend=198, 208, 245
+activeForeground=198, 208, 245
+inactiveBackground=35, 38, 52
+inactiveBlend=165, 173, 206
+inactiveForeground=165, 173, 206
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinFrappePink.colors b/config/qt6/.local/share/color-schemes/CatppuccinFrappePink.colors
new file mode 100644
index 0000000..75ddd5a
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinFrappePink.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=48, 52, 70
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=48, 52, 70
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=244, 184, 228
+BackgroundNormal=65, 69, 89
+DecorationFocus=244, 184, 228
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=244, 184, 228
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Complementary]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=41, 44, 60
+DecorationFocus=244, 184, 228
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=244, 184, 228
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Header]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=41, 44, 60
+DecorationFocus=244, 184, 228
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=244, 184, 228
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Selection]
+BackgroundAlternate=244, 184, 228
+BackgroundNormal=244, 184, 228
+DecorationFocus=244, 184, 228
+DecorationHover=81, 87, 109
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=48, 52, 70
+DecorationFocus=244, 184, 228
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=244, 184, 228
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:View]
+BackgroundAlternate=41, 44, 60
+BackgroundNormal=48, 52, 70
+DecorationFocus=244, 184, 228
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=244, 184, 228
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Window]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=41, 44, 60
+DecorationFocus=244, 184, 228
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=244, 184, 228
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[General]
+ColorScheme=CatppuccinFrappePink
+Name=Catppuccin Frappe Pink
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=48, 52, 70
+activeBlend=198, 208, 245
+activeForeground=198, 208, 245
+inactiveBackground=35, 38, 52
+inactiveBlend=165, 173, 206
+inactiveForeground=165, 173, 206
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinFrappeRed.colors b/config/qt6/.local/share/color-schemes/CatppuccinFrappeRed.colors
new file mode 100644
index 0000000..c11183b
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinFrappeRed.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=48, 52, 70
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=48, 52, 70
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=231, 130, 132
+BackgroundNormal=65, 69, 89
+DecorationFocus=231, 130, 132
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=231, 130, 132
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Complementary]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=41, 44, 60
+DecorationFocus=231, 130, 132
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=231, 130, 132
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Header]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=41, 44, 60
+DecorationFocus=231, 130, 132
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=231, 130, 132
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Selection]
+BackgroundAlternate=231, 130, 132
+BackgroundNormal=231, 130, 132
+DecorationFocus=231, 130, 132
+DecorationHover=81, 87, 109
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=48, 52, 70
+DecorationFocus=231, 130, 132
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=231, 130, 132
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:View]
+BackgroundAlternate=41, 44, 60
+BackgroundNormal=48, 52, 70
+DecorationFocus=231, 130, 132
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=231, 130, 132
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Window]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=41, 44, 60
+DecorationFocus=231, 130, 132
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=231, 130, 132
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[General]
+ColorScheme=CatppuccinFrappeRed
+Name=Catppuccin Frappe Red
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=48, 52, 70
+activeBlend=198, 208, 245
+activeForeground=198, 208, 245
+inactiveBackground=35, 38, 52
+inactiveBlend=165, 173, 206
+inactiveForeground=165, 173, 206
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinFrappeRosewater.colors b/config/qt6/.local/share/color-schemes/CatppuccinFrappeRosewater.colors
new file mode 100644
index 0000000..f6c3064
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinFrappeRosewater.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=48, 52, 70
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=48, 52, 70
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=242, 213, 207
+BackgroundNormal=65, 69, 89
+DecorationFocus=242, 213, 207
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=242, 213, 207
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Complementary]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=41, 44, 60
+DecorationFocus=242, 213, 207
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=242, 213, 207
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Header]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=41, 44, 60
+DecorationFocus=242, 213, 207
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=242, 213, 207
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Selection]
+BackgroundAlternate=242, 213, 207
+BackgroundNormal=242, 213, 207
+DecorationFocus=242, 213, 207
+DecorationHover=81, 87, 109
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=48, 52, 70
+DecorationFocus=242, 213, 207
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=242, 213, 207
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:View]
+BackgroundAlternate=41, 44, 60
+BackgroundNormal=48, 52, 70
+DecorationFocus=242, 213, 207
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=242, 213, 207
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Window]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=41, 44, 60
+DecorationFocus=242, 213, 207
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=242, 213, 207
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[General]
+ColorScheme=CatppuccinFrappeRosewater
+Name=Catppuccin Frappe Rosewater
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=48, 52, 70
+activeBlend=198, 208, 245
+activeForeground=198, 208, 245
+inactiveBackground=35, 38, 52
+inactiveBlend=165, 173, 206
+inactiveForeground=165, 173, 206
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinFrappeSapphire.colors b/config/qt6/.local/share/color-schemes/CatppuccinFrappeSapphire.colors
new file mode 100644
index 0000000..85d2642
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinFrappeSapphire.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=48, 52, 70
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=48, 52, 70
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=133, 193, 220
+BackgroundNormal=65, 69, 89
+DecorationFocus=133, 193, 220
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=133, 193, 220
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Complementary]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=41, 44, 60
+DecorationFocus=133, 193, 220
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=133, 193, 220
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Header]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=41, 44, 60
+DecorationFocus=133, 193, 220
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=133, 193, 220
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Selection]
+BackgroundAlternate=133, 193, 220
+BackgroundNormal=133, 193, 220
+DecorationFocus=133, 193, 220
+DecorationHover=81, 87, 109
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=48, 52, 70
+DecorationFocus=133, 193, 220
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=133, 193, 220
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:View]
+BackgroundAlternate=41, 44, 60
+BackgroundNormal=48, 52, 70
+DecorationFocus=133, 193, 220
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=133, 193, 220
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Window]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=41, 44, 60
+DecorationFocus=133, 193, 220
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=133, 193, 220
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[General]
+ColorScheme=CatppuccinFrappeSapphire
+Name=Catppuccin Frappe Sapphire
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=48, 52, 70
+activeBlend=198, 208, 245
+activeForeground=198, 208, 245
+inactiveBackground=35, 38, 52
+inactiveBlend=165, 173, 206
+inactiveForeground=165, 173, 206
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinFrappeSky.colors b/config/qt6/.local/share/color-schemes/CatppuccinFrappeSky.colors
new file mode 100644
index 0000000..b95bf44
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinFrappeSky.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=48, 52, 70
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=48, 52, 70
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=153, 209, 219
+BackgroundNormal=65, 69, 89
+DecorationFocus=153, 209, 219
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=153, 209, 219
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Complementary]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=41, 44, 60
+DecorationFocus=153, 209, 219
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=153, 209, 219
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Header]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=41, 44, 60
+DecorationFocus=153, 209, 219
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=153, 209, 219
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Selection]
+BackgroundAlternate=153, 209, 219
+BackgroundNormal=153, 209, 219
+DecorationFocus=153, 209, 219
+DecorationHover=81, 87, 109
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=48, 52, 70
+DecorationFocus=153, 209, 219
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=153, 209, 219
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:View]
+BackgroundAlternate=41, 44, 60
+BackgroundNormal=48, 52, 70
+DecorationFocus=153, 209, 219
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=153, 209, 219
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Window]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=41, 44, 60
+DecorationFocus=153, 209, 219
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=153, 209, 219
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[General]
+ColorScheme=CatppuccinFrappeSky
+Name=Catppuccin Frappe Sky
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=48, 52, 70
+activeBlend=198, 208, 245
+activeForeground=198, 208, 245
+inactiveBackground=35, 38, 52
+inactiveBlend=165, 173, 206
+inactiveForeground=165, 173, 206
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinFrappeTeal.colors b/config/qt6/.local/share/color-schemes/CatppuccinFrappeTeal.colors
new file mode 100644
index 0000000..e94e1ca
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinFrappeTeal.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=48, 52, 70
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=48, 52, 70
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=129, 200, 190
+BackgroundNormal=65, 69, 89
+DecorationFocus=129, 200, 190
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=129, 200, 190
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Complementary]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=41, 44, 60
+DecorationFocus=129, 200, 190
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=129, 200, 190
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Header]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=41, 44, 60
+DecorationFocus=129, 200, 190
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=129, 200, 190
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Selection]
+BackgroundAlternate=129, 200, 190
+BackgroundNormal=129, 200, 190
+DecorationFocus=129, 200, 190
+DecorationHover=81, 87, 109
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=48, 52, 70
+DecorationFocus=129, 200, 190
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=129, 200, 190
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:View]
+BackgroundAlternate=41, 44, 60
+BackgroundNormal=48, 52, 70
+DecorationFocus=129, 200, 190
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=129, 200, 190
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Window]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=41, 44, 60
+DecorationFocus=129, 200, 190
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=129, 200, 190
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[General]
+ColorScheme=CatppuccinFrappeTeal
+Name=Catppuccin Frappe Teal
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=48, 52, 70
+activeBlend=198, 208, 245
+activeForeground=198, 208, 245
+inactiveBackground=35, 38, 52
+inactiveBlend=165, 173, 206
+inactiveForeground=165, 173, 206
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinFrappeYellow.colors b/config/qt6/.local/share/color-schemes/CatppuccinFrappeYellow.colors
new file mode 100644
index 0000000..b0a6797
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinFrappeYellow.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=48, 52, 70
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=48, 52, 70
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=229, 200, 144
+BackgroundNormal=65, 69, 89
+DecorationFocus=229, 200, 144
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=229, 200, 144
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Complementary]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=41, 44, 60
+DecorationFocus=229, 200, 144
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=229, 200, 144
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Header]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=41, 44, 60
+DecorationFocus=229, 200, 144
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=229, 200, 144
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Selection]
+BackgroundAlternate=229, 200, 144
+BackgroundNormal=229, 200, 144
+DecorationFocus=229, 200, 144
+DecorationHover=81, 87, 109
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=48, 52, 70
+DecorationFocus=229, 200, 144
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=229, 200, 144
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:View]
+BackgroundAlternate=41, 44, 60
+BackgroundNormal=48, 52, 70
+DecorationFocus=229, 200, 144
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=229, 200, 144
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[Colors:Window]
+BackgroundAlternate=35, 38, 52
+BackgroundNormal=41, 44, 60
+DecorationFocus=229, 200, 144
+DecorationHover=81, 87, 109
+ForegroundActive=239, 159, 118
+ForegroundInactive=165, 173, 206
+ForegroundLink=229, 200, 144
+ForegroundNegative=231, 130, 132
+ForegroundNeutral=229, 200, 144
+ForegroundNormal=198, 208, 245
+ForegroundPositive=166, 209, 137
+ForegroundVisited=202, 158, 230
+
+
+[General]
+ColorScheme=CatppuccinFrappeYellow
+Name=Catppuccin Frappe Yellow
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=48, 52, 70
+activeBlend=198, 208, 245
+activeForeground=198, 208, 245
+inactiveBackground=35, 38, 52
+inactiveBlend=165, 173, 206
+inactiveForeground=165, 173, 206
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinLatteBlue.colors b/config/qt6/.local/share/color-schemes/CatppuccinLatteBlue.colors
new file mode 100644
index 0000000..9bd49c5
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinLatteBlue.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=239, 241, 245
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=239, 241, 245
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=30, 102, 245
+BackgroundNormal=204, 208, 218
+DecorationFocus=30, 102, 245
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=30, 102, 245
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Complementary]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=230, 233, 239
+DecorationFocus=30, 102, 245
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=30, 102, 245
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Header]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=230, 233, 239
+DecorationFocus=30, 102, 245
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=30, 102, 245
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Selection]
+BackgroundAlternate=30, 102, 245
+BackgroundNormal=30, 102, 245
+DecorationFocus=30, 102, 245
+DecorationHover=188, 192, 204
+ForegroundInactive=255, 255, 255
+ForegroundActive=255, 255, 255
+ForegroundLink=255, 255, 255
+ForegroundNegative=255, 255, 255
+ForegroundNeutral=255, 255, 255
+ForegroundNormal=255, 255, 255
+ForegroundPositive=255, 255, 255
+ForegroundVisited=255, 255, 255
+
+
+[Colors:Tooltip]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=239, 241, 245
+DecorationFocus=30, 102, 245
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=30, 102, 245
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:View]
+BackgroundAlternate=230, 233, 239
+BackgroundNormal=239, 241, 245
+DecorationFocus=30, 102, 245
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=30, 102, 245
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Window]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=230, 233, 239
+DecorationFocus=30, 102, 245
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=30, 102, 245
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[General]
+ColorScheme=CatppuccinLatteBlue
+Name=Catppuccin Latte Blue
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=239, 241, 245
+activeBlend=76, 79, 105
+activeForeground=76, 79, 105
+inactiveBackground=220, 224, 232
+inactiveBlend=108, 111, 133
+inactiveForeground=108, 111, 133
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinLatteFlamingo.colors b/config/qt6/.local/share/color-schemes/CatppuccinLatteFlamingo.colors
new file mode 100644
index 0000000..0192121
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinLatteFlamingo.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=239, 241, 245
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=239, 241, 245
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=221, 120, 120
+BackgroundNormal=204, 208, 218
+DecorationFocus=221, 120, 120
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=221, 120, 120
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Complementary]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=230, 233, 239
+DecorationFocus=221, 120, 120
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=221, 120, 120
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Header]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=230, 233, 239
+DecorationFocus=221, 120, 120
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=221, 120, 120
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Selection]
+BackgroundAlternate=221, 120, 120
+BackgroundNormal=221, 120, 120
+DecorationFocus=221, 120, 120
+DecorationHover=188, 192, 204
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=239, 241, 245
+DecorationFocus=221, 120, 120
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=221, 120, 120
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:View]
+BackgroundAlternate=230, 233, 239
+BackgroundNormal=239, 241, 245
+DecorationFocus=221, 120, 120
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=221, 120, 120
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Window]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=230, 233, 239
+DecorationFocus=221, 120, 120
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=221, 120, 120
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[General]
+ColorScheme=CatppuccinLatteFlamingo
+Name=Catppuccin Latte Flamingo
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=239, 241, 245
+activeBlend=76, 79, 105
+activeForeground=76, 79, 105
+inactiveBackground=220, 224, 232
+inactiveBlend=108, 111, 133
+inactiveForeground=108, 111, 133
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinLatteGreen.colors b/config/qt6/.local/share/color-schemes/CatppuccinLatteGreen.colors
new file mode 100644
index 0000000..28d0839
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinLatteGreen.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=239, 241, 245
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=239, 241, 245
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=64, 160, 43
+BackgroundNormal=204, 208, 218
+DecorationFocus=64, 160, 43
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=64, 160, 43
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Complementary]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=230, 233, 239
+DecorationFocus=64, 160, 43
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=64, 160, 43
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Header]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=230, 233, 239
+DecorationFocus=64, 160, 43
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=64, 160, 43
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Selection]
+BackgroundAlternate=64, 160, 43
+BackgroundNormal=64, 160, 43
+DecorationFocus=64, 160, 43
+DecorationHover=188, 192, 204
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=239, 241, 245
+DecorationFocus=64, 160, 43
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=64, 160, 43
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:View]
+BackgroundAlternate=230, 233, 239
+BackgroundNormal=239, 241, 245
+DecorationFocus=64, 160, 43
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=64, 160, 43
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Window]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=230, 233, 239
+DecorationFocus=64, 160, 43
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=64, 160, 43
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[General]
+ColorScheme=CatppuccinLatteGreen
+Name=Catppuccin Latte Green
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=239, 241, 245
+activeBlend=76, 79, 105
+activeForeground=76, 79, 105
+inactiveBackground=220, 224, 232
+inactiveBlend=108, 111, 133
+inactiveForeground=108, 111, 133
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinLatteLavender.colors b/config/qt6/.local/share/color-schemes/CatppuccinLatteLavender.colors
new file mode 100644
index 0000000..6e15957
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinLatteLavender.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=239, 241, 245
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=239, 241, 245
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=114, 135, 253
+BackgroundNormal=204, 208, 218
+DecorationFocus=114, 135, 253
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=114, 135, 253
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Complementary]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=230, 233, 239
+DecorationFocus=114, 135, 253
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=114, 135, 253
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Header]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=230, 233, 239
+DecorationFocus=114, 135, 253
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=114, 135, 253
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Selection]
+BackgroundAlternate=114, 135, 253
+BackgroundNormal=114, 135, 253
+DecorationFocus=114, 135, 253
+DecorationHover=188, 192, 204
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=239, 241, 245
+DecorationFocus=114, 135, 253
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=114, 135, 253
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:View]
+BackgroundAlternate=230, 233, 239
+BackgroundNormal=239, 241, 245
+DecorationFocus=114, 135, 253
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=114, 135, 253
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Window]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=230, 233, 239
+DecorationFocus=114, 135, 253
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=114, 135, 253
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[General]
+ColorScheme=CatppuccinLatteLavender
+Name=Catppuccin Latte Lavender
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=239, 241, 245
+activeBlend=76, 79, 105
+activeForeground=76, 79, 105
+inactiveBackground=220, 224, 232
+inactiveBlend=108, 111, 133
+inactiveForeground=108, 111, 133
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinLatteMaroon.colors b/config/qt6/.local/share/color-schemes/CatppuccinLatteMaroon.colors
new file mode 100644
index 0000000..d2a9d2f
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinLatteMaroon.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=239, 241, 245
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=239, 241, 245
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=230, 69, 83
+BackgroundNormal=204, 208, 218
+DecorationFocus=230, 69, 83
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=230, 69, 83
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Complementary]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=230, 233, 239
+DecorationFocus=230, 69, 83
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=230, 69, 83
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Header]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=230, 233, 239
+DecorationFocus=230, 69, 83
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=230, 69, 83
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Selection]
+BackgroundAlternate=230, 69, 83
+BackgroundNormal=230, 69, 83
+DecorationFocus=230, 69, 83
+DecorationHover=188, 192, 204
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=239, 241, 245
+DecorationFocus=230, 69, 83
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=230, 69, 83
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:View]
+BackgroundAlternate=230, 233, 239
+BackgroundNormal=239, 241, 245
+DecorationFocus=230, 69, 83
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=230, 69, 83
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Window]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=230, 233, 239
+DecorationFocus=230, 69, 83
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=230, 69, 83
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[General]
+ColorScheme=CatppuccinLatteMaroon
+Name=Catppuccin Latte Maroon
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=239, 241, 245
+activeBlend=76, 79, 105
+activeForeground=76, 79, 105
+inactiveBackground=220, 224, 232
+inactiveBlend=108, 111, 133
+inactiveForeground=108, 111, 133
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinLatteMauve.colors b/config/qt6/.local/share/color-schemes/CatppuccinLatteMauve.colors
new file mode 100644
index 0000000..4efb681
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinLatteMauve.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=239, 241, 245
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=239, 241, 245
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=136, 57, 239
+BackgroundNormal=204, 208, 218
+DecorationFocus=136, 57, 239
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=136, 57, 239
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Complementary]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=230, 233, 239
+DecorationFocus=136, 57, 239
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=136, 57, 239
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Header]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=230, 233, 239
+DecorationFocus=136, 57, 239
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=136, 57, 239
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Selection]
+BackgroundAlternate=136, 57, 239
+BackgroundNormal=136, 57, 239
+DecorationFocus=136, 57, 239
+DecorationHover=188, 192, 204
+ForegroundInactive=255, 255, 255
+ForegroundActive=255, 255, 255
+ForegroundLink=255, 255, 255
+ForegroundNegative=255, 255, 255
+ForegroundNeutral=255, 255, 255
+ForegroundNormal=255, 255, 255
+ForegroundPositive=255, 255, 255
+ForegroundVisited=255, 255, 255
+
+
+[Colors:Tooltip]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=239, 241, 245
+DecorationFocus=136, 57, 239
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=136, 57, 239
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:View]
+BackgroundAlternate=230, 233, 239
+BackgroundNormal=239, 241, 245
+DecorationFocus=136, 57, 239
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=136, 57, 239
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Window]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=230, 233, 239
+DecorationFocus=136, 57, 239
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=136, 57, 239
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[General]
+ColorScheme=CatppuccinLatteMauve
+Name=Catppuccin Latte Mauve
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=239, 241, 245
+activeBlend=76, 79, 105
+activeForeground=76, 79, 105
+inactiveBackground=220, 224, 232
+inactiveBlend=108, 111, 133
+inactiveForeground=108, 111, 133
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinLattePeach.colors b/config/qt6/.local/share/color-schemes/CatppuccinLattePeach.colors
new file mode 100644
index 0000000..6630200
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinLattePeach.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=239, 241, 245
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=239, 241, 245
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=254, 100, 11
+BackgroundNormal=204, 208, 218
+DecorationFocus=254, 100, 11
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=254, 100, 11
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Complementary]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=230, 233, 239
+DecorationFocus=254, 100, 11
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=254, 100, 11
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Header]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=230, 233, 239
+DecorationFocus=254, 100, 11
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=254, 100, 11
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Selection]
+BackgroundAlternate=254, 100, 11
+BackgroundNormal=254, 100, 11
+DecorationFocus=254, 100, 11
+DecorationHover=188, 192, 204
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=239, 241, 245
+DecorationFocus=254, 100, 11
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=254, 100, 11
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:View]
+BackgroundAlternate=230, 233, 239
+BackgroundNormal=239, 241, 245
+DecorationFocus=254, 100, 11
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=254, 100, 11
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Window]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=230, 233, 239
+DecorationFocus=254, 100, 11
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=254, 100, 11
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[General]
+ColorScheme=CatppuccinLattePeach
+Name=Catppuccin Latte Peach
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=239, 241, 245
+activeBlend=76, 79, 105
+activeForeground=76, 79, 105
+inactiveBackground=220, 224, 232
+inactiveBlend=108, 111, 133
+inactiveForeground=108, 111, 133
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinLattePink.colors b/config/qt6/.local/share/color-schemes/CatppuccinLattePink.colors
new file mode 100644
index 0000000..ebb1acd
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinLattePink.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=239, 241, 245
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=239, 241, 245
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=234, 118, 203
+BackgroundNormal=204, 208, 218
+DecorationFocus=234, 118, 203
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=234, 118, 203
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Complementary]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=230, 233, 239
+DecorationFocus=234, 118, 203
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=234, 118, 203
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Header]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=230, 233, 239
+DecorationFocus=234, 118, 203
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=234, 118, 203
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Selection]
+BackgroundAlternate=234, 118, 203
+BackgroundNormal=234, 118, 203
+DecorationFocus=234, 118, 203
+DecorationHover=188, 192, 204
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=239, 241, 245
+DecorationFocus=234, 118, 203
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=234, 118, 203
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:View]
+BackgroundAlternate=230, 233, 239
+BackgroundNormal=239, 241, 245
+DecorationFocus=234, 118, 203
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=234, 118, 203
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Window]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=230, 233, 239
+DecorationFocus=234, 118, 203
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=234, 118, 203
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[General]
+ColorScheme=CatppuccinLattePink
+Name=Catppuccin Latte Pink
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=239, 241, 245
+activeBlend=76, 79, 105
+activeForeground=76, 79, 105
+inactiveBackground=220, 224, 232
+inactiveBlend=108, 111, 133
+inactiveForeground=108, 111, 133
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinLatteRed.colors b/config/qt6/.local/share/color-schemes/CatppuccinLatteRed.colors
new file mode 100644
index 0000000..a3f4f19
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinLatteRed.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=239, 241, 245
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=239, 241, 245
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=210, 15, 57
+BackgroundNormal=204, 208, 218
+DecorationFocus=210, 15, 57
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=210, 15, 57
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Complementary]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=230, 233, 239
+DecorationFocus=210, 15, 57
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=210, 15, 57
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Header]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=230, 233, 239
+DecorationFocus=210, 15, 57
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=210, 15, 57
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Selection]
+BackgroundAlternate=210, 15, 57
+BackgroundNormal=210, 15, 57
+DecorationFocus=210, 15, 57
+DecorationHover=188, 192, 204
+ForegroundInactive=255, 255, 255
+ForegroundActive=255, 255, 255
+ForegroundLink=255, 255, 255
+ForegroundNegative=255, 255, 255
+ForegroundNeutral=255, 255, 255
+ForegroundNormal=255, 255, 255
+ForegroundPositive=255, 255, 255
+ForegroundVisited=255, 255, 255
+
+
+[Colors:Tooltip]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=239, 241, 245
+DecorationFocus=210, 15, 57
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=210, 15, 57
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:View]
+BackgroundAlternate=230, 233, 239
+BackgroundNormal=239, 241, 245
+DecorationFocus=210, 15, 57
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=210, 15, 57
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Window]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=230, 233, 239
+DecorationFocus=210, 15, 57
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=210, 15, 57
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[General]
+ColorScheme=CatppuccinLatteRed
+Name=Catppuccin Latte Red
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=239, 241, 245
+activeBlend=76, 79, 105
+activeForeground=76, 79, 105
+inactiveBackground=220, 224, 232
+inactiveBlend=108, 111, 133
+inactiveForeground=108, 111, 133
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinLatteRosewater.colors b/config/qt6/.local/share/color-schemes/CatppuccinLatteRosewater.colors
new file mode 100644
index 0000000..246c7d3
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinLatteRosewater.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=239, 241, 245
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=239, 241, 245
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=220, 138, 120
+BackgroundNormal=204, 208, 218
+DecorationFocus=220, 138, 120
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=220, 138, 120
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Complementary]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=230, 233, 239
+DecorationFocus=220, 138, 120
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=220, 138, 120
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Header]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=230, 233, 239
+DecorationFocus=220, 138, 120
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=220, 138, 120
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Selection]
+BackgroundAlternate=220, 138, 120
+BackgroundNormal=220, 138, 120
+DecorationFocus=220, 138, 120
+DecorationHover=188, 192, 204
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=239, 241, 245
+DecorationFocus=220, 138, 120
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=220, 138, 120
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:View]
+BackgroundAlternate=230, 233, 239
+BackgroundNormal=239, 241, 245
+DecorationFocus=220, 138, 120
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=220, 138, 120
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Window]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=230, 233, 239
+DecorationFocus=220, 138, 120
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=220, 138, 120
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[General]
+ColorScheme=CatppuccinLatteRosewater
+Name=Catppuccin Latte Rosewater
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=239, 241, 245
+activeBlend=76, 79, 105
+activeForeground=76, 79, 105
+inactiveBackground=220, 224, 232
+inactiveBlend=108, 111, 133
+inactiveForeground=108, 111, 133
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinLatteSapphire.colors b/config/qt6/.local/share/color-schemes/CatppuccinLatteSapphire.colors
new file mode 100644
index 0000000..3e36c41
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinLatteSapphire.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=239, 241, 245
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=239, 241, 245
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=32, 159, 181
+BackgroundNormal=204, 208, 218
+DecorationFocus=32, 159, 181
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=32, 159, 181
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Complementary]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=230, 233, 239
+DecorationFocus=32, 159, 181
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=32, 159, 181
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Header]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=230, 233, 239
+DecorationFocus=32, 159, 181
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=32, 159, 181
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Selection]
+BackgroundAlternate=32, 159, 181
+BackgroundNormal=32, 159, 181
+DecorationFocus=32, 159, 181
+DecorationHover=188, 192, 204
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=239, 241, 245
+DecorationFocus=32, 159, 181
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=32, 159, 181
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:View]
+BackgroundAlternate=230, 233, 239
+BackgroundNormal=239, 241, 245
+DecorationFocus=32, 159, 181
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=32, 159, 181
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Window]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=230, 233, 239
+DecorationFocus=32, 159, 181
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=32, 159, 181
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[General]
+ColorScheme=CatppuccinLatteSapphire
+Name=Catppuccin Latte Sapphire
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=239, 241, 245
+activeBlend=76, 79, 105
+activeForeground=76, 79, 105
+inactiveBackground=220, 224, 232
+inactiveBlend=108, 111, 133
+inactiveForeground=108, 111, 133
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinLatteSky.colors b/config/qt6/.local/share/color-schemes/CatppuccinLatteSky.colors
new file mode 100644
index 0000000..334ff3c
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinLatteSky.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=239, 241, 245
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=239, 241, 245
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=4, 165, 229
+BackgroundNormal=204, 208, 218
+DecorationFocus=4, 165, 229
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=4, 165, 229
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Complementary]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=230, 233, 239
+DecorationFocus=4, 165, 229
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=4, 165, 229
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Header]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=230, 233, 239
+DecorationFocus=4, 165, 229
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=4, 165, 229
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Selection]
+BackgroundAlternate=4, 165, 229
+BackgroundNormal=4, 165, 229
+DecorationFocus=4, 165, 229
+DecorationHover=188, 192, 204
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=239, 241, 245
+DecorationFocus=4, 165, 229
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=4, 165, 229
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:View]
+BackgroundAlternate=230, 233, 239
+BackgroundNormal=239, 241, 245
+DecorationFocus=4, 165, 229
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=4, 165, 229
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Window]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=230, 233, 239
+DecorationFocus=4, 165, 229
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=4, 165, 229
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[General]
+ColorScheme=CatppuccinLatteSky
+Name=Catppuccin Latte Sky
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=239, 241, 245
+activeBlend=76, 79, 105
+activeForeground=76, 79, 105
+inactiveBackground=220, 224, 232
+inactiveBlend=108, 111, 133
+inactiveForeground=108, 111, 133
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinLatteTeal.colors b/config/qt6/.local/share/color-schemes/CatppuccinLatteTeal.colors
new file mode 100644
index 0000000..d05bcd0
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinLatteTeal.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=239, 241, 245
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=239, 241, 245
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=23, 146, 153
+BackgroundNormal=204, 208, 218
+DecorationFocus=23, 146, 153
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=23, 146, 153
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Complementary]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=230, 233, 239
+DecorationFocus=23, 146, 153
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=23, 146, 153
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Header]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=230, 233, 239
+DecorationFocus=23, 146, 153
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=23, 146, 153
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Selection]
+BackgroundAlternate=23, 146, 153
+BackgroundNormal=23, 146, 153
+DecorationFocus=23, 146, 153
+DecorationHover=188, 192, 204
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=239, 241, 245
+DecorationFocus=23, 146, 153
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=23, 146, 153
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:View]
+BackgroundAlternate=230, 233, 239
+BackgroundNormal=239, 241, 245
+DecorationFocus=23, 146, 153
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=23, 146, 153
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Window]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=230, 233, 239
+DecorationFocus=23, 146, 153
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=23, 146, 153
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[General]
+ColorScheme=CatppuccinLatteTeal
+Name=Catppuccin Latte Teal
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=239, 241, 245
+activeBlend=76, 79, 105
+activeForeground=76, 79, 105
+inactiveBackground=220, 224, 232
+inactiveBlend=108, 111, 133
+inactiveForeground=108, 111, 133
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinLatteYellow.colors b/config/qt6/.local/share/color-schemes/CatppuccinLatteYellow.colors
new file mode 100644
index 0000000..fefdc49
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinLatteYellow.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=239, 241, 245
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=239, 241, 245
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=223, 142, 29
+BackgroundNormal=204, 208, 218
+DecorationFocus=223, 142, 29
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=223, 142, 29
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Complementary]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=230, 233, 239
+DecorationFocus=223, 142, 29
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=223, 142, 29
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Header]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=230, 233, 239
+DecorationFocus=223, 142, 29
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=223, 142, 29
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Selection]
+BackgroundAlternate=223, 142, 29
+BackgroundNormal=223, 142, 29
+DecorationFocus=223, 142, 29
+DecorationHover=188, 192, 204
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=239, 241, 245
+DecorationFocus=223, 142, 29
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=223, 142, 29
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:View]
+BackgroundAlternate=230, 233, 239
+BackgroundNormal=239, 241, 245
+DecorationFocus=223, 142, 29
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=223, 142, 29
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[Colors:Window]
+BackgroundAlternate=220, 224, 232
+BackgroundNormal=230, 233, 239
+DecorationFocus=223, 142, 29
+DecorationHover=188, 192, 204
+ForegroundActive=254, 100, 11
+ForegroundInactive=108, 111, 133
+ForegroundLink=223, 142, 29
+ForegroundNegative=210, 15, 57
+ForegroundNeutral=223, 142, 29
+ForegroundNormal=76, 79, 105
+ForegroundPositive=64, 160, 43
+ForegroundVisited=136, 57, 239
+
+
+[General]
+ColorScheme=CatppuccinLatteYellow
+Name=Catppuccin Latte Yellow
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=239, 241, 245
+activeBlend=76, 79, 105
+activeForeground=76, 79, 105
+inactiveBackground=220, 224, 232
+inactiveBlend=108, 111, 133
+inactiveForeground=108, 111, 133
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinMacchiatoBlue.colors b/config/qt6/.local/share/color-schemes/CatppuccinMacchiatoBlue.colors
new file mode 100644
index 0000000..8465c21
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinMacchiatoBlue.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=36, 39, 58
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=36, 39, 58
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=138, 173, 244
+BackgroundNormal=54, 58, 79
+DecorationFocus=138, 173, 244
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=138, 173, 244
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Complementary]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=30, 32, 48
+DecorationFocus=138, 173, 244
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=138, 173, 244
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Header]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=30, 32, 48
+DecorationFocus=138, 173, 244
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=138, 173, 244
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Selection]
+BackgroundAlternate=138, 173, 244
+BackgroundNormal=138, 173, 244
+DecorationFocus=138, 173, 244
+DecorationHover=73, 77, 100
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=36, 39, 58
+DecorationFocus=138, 173, 244
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=138, 173, 244
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:View]
+BackgroundAlternate=30, 32, 48
+BackgroundNormal=36, 39, 58
+DecorationFocus=138, 173, 244
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=138, 173, 244
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Window]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=30, 32, 48
+DecorationFocus=138, 173, 244
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=138, 173, 244
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[General]
+ColorScheme=CatppuccinMacchiatoBlue
+Name=Catppuccin Macchiato Blue
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=36, 39, 58
+activeBlend=202, 211, 245
+activeForeground=202, 211, 245
+inactiveBackground=24, 25, 38
+inactiveBlend=165, 173, 203
+inactiveForeground=165, 173, 203
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinMacchiatoFlamingo.colors b/config/qt6/.local/share/color-schemes/CatppuccinMacchiatoFlamingo.colors
new file mode 100644
index 0000000..16d131c
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinMacchiatoFlamingo.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=36, 39, 58
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=36, 39, 58
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=240, 198, 198
+BackgroundNormal=54, 58, 79
+DecorationFocus=240, 198, 198
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=240, 198, 198
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Complementary]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=30, 32, 48
+DecorationFocus=240, 198, 198
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=240, 198, 198
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Header]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=30, 32, 48
+DecorationFocus=240, 198, 198
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=240, 198, 198
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Selection]
+BackgroundAlternate=240, 198, 198
+BackgroundNormal=240, 198, 198
+DecorationFocus=240, 198, 198
+DecorationHover=73, 77, 100
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=36, 39, 58
+DecorationFocus=240, 198, 198
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=240, 198, 198
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:View]
+BackgroundAlternate=30, 32, 48
+BackgroundNormal=36, 39, 58
+DecorationFocus=240, 198, 198
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=240, 198, 198
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Window]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=30, 32, 48
+DecorationFocus=240, 198, 198
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=240, 198, 198
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[General]
+ColorScheme=CatppuccinMacchiatoFlamingo
+Name=Catppuccin Macchiato Flamingo
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=36, 39, 58
+activeBlend=202, 211, 245
+activeForeground=202, 211, 245
+inactiveBackground=24, 25, 38
+inactiveBlend=165, 173, 203
+inactiveForeground=165, 173, 203
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinMacchiatoGreen.colors b/config/qt6/.local/share/color-schemes/CatppuccinMacchiatoGreen.colors
new file mode 100644
index 0000000..f788543
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinMacchiatoGreen.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=36, 39, 58
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=36, 39, 58
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=166, 218, 149
+BackgroundNormal=54, 58, 79
+DecorationFocus=166, 218, 149
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=166, 218, 149
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Complementary]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=30, 32, 48
+DecorationFocus=166, 218, 149
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=166, 218, 149
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Header]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=30, 32, 48
+DecorationFocus=166, 218, 149
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=166, 218, 149
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Selection]
+BackgroundAlternate=166, 218, 149
+BackgroundNormal=166, 218, 149
+DecorationFocus=166, 218, 149
+DecorationHover=73, 77, 100
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=36, 39, 58
+DecorationFocus=166, 218, 149
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=166, 218, 149
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:View]
+BackgroundAlternate=30, 32, 48
+BackgroundNormal=36, 39, 58
+DecorationFocus=166, 218, 149
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=166, 218, 149
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Window]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=30, 32, 48
+DecorationFocus=166, 218, 149
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=166, 218, 149
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[General]
+ColorScheme=CatppuccinMacchiatoGreen
+Name=Catppuccin Macchiato Green
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=36, 39, 58
+activeBlend=202, 211, 245
+activeForeground=202, 211, 245
+inactiveBackground=24, 25, 38
+inactiveBlend=165, 173, 203
+inactiveForeground=165, 173, 203
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinMacchiatoLavender.colors b/config/qt6/.local/share/color-schemes/CatppuccinMacchiatoLavender.colors
new file mode 100644
index 0000000..25486b8
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinMacchiatoLavender.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=36, 39, 58
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=36, 39, 58
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=183, 189, 248
+BackgroundNormal=54, 58, 79
+DecorationFocus=183, 189, 248
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=183, 189, 248
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Complementary]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=30, 32, 48
+DecorationFocus=183, 189, 248
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=183, 189, 248
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Header]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=30, 32, 48
+DecorationFocus=183, 189, 248
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=183, 189, 248
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Selection]
+BackgroundAlternate=183, 189, 248
+BackgroundNormal=183, 189, 248
+DecorationFocus=183, 189, 248
+DecorationHover=73, 77, 100
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=36, 39, 58
+DecorationFocus=183, 189, 248
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=183, 189, 248
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:View]
+BackgroundAlternate=30, 32, 48
+BackgroundNormal=36, 39, 58
+DecorationFocus=183, 189, 248
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=183, 189, 248
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Window]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=30, 32, 48
+DecorationFocus=183, 189, 248
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=183, 189, 248
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[General]
+ColorScheme=CatppuccinMacchiatoLavender
+Name=Catppuccin Macchiato Lavender
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=36, 39, 58
+activeBlend=202, 211, 245
+activeForeground=202, 211, 245
+inactiveBackground=24, 25, 38
+inactiveBlend=165, 173, 203
+inactiveForeground=165, 173, 203
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinMacchiatoMaroon.colors b/config/qt6/.local/share/color-schemes/CatppuccinMacchiatoMaroon.colors
new file mode 100644
index 0000000..6a8fb02
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinMacchiatoMaroon.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=36, 39, 58
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=36, 39, 58
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=238, 153, 160
+BackgroundNormal=54, 58, 79
+DecorationFocus=238, 153, 160
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=238, 153, 160
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Complementary]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=30, 32, 48
+DecorationFocus=238, 153, 160
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=238, 153, 160
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Header]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=30, 32, 48
+DecorationFocus=238, 153, 160
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=238, 153, 160
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Selection]
+BackgroundAlternate=238, 153, 160
+BackgroundNormal=238, 153, 160
+DecorationFocus=238, 153, 160
+DecorationHover=73, 77, 100
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=36, 39, 58
+DecorationFocus=238, 153, 160
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=238, 153, 160
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:View]
+BackgroundAlternate=30, 32, 48
+BackgroundNormal=36, 39, 58
+DecorationFocus=238, 153, 160
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=238, 153, 160
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Window]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=30, 32, 48
+DecorationFocus=238, 153, 160
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=238, 153, 160
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[General]
+ColorScheme=CatppuccinMacchiatoMaroon
+Name=Catppuccin Macchiato Maroon
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=36, 39, 58
+activeBlend=202, 211, 245
+activeForeground=202, 211, 245
+inactiveBackground=24, 25, 38
+inactiveBlend=165, 173, 203
+inactiveForeground=165, 173, 203
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinMacchiatoMauve.colors b/config/qt6/.local/share/color-schemes/CatppuccinMacchiatoMauve.colors
new file mode 100644
index 0000000..cd7e9e9
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinMacchiatoMauve.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=36, 39, 58
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=36, 39, 58
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=198, 160, 246
+BackgroundNormal=54, 58, 79
+DecorationFocus=198, 160, 246
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=198, 160, 246
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Complementary]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=30, 32, 48
+DecorationFocus=198, 160, 246
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=198, 160, 246
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Header]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=30, 32, 48
+DecorationFocus=198, 160, 246
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=198, 160, 246
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Selection]
+BackgroundAlternate=198, 160, 246
+BackgroundNormal=198, 160, 246
+DecorationFocus=198, 160, 246
+DecorationHover=73, 77, 100
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=36, 39, 58
+DecorationFocus=198, 160, 246
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=198, 160, 246
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:View]
+BackgroundAlternate=30, 32, 48
+BackgroundNormal=36, 39, 58
+DecorationFocus=198, 160, 246
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=198, 160, 246
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Window]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=30, 32, 48
+DecorationFocus=198, 160, 246
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=198, 160, 246
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[General]
+ColorScheme=CatppuccinMacchiatoMauve
+Name=Catppuccin Macchiato Mauve
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=36, 39, 58
+activeBlend=202, 211, 245
+activeForeground=202, 211, 245
+inactiveBackground=24, 25, 38
+inactiveBlend=165, 173, 203
+inactiveForeground=165, 173, 203
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinMacchiatoPeach.colors b/config/qt6/.local/share/color-schemes/CatppuccinMacchiatoPeach.colors
new file mode 100644
index 0000000..b34e2b7
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinMacchiatoPeach.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=36, 39, 58
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=36, 39, 58
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=245, 169, 127
+BackgroundNormal=54, 58, 79
+DecorationFocus=245, 169, 127
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=245, 169, 127
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Complementary]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=30, 32, 48
+DecorationFocus=245, 169, 127
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=245, 169, 127
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Header]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=30, 32, 48
+DecorationFocus=245, 169, 127
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=245, 169, 127
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Selection]
+BackgroundAlternate=245, 169, 127
+BackgroundNormal=245, 169, 127
+DecorationFocus=245, 169, 127
+DecorationHover=73, 77, 100
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=36, 39, 58
+DecorationFocus=245, 169, 127
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=245, 169, 127
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:View]
+BackgroundAlternate=30, 32, 48
+BackgroundNormal=36, 39, 58
+DecorationFocus=245, 169, 127
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=245, 169, 127
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Window]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=30, 32, 48
+DecorationFocus=245, 169, 127
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=245, 169, 127
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[General]
+ColorScheme=CatppuccinMacchiatoPeach
+Name=Catppuccin Macchiato Peach
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=36, 39, 58
+activeBlend=202, 211, 245
+activeForeground=202, 211, 245
+inactiveBackground=24, 25, 38
+inactiveBlend=165, 173, 203
+inactiveForeground=165, 173, 203
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinMacchiatoPink.colors b/config/qt6/.local/share/color-schemes/CatppuccinMacchiatoPink.colors
new file mode 100644
index 0000000..d8ad767
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinMacchiatoPink.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=36, 39, 58
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=36, 39, 58
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=245, 189, 230
+BackgroundNormal=54, 58, 79
+DecorationFocus=245, 189, 230
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=245, 189, 230
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Complementary]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=30, 32, 48
+DecorationFocus=245, 189, 230
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=245, 189, 230
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Header]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=30, 32, 48
+DecorationFocus=245, 189, 230
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=245, 189, 230
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Selection]
+BackgroundAlternate=245, 189, 230
+BackgroundNormal=245, 189, 230
+DecorationFocus=245, 189, 230
+DecorationHover=73, 77, 100
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=36, 39, 58
+DecorationFocus=245, 189, 230
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=245, 189, 230
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:View]
+BackgroundAlternate=30, 32, 48
+BackgroundNormal=36, 39, 58
+DecorationFocus=245, 189, 230
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=245, 189, 230
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Window]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=30, 32, 48
+DecorationFocus=245, 189, 230
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=245, 189, 230
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[General]
+ColorScheme=CatppuccinMacchiatoPink
+Name=Catppuccin Macchiato Pink
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=36, 39, 58
+activeBlend=202, 211, 245
+activeForeground=202, 211, 245
+inactiveBackground=24, 25, 38
+inactiveBlend=165, 173, 203
+inactiveForeground=165, 173, 203
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinMacchiatoRed.colors b/config/qt6/.local/share/color-schemes/CatppuccinMacchiatoRed.colors
new file mode 100644
index 0000000..ac7a576
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinMacchiatoRed.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=36, 39, 58
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=36, 39, 58
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=237, 135, 150
+BackgroundNormal=54, 58, 79
+DecorationFocus=237, 135, 150
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=237, 135, 150
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Complementary]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=30, 32, 48
+DecorationFocus=237, 135, 150
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=237, 135, 150
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Header]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=30, 32, 48
+DecorationFocus=237, 135, 150
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=237, 135, 150
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Selection]
+BackgroundAlternate=237, 135, 150
+BackgroundNormal=237, 135, 150
+DecorationFocus=237, 135, 150
+DecorationHover=73, 77, 100
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=36, 39, 58
+DecorationFocus=237, 135, 150
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=237, 135, 150
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:View]
+BackgroundAlternate=30, 32, 48
+BackgroundNormal=36, 39, 58
+DecorationFocus=237, 135, 150
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=237, 135, 150
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Window]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=30, 32, 48
+DecorationFocus=237, 135, 150
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=237, 135, 150
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[General]
+ColorScheme=CatppuccinMacchiatoRed
+Name=Catppuccin Macchiato Red
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=36, 39, 58
+activeBlend=202, 211, 245
+activeForeground=202, 211, 245
+inactiveBackground=24, 25, 38
+inactiveBlend=165, 173, 203
+inactiveForeground=165, 173, 203
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinMacchiatoRosewater.colors b/config/qt6/.local/share/color-schemes/CatppuccinMacchiatoRosewater.colors
new file mode 100644
index 0000000..9a3c0ff
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinMacchiatoRosewater.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=36, 39, 58
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=36, 39, 58
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=244, 219, 214
+BackgroundNormal=54, 58, 79
+DecorationFocus=244, 219, 214
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=244, 219, 214
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Complementary]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=30, 32, 48
+DecorationFocus=244, 219, 214
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=244, 219, 214
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Header]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=30, 32, 48
+DecorationFocus=244, 219, 214
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=244, 219, 214
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Selection]
+BackgroundAlternate=244, 219, 214
+BackgroundNormal=244, 219, 214
+DecorationFocus=244, 219, 214
+DecorationHover=73, 77, 100
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=36, 39, 58
+DecorationFocus=244, 219, 214
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=244, 219, 214
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:View]
+BackgroundAlternate=30, 32, 48
+BackgroundNormal=36, 39, 58
+DecorationFocus=244, 219, 214
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=244, 219, 214
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Window]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=30, 32, 48
+DecorationFocus=244, 219, 214
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=244, 219, 214
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[General]
+ColorScheme=CatppuccinMacchiatoRosewater
+Name=Catppuccin Macchiato Rosewater
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=36, 39, 58
+activeBlend=202, 211, 245
+activeForeground=202, 211, 245
+inactiveBackground=24, 25, 38
+inactiveBlend=165, 173, 203
+inactiveForeground=165, 173, 203
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinMacchiatoSapphire.colors b/config/qt6/.local/share/color-schemes/CatppuccinMacchiatoSapphire.colors
new file mode 100644
index 0000000..5de6521
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinMacchiatoSapphire.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=36, 39, 58
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=36, 39, 58
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=125, 196, 228
+BackgroundNormal=54, 58, 79
+DecorationFocus=125, 196, 228
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=125, 196, 228
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Complementary]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=30, 32, 48
+DecorationFocus=125, 196, 228
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=125, 196, 228
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Header]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=30, 32, 48
+DecorationFocus=125, 196, 228
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=125, 196, 228
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Selection]
+BackgroundAlternate=125, 196, 228
+BackgroundNormal=125, 196, 228
+DecorationFocus=125, 196, 228
+DecorationHover=73, 77, 100
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=36, 39, 58
+DecorationFocus=125, 196, 228
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=125, 196, 228
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:View]
+BackgroundAlternate=30, 32, 48
+BackgroundNormal=36, 39, 58
+DecorationFocus=125, 196, 228
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=125, 196, 228
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Window]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=30, 32, 48
+DecorationFocus=125, 196, 228
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=125, 196, 228
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[General]
+ColorScheme=CatppuccinMacchiatoSapphire
+Name=Catppuccin Macchiato Sapphire
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=36, 39, 58
+activeBlend=202, 211, 245
+activeForeground=202, 211, 245
+inactiveBackground=24, 25, 38
+inactiveBlend=165, 173, 203
+inactiveForeground=165, 173, 203
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinMacchiatoSky.colors b/config/qt6/.local/share/color-schemes/CatppuccinMacchiatoSky.colors
new file mode 100644
index 0000000..ae81966
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinMacchiatoSky.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=36, 39, 58
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=36, 39, 58
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=145, 215, 227
+BackgroundNormal=54, 58, 79
+DecorationFocus=145, 215, 227
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=145, 215, 227
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Complementary]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=30, 32, 48
+DecorationFocus=145, 215, 227
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=145, 215, 227
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Header]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=30, 32, 48
+DecorationFocus=145, 215, 227
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=145, 215, 227
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Selection]
+BackgroundAlternate=145, 215, 227
+BackgroundNormal=145, 215, 227
+DecorationFocus=145, 215, 227
+DecorationHover=73, 77, 100
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=36, 39, 58
+DecorationFocus=145, 215, 227
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=145, 215, 227
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:View]
+BackgroundAlternate=30, 32, 48
+BackgroundNormal=36, 39, 58
+DecorationFocus=145, 215, 227
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=145, 215, 227
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Window]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=30, 32, 48
+DecorationFocus=145, 215, 227
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=145, 215, 227
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[General]
+ColorScheme=CatppuccinMacchiatoSky
+Name=Catppuccin Macchiato Sky
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=36, 39, 58
+activeBlend=202, 211, 245
+activeForeground=202, 211, 245
+inactiveBackground=24, 25, 38
+inactiveBlend=165, 173, 203
+inactiveForeground=165, 173, 203
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinMacchiatoTeal.colors b/config/qt6/.local/share/color-schemes/CatppuccinMacchiatoTeal.colors
new file mode 100644
index 0000000..7a1691a
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinMacchiatoTeal.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=36, 39, 58
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=36, 39, 58
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=139, 213, 202
+BackgroundNormal=54, 58, 79
+DecorationFocus=139, 213, 202
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=139, 213, 202
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Complementary]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=30, 32, 48
+DecorationFocus=139, 213, 202
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=139, 213, 202
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Header]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=30, 32, 48
+DecorationFocus=139, 213, 202
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=139, 213, 202
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Selection]
+BackgroundAlternate=139, 213, 202
+BackgroundNormal=139, 213, 202
+DecorationFocus=139, 213, 202
+DecorationHover=73, 77, 100
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=36, 39, 58
+DecorationFocus=139, 213, 202
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=139, 213, 202
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:View]
+BackgroundAlternate=30, 32, 48
+BackgroundNormal=36, 39, 58
+DecorationFocus=139, 213, 202
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=139, 213, 202
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Window]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=30, 32, 48
+DecorationFocus=139, 213, 202
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=139, 213, 202
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[General]
+ColorScheme=CatppuccinMacchiatoTeal
+Name=Catppuccin Macchiato Teal
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=36, 39, 58
+activeBlend=202, 211, 245
+activeForeground=202, 211, 245
+inactiveBackground=24, 25, 38
+inactiveBlend=165, 173, 203
+inactiveForeground=165, 173, 203
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinMacchiatoYellow.colors b/config/qt6/.local/share/color-schemes/CatppuccinMacchiatoYellow.colors
new file mode 100644
index 0000000..084bbeb
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinMacchiatoYellow.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=36, 39, 58
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=36, 39, 58
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=238, 212, 159
+BackgroundNormal=54, 58, 79
+DecorationFocus=238, 212, 159
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=238, 212, 159
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Complementary]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=30, 32, 48
+DecorationFocus=238, 212, 159
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=238, 212, 159
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Header]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=30, 32, 48
+DecorationFocus=238, 212, 159
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=238, 212, 159
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Selection]
+BackgroundAlternate=238, 212, 159
+BackgroundNormal=238, 212, 159
+DecorationFocus=238, 212, 159
+DecorationHover=73, 77, 100
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=36, 39, 58
+DecorationFocus=238, 212, 159
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=238, 212, 159
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:View]
+BackgroundAlternate=30, 32, 48
+BackgroundNormal=36, 39, 58
+DecorationFocus=238, 212, 159
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=238, 212, 159
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[Colors:Window]
+BackgroundAlternate=24, 25, 38
+BackgroundNormal=30, 32, 48
+DecorationFocus=238, 212, 159
+DecorationHover=73, 77, 100
+ForegroundActive=245, 169, 127
+ForegroundInactive=165, 173, 203
+ForegroundLink=238, 212, 159
+ForegroundNegative=237, 135, 150
+ForegroundNeutral=238, 212, 159
+ForegroundNormal=202, 211, 245
+ForegroundPositive=166, 218, 149
+ForegroundVisited=198, 160, 246
+
+
+[General]
+ColorScheme=CatppuccinMacchiatoYellow
+Name=Catppuccin Macchiato Yellow
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=36, 39, 58
+activeBlend=202, 211, 245
+activeForeground=202, 211, 245
+inactiveBackground=24, 25, 38
+inactiveBlend=165, 173, 203
+inactiveForeground=165, 173, 203
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinMocha.colors b/config/qt6/.local/share/color-schemes/CatppuccinMocha.colors
new file mode 100644
index 0000000..1776198
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinMocha.colors
@@ -0,0 +1,118 @@
+[ColorEffects:Disabled]
+Color=49,50,68
+ColorAmount=0
+ColorEffect=0
+ContrastAmount=0.45
+ContrastEffect=1
+IntensityAmount=0.1
+IntensityEffect=2
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=true
+Color=108,112,134
+ColorAmount=0.025
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=2
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=69,71,90
+BackgroundNormal=69,71,90
+DecorationFocus=203,166,247
+DecorationHover=203,166,247
+ForegroundActive=116,199,236
+ForegroundInactive=186,194,222
+ForegroundLink=137,180,250
+ForegroundNegative=243,139,168
+ForegroundNeutral=249,226,175
+ForegroundNormal=205,214,244
+ForegroundPositive=166,227,161
+ForegroundVisited=137,180,250
+
+[Colors:Complementary]
+BackgroundAlternate=24,24,37
+BackgroundNormal=30,30,46
+DecorationFocus=203,166,247
+DecorationHover=203,166,247
+ForegroundActive=203,166,247
+ForegroundInactive=186,194,222
+ForegroundLink=203,166,247
+ForegroundNegative=243,139,168
+ForegroundNeutral=249,226,175
+ForegroundNormal=205,214,244
+ForegroundPositive=166,227,161
+ForegroundVisited=147,153,178
+
+[Colors:Selection]
+BackgroundAlternate=69,71,90
+BackgroundNormal=203,166,247
+DecorationFocus=203,166,247
+DecorationHover=203,166,247
+ForegroundActive=116,199,236
+ForegroundInactive=186,194,222
+ForegroundLink=137,180,250
+ForegroundNegative=243,139,168
+ForegroundNeutral=249,226,175
+ForegroundNormal=255,255,255
+ForegroundPositive=166,227,161
+ForegroundVisited=137,180,250
+
+[Colors:Tooltip]
+BackgroundAlternate=69,71,90
+BackgroundNormal=16,16,25
+DecorationFocus=203,166,247
+DecorationHover=203,166,247
+ForegroundActive=116,199,236
+ForegroundInactive=186,194,222
+ForegroundLink=137,180,250
+ForegroundNegative=243,139,168
+ForegroundNeutral=249,226,175
+ForegroundNormal=205,214,244
+ForegroundPositive=166,227,161
+ForegroundVisited=137,180,250
+
+[Colors:View]
+BackgroundAlternate=39,39,59
+BackgroundNormal=34,34,51
+DecorationFocus=203,166,247
+DecorationHover=203,166,247
+ForegroundActive=116,199,236
+ForegroundInactive=186,194,222
+ForegroundLink=137,180,250
+ForegroundNegative=243,139,168
+ForegroundNeutral=249,226,175
+ForegroundNormal=205,214,244
+ForegroundPositive=166,227,161
+ForegroundVisited=137,180,250
+
+[Colors:Window]
+BackgroundAlternate=24,24,37
+BackgroundNormal=30,30,46
+DecorationFocus=203,166,247
+DecorationHover=203,166,247
+ForegroundActive=116,199,236
+ForegroundInactive=186,194,222
+ForegroundLink=137,180,250
+ForegroundNegative=243,139,168
+ForegroundNeutral=249,226,175
+ForegroundNormal=205,214,244
+ForegroundPositive=166,227,161
+ForegroundVisited=137,180,250
+
+[General]
+Name=Catppuccin.Mocha
+shadeSortColumn=true
+
+[KDE]
+contrast=7
+
+[WM]
+activeBackground=30,30,46
+activeBlend=30,30,46
+activeForeground=205,214,244
+inactiveBackground=30,30,46
+inactiveBlend=30,30,46
+inactiveForeground=186,194,222
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinMochaBlue.colors b/config/qt6/.local/share/color-schemes/CatppuccinMochaBlue.colors
new file mode 100644
index 0000000..0e8049e
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinMochaBlue.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=30, 30, 46
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=30, 30, 46
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=137, 180, 250
+BackgroundNormal=49, 50, 68
+DecorationFocus=137, 180, 250
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=137, 180, 250
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Complementary]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=24, 24, 37
+DecorationFocus=137, 180, 250
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=137, 180, 250
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Header]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=24, 24, 37
+DecorationFocus=137, 180, 250
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=137, 180, 250
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Selection]
+BackgroundAlternate=137, 180, 250
+BackgroundNormal=137, 180, 250
+DecorationFocus=137, 180, 250
+DecorationHover=69, 71, 90
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=30, 30, 46
+DecorationFocus=137, 180, 250
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=137, 180, 250
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:View]
+BackgroundAlternate=24, 24, 37
+BackgroundNormal=30, 30, 46
+DecorationFocus=137, 180, 250
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=137, 180, 250
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Window]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=24, 24, 37
+DecorationFocus=137, 180, 250
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=137, 180, 250
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[General]
+ColorScheme=CatppuccinMochaBlue
+Name=Catppuccin Mocha Blue
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=30, 30, 46
+activeBlend=205, 214, 244
+activeForeground=205, 214, 244
+inactiveBackground=17, 17, 27
+inactiveBlend=166, 173, 200
+inactiveForeground=166, 173, 200
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinMochaFlamingo.colors b/config/qt6/.local/share/color-schemes/CatppuccinMochaFlamingo.colors
new file mode 100644
index 0000000..f998afe
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinMochaFlamingo.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=30, 30, 46
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=30, 30, 46
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=242, 205, 205
+BackgroundNormal=49, 50, 68
+DecorationFocus=242, 205, 205
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=242, 205, 205
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Complementary]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=24, 24, 37
+DecorationFocus=242, 205, 205
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=242, 205, 205
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Header]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=24, 24, 37
+DecorationFocus=242, 205, 205
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=242, 205, 205
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Selection]
+BackgroundAlternate=242, 205, 205
+BackgroundNormal=242, 205, 205
+DecorationFocus=242, 205, 205
+DecorationHover=69, 71, 90
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=30, 30, 46
+DecorationFocus=242, 205, 205
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=242, 205, 205
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:View]
+BackgroundAlternate=24, 24, 37
+BackgroundNormal=30, 30, 46
+DecorationFocus=242, 205, 205
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=242, 205, 205
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Window]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=24, 24, 37
+DecorationFocus=242, 205, 205
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=242, 205, 205
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[General]
+ColorScheme=CatppuccinMochaFlamingo
+Name=Catppuccin Mocha Flamingo
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=30, 30, 46
+activeBlend=205, 214, 244
+activeForeground=205, 214, 244
+inactiveBackground=17, 17, 27
+inactiveBlend=166, 173, 200
+inactiveForeground=166, 173, 200
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinMochaGreen.colors b/config/qt6/.local/share/color-schemes/CatppuccinMochaGreen.colors
new file mode 100644
index 0000000..06ad7c8
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinMochaGreen.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=30, 30, 46
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=30, 30, 46
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=166, 227, 161
+BackgroundNormal=49, 50, 68
+DecorationFocus=166, 227, 161
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=166, 227, 161
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Complementary]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=24, 24, 37
+DecorationFocus=166, 227, 161
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=166, 227, 161
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Header]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=24, 24, 37
+DecorationFocus=166, 227, 161
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=166, 227, 161
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Selection]
+BackgroundAlternate=166, 227, 161
+BackgroundNormal=166, 227, 161
+DecorationFocus=166, 227, 161
+DecorationHover=69, 71, 90
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=30, 30, 46
+DecorationFocus=166, 227, 161
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=166, 227, 161
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:View]
+BackgroundAlternate=24, 24, 37
+BackgroundNormal=30, 30, 46
+DecorationFocus=166, 227, 161
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=166, 227, 161
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Window]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=24, 24, 37
+DecorationFocus=166, 227, 161
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=166, 227, 161
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[General]
+ColorScheme=CatppuccinMochaGreen
+Name=Catppuccin Mocha Green
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=30, 30, 46
+activeBlend=205, 214, 244
+activeForeground=205, 214, 244
+inactiveBackground=17, 17, 27
+inactiveBlend=166, 173, 200
+inactiveForeground=166, 173, 200
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinMochaLavender.colors b/config/qt6/.local/share/color-schemes/CatppuccinMochaLavender.colors
new file mode 100644
index 0000000..7a7f891
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinMochaLavender.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=30, 30, 46
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=30, 30, 46
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=180, 190, 254
+BackgroundNormal=49, 50, 68
+DecorationFocus=180, 190, 254
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=180, 190, 254
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Complementary]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=24, 24, 37
+DecorationFocus=180, 190, 254
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=180, 190, 254
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Header]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=24, 24, 37
+DecorationFocus=180, 190, 254
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=180, 190, 254
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Selection]
+BackgroundAlternate=180, 190, 254
+BackgroundNormal=180, 190, 254
+DecorationFocus=180, 190, 254
+DecorationHover=69, 71, 90
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=30, 30, 46
+DecorationFocus=180, 190, 254
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=180, 190, 254
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:View]
+BackgroundAlternate=24, 24, 37
+BackgroundNormal=30, 30, 46
+DecorationFocus=180, 190, 254
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=180, 190, 254
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Window]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=24, 24, 37
+DecorationFocus=180, 190, 254
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=180, 190, 254
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[General]
+ColorScheme=CatppuccinMochaLavender
+Name=Catppuccin Mocha Lavender
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=30, 30, 46
+activeBlend=205, 214, 244
+activeForeground=205, 214, 244
+inactiveBackground=17, 17, 27
+inactiveBlend=166, 173, 200
+inactiveForeground=166, 173, 200
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinMochaMaroon.colors b/config/qt6/.local/share/color-schemes/CatppuccinMochaMaroon.colors
new file mode 100644
index 0000000..0a82c2a
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinMochaMaroon.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=30, 30, 46
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=30, 30, 46
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=235, 160, 172
+BackgroundNormal=49, 50, 68
+DecorationFocus=235, 160, 172
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=235, 160, 172
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Complementary]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=24, 24, 37
+DecorationFocus=235, 160, 172
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=235, 160, 172
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Header]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=24, 24, 37
+DecorationFocus=235, 160, 172
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=235, 160, 172
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Selection]
+BackgroundAlternate=235, 160, 172
+BackgroundNormal=235, 160, 172
+DecorationFocus=235, 160, 172
+DecorationHover=69, 71, 90
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=30, 30, 46
+DecorationFocus=235, 160, 172
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=235, 160, 172
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:View]
+BackgroundAlternate=24, 24, 37
+BackgroundNormal=30, 30, 46
+DecorationFocus=235, 160, 172
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=235, 160, 172
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Window]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=24, 24, 37
+DecorationFocus=235, 160, 172
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=235, 160, 172
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[General]
+ColorScheme=CatppuccinMochaMaroon
+Name=Catppuccin Mocha Maroon
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=30, 30, 46
+activeBlend=205, 214, 244
+activeForeground=205, 214, 244
+inactiveBackground=17, 17, 27
+inactiveBlend=166, 173, 200
+inactiveForeground=166, 173, 200
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinMochaMauve.colors b/config/qt6/.local/share/color-schemes/CatppuccinMochaMauve.colors
new file mode 100644
index 0000000..4ef7ea2
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinMochaMauve.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=30, 30, 46
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=30, 30, 46
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=203, 166, 247
+BackgroundNormal=49, 50, 68
+DecorationFocus=203, 166, 247
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=203, 166, 247
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Complementary]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=24, 24, 37
+DecorationFocus=203, 166, 247
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=203, 166, 247
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Header]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=24, 24, 37
+DecorationFocus=203, 166, 247
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=203, 166, 247
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Selection]
+BackgroundAlternate=203, 166, 247
+BackgroundNormal=203, 166, 247
+DecorationFocus=203, 166, 247
+DecorationHover=69, 71, 90
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=30, 30, 46
+DecorationFocus=203, 166, 247
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=203, 166, 247
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:View]
+BackgroundAlternate=24, 24, 37
+BackgroundNormal=30, 30, 46
+DecorationFocus=203, 166, 247
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=203, 166, 247
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Window]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=24, 24, 37
+DecorationFocus=203, 166, 247
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=203, 166, 247
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[General]
+ColorScheme=CatppuccinMochaMauve
+Name=Catppuccin Mocha Mauve
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=30, 30, 46
+activeBlend=205, 214, 244
+activeForeground=205, 214, 244
+inactiveBackground=17, 17, 27
+inactiveBlend=166, 173, 200
+inactiveForeground=166, 173, 200
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinMochaPeach.colors b/config/qt6/.local/share/color-schemes/CatppuccinMochaPeach.colors
new file mode 100644
index 0000000..260ef46
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinMochaPeach.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=30, 30, 46
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=30, 30, 46
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=250, 179, 135
+BackgroundNormal=49, 50, 68
+DecorationFocus=250, 179, 135
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=250, 179, 135
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Complementary]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=24, 24, 37
+DecorationFocus=250, 179, 135
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=250, 179, 135
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Header]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=24, 24, 37
+DecorationFocus=250, 179, 135
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=250, 179, 135
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Selection]
+BackgroundAlternate=250, 179, 135
+BackgroundNormal=250, 179, 135
+DecorationFocus=250, 179, 135
+DecorationHover=69, 71, 90
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=30, 30, 46
+DecorationFocus=250, 179, 135
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=250, 179, 135
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:View]
+BackgroundAlternate=24, 24, 37
+BackgroundNormal=30, 30, 46
+DecorationFocus=250, 179, 135
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=250, 179, 135
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Window]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=24, 24, 37
+DecorationFocus=250, 179, 135
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=250, 179, 135
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[General]
+ColorScheme=CatppuccinMochaPeach
+Name=Catppuccin Mocha Peach
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=30, 30, 46
+activeBlend=205, 214, 244
+activeForeground=205, 214, 244
+inactiveBackground=17, 17, 27
+inactiveBlend=166, 173, 200
+inactiveForeground=166, 173, 200
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinMochaPink.colors b/config/qt6/.local/share/color-schemes/CatppuccinMochaPink.colors
new file mode 100644
index 0000000..5767417
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinMochaPink.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=30, 30, 46
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=30, 30, 46
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=245, 194, 231
+BackgroundNormal=49, 50, 68
+DecorationFocus=245, 194, 231
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=245, 194, 231
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Complementary]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=24, 24, 37
+DecorationFocus=245, 194, 231
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=245, 194, 231
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Header]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=24, 24, 37
+DecorationFocus=245, 194, 231
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=245, 194, 231
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Selection]
+BackgroundAlternate=245, 194, 231
+BackgroundNormal=245, 194, 231
+DecorationFocus=245, 194, 231
+DecorationHover=69, 71, 90
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=30, 30, 46
+DecorationFocus=245, 194, 231
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=245, 194, 231
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:View]
+BackgroundAlternate=24, 24, 37
+BackgroundNormal=30, 30, 46
+DecorationFocus=245, 194, 231
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=245, 194, 231
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Window]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=24, 24, 37
+DecorationFocus=245, 194, 231
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=245, 194, 231
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[General]
+ColorScheme=CatppuccinMochaPink
+Name=Catppuccin Mocha Pink
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=30, 30, 46
+activeBlend=205, 214, 244
+activeForeground=205, 214, 244
+inactiveBackground=17, 17, 27
+inactiveBlend=166, 173, 200
+inactiveForeground=166, 173, 200
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinMochaRed.colors b/config/qt6/.local/share/color-schemes/CatppuccinMochaRed.colors
new file mode 100644
index 0000000..ced7c8f
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinMochaRed.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=30, 30, 46
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=30, 30, 46
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=243, 139, 168
+BackgroundNormal=49, 50, 68
+DecorationFocus=243, 139, 168
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=243, 139, 168
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Complementary]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=24, 24, 37
+DecorationFocus=243, 139, 168
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=243, 139, 168
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Header]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=24, 24, 37
+DecorationFocus=243, 139, 168
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=243, 139, 168
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Selection]
+BackgroundAlternate=243, 139, 168
+BackgroundNormal=243, 139, 168
+DecorationFocus=243, 139, 168
+DecorationHover=69, 71, 90
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=30, 30, 46
+DecorationFocus=243, 139, 168
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=243, 139, 168
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:View]
+BackgroundAlternate=24, 24, 37
+BackgroundNormal=30, 30, 46
+DecorationFocus=243, 139, 168
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=243, 139, 168
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Window]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=24, 24, 37
+DecorationFocus=243, 139, 168
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=243, 139, 168
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[General]
+ColorScheme=CatppuccinMochaRed
+Name=Catppuccin Mocha Red
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=30, 30, 46
+activeBlend=205, 214, 244
+activeForeground=205, 214, 244
+inactiveBackground=17, 17, 27
+inactiveBlend=166, 173, 200
+inactiveForeground=166, 173, 200
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinMochaRosewater.colors b/config/qt6/.local/share/color-schemes/CatppuccinMochaRosewater.colors
new file mode 100644
index 0000000..093260c
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinMochaRosewater.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=30, 30, 46
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=30, 30, 46
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=245, 224, 220
+BackgroundNormal=49, 50, 68
+DecorationFocus=245, 224, 220
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=245, 224, 220
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Complementary]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=24, 24, 37
+DecorationFocus=245, 224, 220
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=245, 224, 220
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Header]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=24, 24, 37
+DecorationFocus=245, 224, 220
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=245, 224, 220
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Selection]
+BackgroundAlternate=245, 224, 220
+BackgroundNormal=245, 224, 220
+DecorationFocus=245, 224, 220
+DecorationHover=69, 71, 90
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=30, 30, 46
+DecorationFocus=245, 224, 220
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=245, 224, 220
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:View]
+BackgroundAlternate=24, 24, 37
+BackgroundNormal=30, 30, 46
+DecorationFocus=245, 224, 220
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=245, 224, 220
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Window]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=24, 24, 37
+DecorationFocus=245, 224, 220
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=245, 224, 220
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[General]
+ColorScheme=CatppuccinMochaRosewater
+Name=Catppuccin Mocha Rosewater
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=30, 30, 46
+activeBlend=205, 214, 244
+activeForeground=205, 214, 244
+inactiveBackground=17, 17, 27
+inactiveBlend=166, 173, 200
+inactiveForeground=166, 173, 200
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinMochaSapphire.colors b/config/qt6/.local/share/color-schemes/CatppuccinMochaSapphire.colors
new file mode 100644
index 0000000..442c37a
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinMochaSapphire.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=30, 30, 46
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=30, 30, 46
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=116, 199, 236
+BackgroundNormal=49, 50, 68
+DecorationFocus=116, 199, 236
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=116, 199, 236
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Complementary]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=24, 24, 37
+DecorationFocus=116, 199, 236
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=116, 199, 236
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Header]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=24, 24, 37
+DecorationFocus=116, 199, 236
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=116, 199, 236
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Selection]
+BackgroundAlternate=116, 199, 236
+BackgroundNormal=116, 199, 236
+DecorationFocus=116, 199, 236
+DecorationHover=69, 71, 90
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=30, 30, 46
+DecorationFocus=116, 199, 236
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=116, 199, 236
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:View]
+BackgroundAlternate=24, 24, 37
+BackgroundNormal=30, 30, 46
+DecorationFocus=116, 199, 236
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=116, 199, 236
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Window]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=24, 24, 37
+DecorationFocus=116, 199, 236
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=116, 199, 236
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[General]
+ColorScheme=CatppuccinMochaSapphire
+Name=Catppuccin Mocha Sapphire
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=30, 30, 46
+activeBlend=205, 214, 244
+activeForeground=205, 214, 244
+inactiveBackground=17, 17, 27
+inactiveBlend=166, 173, 200
+inactiveForeground=166, 173, 200
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinMochaSky.colors b/config/qt6/.local/share/color-schemes/CatppuccinMochaSky.colors
new file mode 100644
index 0000000..fbb23af
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinMochaSky.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=30, 30, 46
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=30, 30, 46
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=137, 220, 235
+BackgroundNormal=49, 50, 68
+DecorationFocus=137, 220, 235
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=137, 220, 235
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Complementary]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=24, 24, 37
+DecorationFocus=137, 220, 235
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=137, 220, 235
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Header]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=24, 24, 37
+DecorationFocus=137, 220, 235
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=137, 220, 235
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Selection]
+BackgroundAlternate=137, 220, 235
+BackgroundNormal=137, 220, 235
+DecorationFocus=137, 220, 235
+DecorationHover=69, 71, 90
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=30, 30, 46
+DecorationFocus=137, 220, 235
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=137, 220, 235
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:View]
+BackgroundAlternate=24, 24, 37
+BackgroundNormal=30, 30, 46
+DecorationFocus=137, 220, 235
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=137, 220, 235
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Window]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=24, 24, 37
+DecorationFocus=137, 220, 235
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=137, 220, 235
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[General]
+ColorScheme=CatppuccinMochaSky
+Name=Catppuccin Mocha Sky
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=30, 30, 46
+activeBlend=205, 214, 244
+activeForeground=205, 214, 244
+inactiveBackground=17, 17, 27
+inactiveBlend=166, 173, 200
+inactiveForeground=166, 173, 200
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinMochaTeal.colors b/config/qt6/.local/share/color-schemes/CatppuccinMochaTeal.colors
new file mode 100644
index 0000000..cbe3c34
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinMochaTeal.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=30, 30, 46
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=30, 30, 46
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=148, 226, 213
+BackgroundNormal=49, 50, 68
+DecorationFocus=148, 226, 213
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=148, 226, 213
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Complementary]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=24, 24, 37
+DecorationFocus=148, 226, 213
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=148, 226, 213
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Header]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=24, 24, 37
+DecorationFocus=148, 226, 213
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=148, 226, 213
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Selection]
+BackgroundAlternate=148, 226, 213
+BackgroundNormal=148, 226, 213
+DecorationFocus=148, 226, 213
+DecorationHover=69, 71, 90
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=30, 30, 46
+DecorationFocus=148, 226, 213
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=148, 226, 213
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:View]
+BackgroundAlternate=24, 24, 37
+BackgroundNormal=30, 30, 46
+DecorationFocus=148, 226, 213
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=148, 226, 213
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Window]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=24, 24, 37
+DecorationFocus=148, 226, 213
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=148, 226, 213
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[General]
+ColorScheme=CatppuccinMochaTeal
+Name=Catppuccin Mocha Teal
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=30, 30, 46
+activeBlend=205, 214, 244
+activeForeground=205, 214, 244
+inactiveBackground=17, 17, 27
+inactiveBlend=166, 173, 200
+inactiveForeground=166, 173, 200
diff --git a/config/qt6/.local/share/color-schemes/CatppuccinMochaYellow.colors b/config/qt6/.local/share/color-schemes/CatppuccinMochaYellow.colors
new file mode 100644
index 0000000..63eecd0
--- /dev/null
+++ b/config/qt6/.local/share/color-schemes/CatppuccinMochaYellow.colors
@@ -0,0 +1,143 @@
+[ColorEffects:Disabled]
+Color=30, 30, 46
+ColorAmount=0.30000000000000004
+ColorEffect=2
+ContrastAmount=0.1
+ContrastEffect=0
+IntensityAmount=-1
+IntensityEffect=0
+
+[ColorEffects:Inactive]
+ChangeSelectionColor=false
+Color=30, 30, 46
+ColorAmount=0.5
+ColorEffect=3
+ContrastAmount=0
+ContrastEffect=0
+Enable=true
+IntensityAmount=0
+IntensityEffect=0
+
+[Colors:Button]
+BackgroundAlternate=249, 226, 175
+BackgroundNormal=49, 50, 68
+DecorationFocus=249, 226, 175
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=249, 226, 175
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Complementary]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=24, 24, 37
+DecorationFocus=249, 226, 175
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=249, 226, 175
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Header]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=24, 24, 37
+DecorationFocus=249, 226, 175
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=249, 226, 175
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Selection]
+BackgroundAlternate=249, 226, 175
+BackgroundNormal=249, 226, 175
+DecorationFocus=249, 226, 175
+DecorationHover=69, 71, 90
+ForegroundInactive=17, 17, 27
+ForegroundActive=17, 17, 27
+ForegroundLink=17, 17, 27
+ForegroundNegative=17, 17, 27
+ForegroundNeutral=17, 17, 27
+ForegroundNormal=17, 17, 27
+ForegroundPositive=17, 17, 27
+ForegroundVisited=17, 17, 27
+
+
+[Colors:Tooltip]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=30, 30, 46
+DecorationFocus=249, 226, 175
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=249, 226, 175
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:View]
+BackgroundAlternate=24, 24, 37
+BackgroundNormal=30, 30, 46
+DecorationFocus=249, 226, 175
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=249, 226, 175
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[Colors:Window]
+BackgroundAlternate=17, 17, 27
+BackgroundNormal=24, 24, 37
+DecorationFocus=249, 226, 175
+DecorationHover=69, 71, 90
+ForegroundActive=250, 179, 135
+ForegroundInactive=166, 173, 200
+ForegroundLink=249, 226, 175
+ForegroundNegative=243, 139, 168
+ForegroundNeutral=249, 226, 175
+ForegroundNormal=205, 214, 244
+ForegroundPositive=166, 227, 161
+ForegroundVisited=203, 166, 247
+
+
+[General]
+ColorScheme=CatppuccinMochaYellow
+Name=Catppuccin Mocha Yellow
+accentActiveTitlebar=false
+shadeSortColumn=true
+
+
+[KDE]
+contrast=4
+
+
+[WM]
+activeBackground=30, 30, 46
+activeBlend=205, 214, 244
+activeForeground=205, 214, 244
+inactiveBackground=17, 17, 27
+inactiveBlend=166, 173, 200
+inactiveForeground=166, 173, 200
diff --git a/config/scripts/.local/scripts/change-colortheme b/config/scripts/.local/scripts/change-colortheme
index f1a2774..bbac4fe 100755
--- a/config/scripts/.local/scripts/change-colortheme
+++ b/config/scripts/.local/scripts/change-colortheme
@@ -41,7 +41,7 @@ CONFIG_DIR = Path("~/.config").expanduser()
# An application may have multiple scripts (e.g. due to config-switch)
SCRIPTS = {
"fastfetch": [CONFIG_DIR / "fastfetch" / "apply-color"],
- "kvantum": [CONFIG_DIR / "Kvantum" / "apply-color"],
+ "qt6": [CONFIG_DIR / "kdeglobals.apply" / "apply-color"],
"nwg-look": [CONFIG_DIR / "nwg-look" / "apply-color"],
"niri": [CONFIG_DIR / "niri" / "apply-color"],
"oh-my-posh": [
diff --git a/config/scripts/.local/snippets/apply-color-helper b/config/scripts/.local/snippets/apply-color-helper
index 2eecd0e..adf0973 100644
--- a/config/scripts/.local/snippets/apply-color-helper
+++ b/config/scripts/.local/snippets/apply-color-helper
@@ -35,6 +35,10 @@ function log_info {
printf "\033[0;32mInfo:\033[0m $1\n" >&2
}
+function log_warn {
+ printf "\033[0;33mWarning:\033[0m $1\n" >&2
+}
+
function color_ansi {
colorHex="$1"
@@ -51,4 +55,4 @@ function log_success {
}
# relative path
-path=$(dirname "$(readlink -f "$0")")
\ No newline at end of file
+path=$(dirname "$(readlink -f "$0")")
diff --git a/config/yazi/.config/yazi/package.toml b/config/yazi/.config/yazi/package.toml
index 7556af1..c96ec97 100644
--- a/config/yazi/.config/yazi/package.toml
+++ b/config/yazi/.config/yazi/package.toml
@@ -1,11 +1,11 @@
[[plugin.deps]]
use = "yazi-rs/plugins:git"
-rev = "6f26ae0"
-hash = "ce345e7e8baed03a2561b314fa85e59a"
+rev = "4848aac"
+hash = "5bb0bfab901d3601c370eafdd66edd31"
[[plugin.deps]]
use = "yazi-rs/plugins:smart-enter"
-rev = "6f26ae0"
+rev = "4848aac"
hash = "187cc58ba7ac3befd49c342129e6f1b6"
[[plugin.deps]]
diff --git a/config/yazi/.config/yazi/plugins/git.yazi/README.md b/config/yazi/.config/yazi/plugins/git.yazi/README.md
index f9fc3ae..6127b7d 100644
--- a/config/yazi/.config/yazi/plugins/git.yazi/README.md
+++ b/config/yazi/.config/yazi/plugins/git.yazi/README.md
@@ -40,10 +40,11 @@ group = "git"
You can customize the [Style](https://yazi-rs.github.io/docs/configuration/theme#types.style) of the status sign with:
- `[git].unknown` - status cannot/not yet determined
-- `[git].modified` - modified file
-- `[git].added` - added file
-- `[git].untracked` - untracked file
- `[git].ignored` - ignored file
+- `[git].untracked` - untracked file
+- `[git].unstaged` - unstaged file
+- `[git].staged` - staged file
+- `[git].added` - staged new file
- `[git].deleted` - deleted file
- `[git].updated` - updated file
- `[git].clean` - clean file
@@ -53,17 +54,18 @@ For example:
```toml
# theme.toml / flavor.toml
[git]
-modified = { fg = "blue" }
+unstaged = { fg = "blue" }
deleted = { fg = "red", bold = true }
```
You can also customize the text of the status sign with:
- `[git].unknown_sign` - status cannot/not yet determined
-- `[git].modified_sign` - modified file
-- `[git].added_sign` - added file
-- `[git].untracked_sign` - untracked file
- `[git].ignored_sign` - ignored file
+- `[git].untracked_sign` - untracked file
+- `[git].unstaged_sign` - unstaged file
+- `[git].staged_sign` - staged file
+- `[git].added_sign` - staged new file
- `[git].deleted_sign` - deleted file
- `[git].updated_sign` - updated file
- `[git].clean_sign` - clean file
@@ -74,7 +76,7 @@ For example:
# theme.toml / flavor.toml
[git]
unknown_sign = " "
-modified_sign = "M"
+unstaged_sign = "M"
deleted_sign = "D"
clean_sign = "✔"
```
diff --git a/config/yazi/.config/yazi/plugins/git.yazi/main.lua b/config/yazi/.config/yazi/plugins/git.yazi/main.lua
index cad3f50..7bfd99c 100644
--- a/config/yazi/.config/yazi/plugins/git.yazi/main.lua
+++ b/config/yazi/.config/yazi/plugins/git.yazi/main.lua
@@ -9,9 +9,10 @@ local WINDOWS = ya.target_family() == "windows"
local CODES = {
unknown = 100, -- status cannot/not yet determined
excluded = 99, -- ignored directory
- ignored = 6, -- ignored file
- untracked = 5,
- modified = 4,
+ ignored = 7, -- ignored file
+ untracked = 6,
+ unstaged = 5,
+ staged = 4,
added = 3,
deleted = 2,
updated = 1,
@@ -21,7 +22,8 @@ local CODES = {
local PATTERNS = {
{ "!$", CODES.ignored },
{ "?$", CODES.untracked },
- { "[MT]", CODES.modified },
+ { ".[MT]", CODES.unstaged },
+ { "[MT] ", CODES.staged },
{ "[AC]", CODES.added },
{ "D", CODES.deleted },
{ "U", CODES.updated },
@@ -34,7 +36,8 @@ local function theme()
[CODES.unknown] = t.unknown or ui.Style(),
[CODES.ignored] = t.ignored or ui.Style():fg("darkgray"),
[CODES.untracked] = t.untracked or ui.Style():fg("magenta"),
- [CODES.modified] = t.modified or ui.Style():fg("yellow"),
+ [CODES.unstaged] = t.unstaged or ui.Style():fg("yellow"),
+ [CODES.staged] = t.staged or ui.Style():fg("green"),
[CODES.added] = t.added or ui.Style():fg("green"),
[CODES.deleted] = t.deleted or ui.Style():fg("red"),
[CODES.updated] = t.updated or ui.Style():fg("yellow"),
@@ -43,7 +46,8 @@ local function theme()
[CODES.unknown] = t.unknown_sign or "",
[CODES.ignored] = t.ignored_sign or " ",
[CODES.untracked] = t.untracked_sign or "? ",
- [CODES.modified] = t.modified_sign or " ",
+ [CODES.unstaged] = t.unstaged_sign or " ",
+ [CODES.staged] = t.staged_sign or " ",
[CODES.added] = t.added_sign or " ",
[CODES.deleted] = t.deleted_sign or " ",
[CODES.updated] = t.updated_sign or " ",
diff --git a/config/yazi/.config/yazi/plugins/git.yazi/types.lua b/config/yazi/.config/yazi/plugins/git.yazi/types.lua
index dc4e77b..30a8657 100644
--- a/config/yazi/.config/yazi/plugins/git.yazi/types.lua
+++ b/config/yazi/.config/yazi/plugins/git.yazi/types.lua
@@ -4,7 +4,7 @@
---@class Options
---@field order number The order in which the status is displayed
----@field renamed boolean Whether to include renamed files in the status (or treat them as modified)
+---@field renamed boolean Whether to include renamed files in the status (or treat them as unstaged)
-- TODO: move this to `types.yazi` once it's get stable
---@alias UnstableFetcher fun(self: unknown, job: { files: File[] })
diff --git a/legacy/waybar/.config/waybar/style.css b/legacy/waybar/.config/waybar/style.css
index 3ad02a9..8f3b9b3 100644
--- a/legacy/waybar/.config/waybar/style.css
+++ b/legacy/waybar/.config/waybar/style.css
@@ -6,8 +6,8 @@
/* Font(s) */
* {
- /* main font icons CJK fallback */
- font-family: 'Sour Gummy Light', 'Meslo LGM Nerd Font Mono', 'Sarasa UI SC', 'Noto Sans', sans-serif;
+ /* main font icons fallback */
+ font-family: 'LXGW WenKai', 'Meslo LGM Nerd Font Mono', sans-serif;
font-size: 16px;
}