diff --git a/modules/bar/Bar.ts b/modules/bar/Bar.ts index eb01ba4..7a342e0 100644 --- a/modules/bar/Bar.ts +++ b/modules/bar/Bar.ts @@ -79,7 +79,7 @@ const getModulesForMonitor = (monitor: number, curLayouts: BarLayout) => { const widget = { battery: () => WidgetContainer(BatteryLabel()), dashboard: () => WidgetContainer(Menu()), - workspaces: (monitor: number) => WidgetContainer(Workspaces(monitor, 10)), + workspaces: (monitor: number) => WidgetContainer(Workspaces(monitor)), windowtitle: () => WidgetContainer(ClientTitle()), media: () => WidgetContainer(Media()), notifications: () => WidgetContainer(Notifications()), diff --git a/modules/menus/notifications/controls/index.ts b/modules/menus/notifications/controls/index.ts index 4e1bd96..5226f4d 100644 --- a/modules/menus/notifications/controls/index.ts +++ b/modules/menus/notifications/controls/index.ts @@ -1,4 +1,6 @@ -const Controls = (notifs) => { +import { Notifications } from "types/service/notifications"; + +const Controls = (notifs: Notifications) => { return Widget.Box({ class_name: "notification-menu-controls", expand: false, diff --git a/modules/menus/notifications/index.ts b/modules/menus/notifications/index.ts index 32dac44..de4a4d3 100644 --- a/modules/menus/notifications/index.ts +++ b/modules/menus/notifications/index.ts @@ -2,25 +2,47 @@ import DropdownMenu from "../DropdownMenu.js"; const notifs = await Service.import("notifications"); import { Controls } from "./controls/index.js"; import { NotificationCard } from "./notification/index.js"; +import { NotificationPager } from "./pager/index.js"; + +import options from "options"; + +const { displayedTotal } = options.notifications; +const { show: showPager } = options.theme.bar.menus.menu.notifications.pager; export default () => { - return DropdownMenu({ - name: "notificationsmenu", - transition: "crossfade", - child: Widget.Box({ - class_name: "notification-menu-content", - css: "padding: 1px; margin: -1px;", - hexpand: true, - vexpand: false, - children: [ - Widget.Box({ - class_name: "notification-card-container menu", - vertical: true, - hexpand: false, - vexpand: false, - children: [Controls(notifs), NotificationCard(notifs)], + const curPage = Variable(1); + + Utils.merge([curPage.bind("value"), displayedTotal.bind("value"), notifs.bind("notifications")], (currentPage, dispTotal, notifications) => { + // If the page doesn't have enough notifications to display, go back + // to the previous page. + if (notifications.length <= (currentPage - 1) * dispTotal) { + curPage.value = currentPage <= 1 ? 1 : currentPage - 1; + } + }); + + return DropdownMenu({ + name: "notificationsmenu", + transition: "crossfade", + child: Widget.Box({ + class_name: "notification-menu-content", + css: "padding: 1px; margin: -1px;", + hexpand: true, + vexpand: false, + children: [ + Widget.Box({ + class_name: "notification-card-container menu", + vertical: true, + hexpand: false, + vexpand: false, + children: showPager.bind("value").as(shPgr => { + if (shPgr) { + return [Controls(notifs), NotificationCard(notifs, curPage), NotificationPager(curPage)]; + } + return [Controls(notifs), NotificationCard(notifs, curPage)] + + }) + }), + ], }), - ], - }), - }); + }); }; diff --git a/modules/menus/notifications/notification/index.ts b/modules/menus/notifications/notification/index.ts index d975c28..74cdfa1 100644 --- a/modules/menus/notifications/notification/index.ts +++ b/modules/menus/notifications/notification/index.ts @@ -6,54 +6,63 @@ import { Image } from "./image/index.js"; import { Placeholder } from "./placeholder/index.js"; import { Body } from "./body/index.js"; import { CloseButton } from "./close/index.js"; +import options from "options.js"; +import { Variable } from "types/variable.js"; -const NotificationCard = (notifs: Notifications) => { - return Widget.Box({ - class_name: "menu-content-container notifications", - hpack: "center", - vexpand: true, - spacing: 0, - vertical: true, - setup: (self) => { - self.hook(notifs, () => { - const sortedNotifications = notifs.notifications.sort( - (a, b) => b.time - a.time, - ); +const { displayedTotal } = options.notifications; - if (notifs.notifications.length <= 0) { - return (self.children = [Placeholder(notifs)]); - } +const NotificationCard = (notifs: Notifications, curPage: Variable) => { + return Widget.Scrollable({ + vscroll: "automatic", + child: Widget.Box({ + class_name: "menu-content-container notifications", + hpack: "center", + vexpand: true, + spacing: 0, + vertical: true, + setup: (self) => { + Utils.merge([notifs.bind("notifications"), curPage.bind("value"), displayedTotal.bind("value")], (notifications, currentPage, dispTotal) => { + const sortedNotifications = notifications.sort( + (a, b) => b.time - a.time, + ); - return (self.children = sortedNotifications.map((notif: Notification) => { - return Widget.Box({ - class_name: "notification-card-content-container", - children: [ - Widget.Box({ - class_name: "notification-card menu", - vpack: "start", - hexpand: true, - vexpand: false, - children: [ - Image(notif), - Widget.Box({ - vpack: "center", - vertical: true, - hexpand: true, - class_name: `notification-card-content ${!notifHasImg(notif) ? "noimg" : " menu"}`, - children: [ - Header(notif), - Body(notif), - Actions(notif, notifs), - ], - }), - ], - }), - CloseButton(notif, notifs), - ], - }); - })); - }); - }, + if (notifications.length <= 0) { + return (self.children = [Placeholder(notifs)]); + } + + const pageStart = (currentPage - 1) * dispTotal; + const pageEnd = currentPage * dispTotal; + return (self.children = sortedNotifications.slice(pageStart, pageEnd).map((notif: Notification) => { + return Widget.Box({ + class_name: "notification-card-content-container", + children: [ + Widget.Box({ + class_name: "notification-card menu", + vpack: "start", + hexpand: true, + vexpand: false, + children: [ + Image(notif), + Widget.Box({ + vpack: "center", + vertical: true, + hexpand: true, + class_name: `notification-card-content ${!notifHasImg(notif) ? "noimg" : " menu"}`, + children: [ + Header(notif), + Body(notif), + Actions(notif, notifs), + ], + }), + ], + }), + CloseButton(notif, notifs), + ], + }); + })); + }); + }, + }) }); }; diff --git a/modules/menus/notifications/pager/index.ts b/modules/menus/notifications/pager/index.ts new file mode 100644 index 0000000..92dceb7 --- /dev/null +++ b/modules/menus/notifications/pager/index.ts @@ -0,0 +1,74 @@ +const notifs = await Service.import("notifications"); + +import options from "options"; +import { Variable } from "types/variable"; + +const { displayedTotal } = options.notifications; + +export const NotificationPager = (curPage: Variable) => { + return Widget.Box({ + class_name: "notification-menu-pager", + hexpand: true, + vexpand: false, + children: Utils.merge([curPage.bind("value"), displayedTotal.bind("value"), notifs.bind("notifications")], (currentPage, dispTotal, notifications) => { + return [ + Widget.Button({ + hexpand: true, + hpack: "start", + class_name: `pager-button left ${currentPage <= 1 ? "disabled" : ""}`, + onPrimaryClick: () => { + curPage.value = 1; + }, + child: Widget.Label({ + className: "pager-button-label", + label: "" + }), + }), + Widget.Button({ + hexpand: true, + hpack: "start", + class_name: `pager-button left ${currentPage <= 1 ? "disabled" : ""}`, + onPrimaryClick: () => { + curPage.value = currentPage <= 1 ? 1 : currentPage - 1; + }, + child: Widget.Label({ + className: "pager-button-label", + label: "" + }), + }), + Widget.Label({ + hexpand: true, + hpack: "center", + class_name: "pager-label", + label: `${currentPage} / ${Math.ceil(notifs.notifications.length / dispTotal) || 1}` + }), + Widget.Button({ + hexpand: true, + hpack: "end", + class_name: `pager-button right ${currentPage >= Math.ceil(notifs.notifications.length / dispTotal) ? "disabled" : ""}`, + onPrimaryClick: () => { + const maxPage = Math.ceil(notifs.notifications.length / displayedTotal.value); + curPage.value = currentPage >= maxPage ? currentPage : currentPage + 1; + }, + child: Widget.Label({ + className: "pager-button-label", + label: "" + }), + }), + Widget.Button({ + hexpand: true, + hpack: "end", + class_name: `pager-button right ${currentPage >= Math.ceil(notifs.notifications.length / dispTotal) ? "disabled" : ""}`, + onPrimaryClick: () => { + const maxPage = Math.ceil(notifs.notifications.length / displayedTotal.value); + curPage.value = maxPage; + }, + child: Widget.Label({ + className: "pager-button-label", + label: "󰄾" + }), + }), + ] + }) + }) +} diff --git a/modules/notifications/index.ts b/modules/notifications/index.ts index ab41097..4e742d9 100644 --- a/modules/notifications/index.ts +++ b/modules/notifications/index.ts @@ -9,7 +9,7 @@ import { CloseButton } from "./close/index.js"; import { getPosition } from "lib/utils.js"; const hyprland = await Service.import("hyprland"); -const { position, timeout, cache_actions, monitor, active_monitor } = options.notifications; +const { position, timeout, cache_actions, monitor, active_monitor, displayedTotal } = options.notifications; const curMonitor = Variable(monitor.value); @@ -47,7 +47,7 @@ export default () => { hexpand: true, setup: (self) => { self.hook(notifs, () => { - return (self.children = notifs.popups.map((notif) => { + return (self.children = notifs.popups.slice(0, displayedTotal.value).map((notif) => { return Widget.Box({ class_name: "notification-card", vpack: "start", diff --git a/options.ts b/options.ts index 71f6f6d..b777c23 100644 --- a/options.ts +++ b/options.ts @@ -4,33 +4,33 @@ import { MatugenScheme, MatugenTheme, MatugenVariation } from "lib/types/options // WARN: CHANGING THESE VALUES WILL PREVENT MATUGEN COLOR GENERATION FOR THE CHANGED VALUE export const colors = { - "rosewater": "#f5e0dc", - "flamingo": "#f2cdcd", - "pink": "#f5c2e7", - "mauve": "#cba6f7", - "red": "#f38ba8", - "maroon": "#eba0ac", - "peach": "#fab387", - "yellow": "#f9e2af", - "green": "#a6e3a1", - "teal": "#94e2d5", - "sky": "#89dceb", - "sapphire": "#74c7ec", - "blue": "#89b4fa", - "lavender": "#b4befe", - "text": "#cdd6f4", - "subtext1": "#bac2de", - "subtext2": "#a6adc8", - "overlay2": "#9399b2", - "overlay1": "#7f849c", - "overlay0": "#6c7086", - "surface2": "#585b70", - "surface1": "#45475a", - "surface0": "#313244", - "base2": "#242438", - "base": "#1e1e2e", - "mantle": "#181825", - "crust": "#11111b" + rosewater: "#f5e0dc", + flamingo: "#f2cdcd", + pink: "#f5c2e7", + mauve: "#cba6f7", + red: "#f38ba8", + maroon: "#eba0ac", + peach: "#fab387", + yellow: "#f9e2af", + green: "#a6e3a1", + teal: "#94e2d5", + sky: "#89dceb", + sapphire: "#74c7ec", + blue: "#89b4fa", + lavender: "#b4befe", + text: "#cdd6f4", + subtext1: "#bac2de", + subtext2: "#a6adc8", + overlay2: "#9399b2", + overlay1: "#7f849c", + overlay0: "#6c7086", + surface2: "#585b70", + surface1: "#45475a", + surface0: "#313244", + base2: "#242438", + base: "#1e1e2e", + mantle: "#181825", + crust: "#11111b" }; // WARN: CHANGING THESE VALUES WILL PREVENT MATUGEN COLOR GENERATION FOR THE CHANGED VALUE @@ -629,6 +629,7 @@ const options = mkOptions(OPTIONS, { }, notifications: { scaling: opt(100), + height: opt("58em"), label: opt(colors.lavender), no_notifications_label: opt(colors.surface0), background: opt(colors.crust), @@ -641,6 +642,17 @@ const options = mkOptions(OPTIONS, { disabled: opt(tertiary_colors.surface0), puck: opt(secondary_colors.surface1) }, + pager: { + show: opt(true), + background: opt(colors.crust), + button: opt(colors.lavender), + label: opt(colors.overlay2), + }, + scrollbar: { + color: opt(colors.lavender), + width: opt("0.35em"), + radius: opt("0.2em") + } }, } } @@ -867,6 +879,7 @@ const options = mkOptions(OPTIONS, { notifications: { position: opt("top right"), + displayedTotal: opt(10), monitor: opt(0), active_monitor: opt(true), timeout: opt(7000), diff --git a/scripts/fillThemes.sh b/scripts/fillThemes.sh new file mode 100755 index 0000000..2fe0a3c --- /dev/null +++ b/scripts/fillThemes.sh @@ -0,0 +1,85 @@ +#!/bin/bash + +# Generated by our good friend Jippity + +# Define directories and theme files +THEMES_DIR="$(dirname "$(realpath "$0")")/../themes" +COMPLETE_THEME_FILE="catppuccin_mocha.json" +COMPLETE_SPLIT_THEME_FILE="catppuccin_mocha_split.json" + +# Check if jq is installed +if ! command -v jq &>/dev/null; then + echo "jq is required but not installed. Please install jq and try again." + exit 1 +fi + +# Function to fill missing values +fill_missing_values() { + local complete_theme_file="$1" + local target_theme_file="$2" + + # Load complete theme and target theme into variables + complete_theme=$(jq '.' "$complete_theme_file") + target_theme=$(jq '.' "$target_theme_file") + + # Create associative arrays to map colors to properties for fast lookup + declare -A color_to_props + declare -A prop_to_color + + # Populate color_to_props and prop_to_color arrays from complete theme + while IFS= read -r line; do + key=$(echo "$line" | awk '{print $1}') + value=$(echo "$line" | awk '{print $2}') + color_to_props["$value"]+="$key " + prop_to_color["$key"]="$value" + done < <(echo "$complete_theme" | jq -r 'to_entries[] | "\(.key) \(.value)"') + + # Generate filled theme by iterating over complete theme keys + filled_theme="$target_theme" + for key in "${!prop_to_color[@]}"; do + if ! echo "$target_theme" | jq -e ".\"$key\"" &>/dev/null; then + # Find corresponding color if missing in target theme + value="${prop_to_color[$key]}" + corresponding_color="" + + # Check if other properties with the same color exist in the target theme + for prop in ${color_to_props["$value"]}; do + if echo "$target_theme" | jq -e ".\"$prop\"" &>/dev/null; then + corresponding_color=$(echo "$target_theme" | jq -r ".\"$prop\"") + break + fi + done + + # Add missing property with the corresponding color + if [ -n "$corresponding_color" ]; then + filled_theme=$(echo "$filled_theme" | jq --arg key "$key" --arg value "$corresponding_color" '.[$key] = $value') + echo "Added missing property: $key with value: $corresponding_color to $target_theme_file" + else + # Default action if no corresponding color is found + echo "No corresponding color found for $key; using value from complete theme." + filled_theme=$(echo "$filled_theme" | jq --arg key "$key" --arg value "$value" '.[$key] = $value') + fi + fi + done + + # Write the filled theme back to the target file + echo "$filled_theme" >"$target_theme_file" + echo "Filled missing values in $target_theme_file" +} + +# Process all theme files in the directory +for file in "$THEMES_DIR"/*.json; do + filename=$(basename "$file") + + # Skip the complete theme files + if [[ "$filename" == "$COMPLETE_THEME_FILE" ]] || [[ "$filename" == "$COMPLETE_SPLIT_THEME_FILE" ]]; then + continue + fi + + # Determine whether to use split or non-split complete theme + if [[ "$filename" == *"_split"* ]]; then + fill_missing_values "$THEMES_DIR/$COMPLETE_SPLIT_THEME_FILE" "$file" + else + fill_missing_values "$THEMES_DIR/$COMPLETE_THEME_FILE" "$file" + fi +done diff --git a/scss/style/menus/notifications.scss b/scss/style/menus/notifications.scss index 307f44b..e14caec 100644 --- a/scss/style/menus/notifications.scss +++ b/scss/style/menus/notifications.scss @@ -5,7 +5,7 @@ .notification-card-container.menu { margin: 0em; min-width: 30.6em * $bar-menus-menu-notifications-scaling/100; - min-height: 48em * $bar-menus-menu-notifications-scaling/100; + min-height: $bar-menus-menu-notifications-height * $bar-menus-menu-notifications-scaling/100; background: if($bar-menus-monochrome, $bar-menus-background, $bar-menus-menu-notifications-background); border: $bar-menus-border-size solid if($bar-menus-monochrome, $bar-menus-border-color, $bar-menus-menu-notifications-border); border-radius: $bar-menus-border-radius; @@ -103,6 +103,19 @@ color: if($bar-menus-monochrome, $bar-menus-buttons-default, $bar-menus-menu-notifications-clear); font-size: 1.5em; } + + scrollbar { + margin-right: 0.2em; + min-width: $bar-menus-menu-notifications-scrollbar-width; + border-radius: $bar-menus-menu-notifications-scrollbar-radius; + background: transparent; + + slider { + min-width: $bar-menus-menu-notifications-scrollbar-width; + border-radius: $bar-menus-menu-notifications-scrollbar-radius; + background: $bar-menus-menu-notifications-scrollbar-color; + } + } } .notification-label-container { @@ -135,3 +148,41 @@ background: transparentize($notification-close_button-background , 0.5); } } + +.notification-menu-pager { + background: $bar-menus-menu-notifications-pager-background; + border-radius: $bar-menus-border-radius; + border-top-left-radius: 0em; + border-top-right-radius: 0em; + + .pager-button { + margin: 0em; + padding: 0.25em 1em; + color: $bar-menus-menu-notifications-pager-button; + + .pager-button-label { + font-size: 2em; + } + + &:hover { + .pager-button-label { + color: transparentize($bar-menus-menu-notifications-pager-button, 0.4); + text-decoration: none; + } + } + } + + .pager-label { + color: $bar-menus-menu-notifications-pager-label; + } + + .disabled { + color: transparentize($bar-menus-menu-notifications-pager-button, 0.8); + + &:hover { + .pager-button-label { + color: transparentize($bar-menus-menu-notifications-pager-button, 0.8); + } + } + } +} diff --git a/themes/catppuccin_frappe.json b/themes/catppuccin_frappe.json index 6856cae..bbf4934 100644 --- a/themes/catppuccin_frappe.json +++ b/themes/catppuccin_frappe.json @@ -262,12 +262,8 @@ "theme.bar.menus.check_radio_button.background": "#232534", "theme.bar.menus.check_radio_button.active": "#b9baf1", "theme.bar.buttons.style": "default", - "theme.bar.buttons.icon_background": "#242438", - "theme.bar.buttons.volume.icon_background": "#f7768e", - "theme.bar.buttons.network.icon_background": "#bb9af7", - "theme.bar.buttons.bluetooth.icon_background": "#7dcfff", - "theme.bar.buttons.windowtitle.icon_background": "#f7768e", - "theme.bar.buttons.media.icon_background": "#bb9af7", - "theme.bar.buttons.notifications.icon_background": "#bb9af7", - "theme.bar.buttons.battery.icon_background": "#e0af68" -} \ No newline at end of file + "theme.bar.menus.menu.notifications.pager.button": "#babbf1", + "theme.bar.menus.menu.notifications.scrollbar.color": "#babbf1", + "theme.bar.menus.menu.notifications.pager.label": "#949cbb", + "theme.bar.menus.menu.notifications.pager.background": "#232634" +} diff --git a/themes/catppuccin_frappe_split.json b/themes/catppuccin_frappe_split.json index 1734627..4a6150e 100644 --- a/themes/catppuccin_frappe_split.json +++ b/themes/catppuccin_frappe_split.json @@ -270,5 +270,9 @@ "theme.bar.buttons.media.icon_background": "#babbf1", "theme.bar.buttons.notifications.icon_background": "#b4befe", "theme.bar.buttons.battery.icon_background": "#e5c890", - "theme.bar.buttons.clock.icon_background": "#f4b8e4" -} \ No newline at end of file + "theme.bar.buttons.clock.icon_background": "#f4b8e4", + "theme.bar.menus.menu.notifications.pager.button": "#babbf1", + "theme.bar.menus.menu.notifications.scrollbar.color": "#babbf1", + "theme.bar.menus.menu.notifications.pager.label": "#949cbb", + "theme.bar.menus.menu.notifications.pager.background": "#232634" +} diff --git a/themes/catppuccin_latte.json b/themes/catppuccin_latte.json index e65476b..8ad5020 100644 --- a/themes/catppuccin_latte.json +++ b/themes/catppuccin_latte.json @@ -262,12 +262,8 @@ "theme.bar.menus.check_radio_button.background": "#dcdfe8", "theme.bar.menus.check_radio_button.active": "#7186fd", "theme.bar.buttons.style": "default", - "theme.bar.buttons.icon_background": "#242438", - "theme.bar.buttons.volume.icon_background": "#ee999f", - "theme.bar.buttons.network.icon_background": "#c5a0f6", - "theme.bar.buttons.bluetooth.icon_background": "#91d7e3", - "theme.bar.buttons.windowtitle.icon_background": "#f5bde6", - "theme.bar.buttons.media.icon_background": "#b7bcf8", - "theme.bar.buttons.notifications.icon_background": "#b7bcf8", - "theme.bar.buttons.battery.icon_background": "#eed49f" -} \ No newline at end of file + "theme.bar.menus.menu.notifications.pager.button": "#7287fd", + "theme.bar.menus.menu.notifications.scrollbar.color": "#7287fd", + "theme.bar.menus.menu.notifications.pager.label": "#7c7f93", + "theme.bar.menus.menu.notifications.pager.background": "#eff1f5" +} diff --git a/themes/catppuccin_latte_split.json b/themes/catppuccin_latte_split.json index eb70f7f..c88e964 100644 --- a/themes/catppuccin_latte_split.json +++ b/themes/catppuccin_latte_split.json @@ -270,5 +270,9 @@ "theme.bar.buttons.media.icon_background": "#7287fd", "theme.bar.buttons.notifications.icon_background": "#7287fd", "theme.bar.buttons.battery.icon_background": "#df8e1d", - "theme.bar.buttons.clock.icon_background": "#ea76cb" -} \ No newline at end of file + "theme.bar.buttons.clock.icon_background": "#ea76cb", + "theme.bar.menus.menu.notifications.pager.button": "#7287fd", + "theme.bar.menus.menu.notifications.scrollbar.color": "#7287fd", + "theme.bar.menus.menu.notifications.pager.label": "#7c7f93", + "theme.bar.menus.menu.notifications.pager.background": "#eff1f5" +} diff --git a/themes/catppuccin_macchiato.json b/themes/catppuccin_macchiato.json index 649a60e..1c4fd28 100644 --- a/themes/catppuccin_macchiato.json +++ b/themes/catppuccin_macchiato.json @@ -262,12 +262,8 @@ "theme.bar.menus.check_radio_button.background": "#181826", "theme.bar.menus.check_radio_button.active": "#b7bcf8", "theme.bar.buttons.style": "default", - "theme.bar.buttons.icon_background": "#242438", - "theme.bar.buttons.volume.icon_background": "#ee999f", - "theme.bar.buttons.network.icon_background": "#c5a0f6", - "theme.bar.buttons.bluetooth.icon_background": "#91d7e3", - "theme.bar.buttons.windowtitle.icon_background": "#f5bde6", - "theme.bar.buttons.media.icon_background": "#b7bcf8", - "theme.bar.buttons.notifications.icon_background": "#b7bcf8", - "theme.bar.buttons.battery.icon_background": "#eed49f" -} \ No newline at end of file + "theme.bar.menus.menu.notifications.pager.button": "#b7bdf8", + "theme.bar.menus.menu.notifications.scrollbar.color": "#b7bdf8", + "theme.bar.menus.menu.notifications.pager.label": "#939ab7", + "theme.bar.menus.menu.notifications.pager.background": "#181926" +} diff --git a/themes/catppuccin_macchiato_split.json b/themes/catppuccin_macchiato_split.json index b62ecad..a7ace8b 100644 --- a/themes/catppuccin_macchiato_split.json +++ b/themes/catppuccin_macchiato_split.json @@ -270,5 +270,9 @@ "theme.bar.buttons.media.icon_background": "#b7bcf8", "theme.bar.buttons.notifications.icon_background": "#b7bcf8", "theme.bar.buttons.battery.icon_background": "#eed49f", - "theme.bar.buttons.clock.icon_background": "#f5bde6" -} \ No newline at end of file + "theme.bar.buttons.clock.icon_background": "#f5bde6", + "theme.bar.menus.menu.notifications.pager.button": "#b7bdf8", + "theme.bar.menus.menu.notifications.scrollbar.color": "#b7bdf8", + "theme.bar.menus.menu.notifications.pager.label": "#939ab7", + "theme.bar.menus.menu.notifications.pager.background": "#181926" +} diff --git a/themes/catppuccin_mocha.json b/themes/catppuccin_mocha.json index cc683cc..afdf9d6 100644 --- a/themes/catppuccin_mocha.json +++ b/themes/catppuccin_mocha.json @@ -1,273 +1,269 @@ { - "theme.bar.menus.background": "#11111b", - "theme.bar.background": "#11111b", - "theme.bar.buttons.media.icon": "#b4befe", - "theme.bar.buttons.media.text": "#b4befe", - "theme.bar.buttons.icon": "#b4befe", - "theme.bar.buttons.text": "#b4befe", - "theme.bar.buttons.hover": "#45475a", - "theme.bar.buttons.background": "#242438", - "theme.bar.menus.text": "#cdd6f4", - "theme.bar.menus.border.color": "#313244", - "theme.bar.buttons.media.background": "#242438", - "theme.bar.menus.menu.volume.text": "#cdd6f4", - "theme.bar.menus.menu.volume.card.color": "#1e1e2e", - "theme.bar.menus.menu.volume.label.color": "#eba0ac", - "theme.bar.menus.popover.text": "#b4befe", - "theme.bar.menus.popover.background": "#181824", - "theme.bar.menus.menu.dashboard.powermenu.shutdown": "#f38ba8", - "theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#f38ba8", - "theme.bar.menus.menu.dashboard.powermenu.confirmation.confirm": "#a6e3a1", - "theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#11111a", - "theme.bar.menus.menu.dashboard.powermenu.confirmation.body": "#cdd6f4", - "theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#b4befe", - "theme.bar.menus.menu.dashboard.powermenu.confirmation.border": "#313244", - "theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#11111b", - "theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#1e1e2e", - "theme.bar.menus.menu.notifications.switch.puck": "#454759", - "theme.bar.menus.menu.notifications.switch.disabled": "#313245", - "theme.bar.menus.menu.notifications.switch.enabled": "#b4befe", - "theme.bar.menus.menu.notifications.clear": "#f38ba8", - "theme.bar.menus.menu.notifications.switch_divider": "#45475a", - "theme.bar.menus.menu.notifications.border": "#313244", - "theme.bar.menus.menu.notifications.card": "#1e1e2e", - "theme.bar.menus.menu.notifications.background": "#11111b", - "theme.bar.menus.menu.notifications.no_notifications_label": "#313244", - "theme.bar.menus.menu.notifications.label": "#b4befe", - "theme.bar.menus.menu.dashboard.monitors.disk.label": "#f5c2e7", - "theme.bar.menus.menu.dashboard.monitors.disk.bar": "#f5c2e8", - "theme.bar.menus.menu.dashboard.monitors.disk.icon": "#f5c2e7", - "theme.bar.menus.menu.dashboard.monitors.gpu.label": "#a6e3a1", - "theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#a6e3a2", - "theme.bar.menus.menu.dashboard.monitors.gpu.icon": "#a6e3a1", - "theme.bar.menus.menu.dashboard.monitors.ram.label": "#f9e2af", - "theme.bar.menus.menu.dashboard.monitors.ram.bar": "#f9e2ae", - "theme.bar.menus.menu.dashboard.monitors.ram.icon": "#f9e2af", - "theme.bar.menus.menu.dashboard.monitors.cpu.label": "#eba0ac", - "theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#eba0ad", - "theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#eba0ac", - "theme.bar.menus.menu.dashboard.monitors.bar_background": "#45475a", - "theme.bar.menus.menu.dashboard.directories.right.bottom.color": "#b4befe", - "theme.bar.menus.menu.dashboard.directories.right.middle.color": "#cba6f7", - "theme.bar.menus.menu.dashboard.directories.right.top.color": "#94e2d5", - "theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#eba0ac", - "theme.bar.menus.menu.dashboard.directories.left.middle.color": "#f9e2af", - "theme.bar.menus.menu.dashboard.directories.left.top.color": "#f5c2e7", - "theme.bar.menus.menu.dashboard.controls.input.text": "#181824", - "theme.bar.menus.menu.dashboard.controls.input.background": "#f5c2e7", - "theme.bar.menus.menu.dashboard.controls.volume.text": "#181824", - "theme.bar.menus.menu.dashboard.controls.volume.background": "#eba0ac", - "theme.bar.menus.menu.dashboard.controls.notifications.text": "#181824", - "theme.bar.menus.menu.dashboard.controls.notifications.background": "#f9e2af", - "theme.bar.menus.menu.dashboard.controls.bluetooth.text": "#181824", - "theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#89dceb", - "theme.bar.menus.menu.dashboard.controls.wifi.text": "#181824", - "theme.bar.menus.menu.dashboard.controls.wifi.background": "#cba6f7", - "theme.bar.menus.menu.dashboard.controls.disabled": "#585b70", - "theme.bar.menus.menu.dashboard.shortcuts.recording": "#a6e3a1", - "theme.bar.menus.menu.dashboard.shortcuts.text": "#181824", - "theme.bar.menus.menu.dashboard.shortcuts.background": "#b4befe", - "theme.bar.menus.menu.dashboard.powermenu.sleep": "#89dceb", - "theme.bar.menus.menu.dashboard.powermenu.logout": "#a6e3a1", - "theme.bar.menus.menu.dashboard.powermenu.restart": "#fab387", - "theme.bar.menus.menu.dashboard.profile.name": "#f5c2e7", - "theme.bar.menus.menu.dashboard.border.color": "#313244", - "theme.bar.menus.menu.dashboard.background.color": "#11111b", - "theme.bar.menus.menu.dashboard.card.color": "#1e1e2e", - "theme.bar.menus.menu.clock.weather.hourly.temperature": "#f5c2e7", - "theme.bar.menus.menu.clock.weather.hourly.icon": "#f5c2e7", - "theme.bar.menus.menu.clock.weather.hourly.time": "#f5c2e7", - "theme.bar.menus.menu.clock.weather.thermometer.extremelycold": "#89dceb", - "theme.bar.menus.menu.clock.weather.thermometer.cold": "#89b4fa", - "theme.bar.menus.menu.clock.weather.thermometer.moderate": "#b4befe", - "theme.bar.menus.menu.clock.weather.thermometer.hot": "#fab387", - "theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#f38ba8", - "theme.bar.menus.menu.clock.weather.stats": "#f5c2e7", - "theme.bar.menus.menu.clock.weather.status": "#94e2d5", - "theme.bar.menus.menu.clock.weather.temperature": "#cdd6f4", - "theme.bar.menus.menu.clock.weather.icon": "#f5c2e7", - "theme.bar.menus.menu.clock.calendar.contextdays": "#585b70", - "theme.bar.menus.menu.clock.calendar.days": "#cdd6f4", - "theme.bar.menus.menu.clock.calendar.currentday": "#f5c2e7", - "theme.bar.menus.menu.clock.calendar.paginator": "#f5c2e6", - "theme.bar.menus.menu.clock.calendar.weekdays": "#f5c2e7", - "theme.bar.menus.menu.clock.calendar.yearmonth": "#94e2d5", - "theme.bar.menus.menu.clock.time.timeperiod": "#94e2d5", - "theme.bar.menus.menu.clock.time.time": "#f5c2e7", - "theme.bar.menus.menu.clock.text": "#cdd6f4", - "theme.bar.menus.menu.clock.border.color": "#313244", - "theme.bar.menus.menu.clock.background.color": "#11111b", - "theme.bar.menus.menu.clock.card.color": "#1e1e2e", - "theme.bar.menus.menu.battery.slider.puck": "#6c7086", - "theme.bar.menus.menu.battery.slider.backgroundhover": "#45475a", - "theme.bar.menus.menu.battery.slider.background": "#585b71", - "theme.bar.menus.menu.battery.slider.primary": "#f9e2af", - "theme.bar.menus.menu.battery.icons.active": "#f9e2af", - "theme.bar.menus.menu.battery.icons.passive": "#9399b2", - "theme.bar.menus.menu.battery.listitems.active": "#f9e2af", - "theme.bar.menus.menu.battery.listitems.passive": "#cdd6f3", - "theme.bar.menus.menu.battery.text": "#cdd6f4", - "theme.bar.menus.menu.battery.label.color": "#f9e2af", - "theme.bar.menus.menu.battery.border.color": "#313244", - "theme.bar.menus.menu.battery.background.color": "#11111b", - "theme.bar.menus.menu.battery.card.color": "#1e1e2e", - "theme.bar.menus.menu.systray.dropdownmenu.divider": "#1e1e2e", - "theme.bar.menus.menu.systray.dropdownmenu.text": "#cdd6f4", - "theme.bar.menus.menu.systray.dropdownmenu.background": "#11111b", - "theme.bar.menus.menu.bluetooth.iconbutton.active": "#89dceb", - "theme.bar.menus.menu.bluetooth.iconbutton.passive": "#cdd6f4", - "theme.bar.menus.menu.bluetooth.icons.active": "#89dceb", - "theme.bar.menus.menu.bluetooth.icons.passive": "#9399b2", - "theme.bar.menus.menu.bluetooth.listitems.active": "#89dcea", - "theme.bar.menus.menu.bluetooth.listitems.passive": "#cdd6f4", - "theme.bar.menus.menu.bluetooth.switch.puck": "#454759", - "theme.bar.menus.menu.bluetooth.switch.disabled": "#313245", - "theme.bar.menus.menu.bluetooth.switch.enabled": "#89dceb", - "theme.bar.menus.menu.bluetooth.switch_divider": "#45475a", - "theme.bar.menus.menu.bluetooth.status": "#6c7086", - "theme.bar.menus.menu.bluetooth.text": "#cdd6f4", - "theme.bar.menus.menu.bluetooth.label.color": "#89dceb", - "theme.bar.menus.menu.bluetooth.border.color": "#313244", - "theme.bar.menus.menu.bluetooth.background.color": "#11111b", - "theme.bar.menus.menu.bluetooth.card.color": "#1e1e2e", - "theme.bar.menus.menu.network.iconbuttons.active": "#cba6f7", - "theme.bar.menus.menu.network.iconbuttons.passive": "#cdd6f4", - "theme.bar.menus.menu.network.icons.active": "#cba6f7", - "theme.bar.menus.menu.network.icons.passive": "#9399b2", - "theme.bar.menus.menu.network.listitems.active": "#cba6f6", - "theme.bar.menus.menu.network.listitems.passive": "#cdd6f4", - "theme.bar.menus.menu.network.status.color": "#6c7086", - "theme.bar.menus.menu.network.text": "#cdd6f4", - "theme.bar.menus.menu.network.label.color": "#cba6f7", - "theme.bar.menus.menu.network.border.color": "#313244", - "theme.bar.menus.menu.network.background.color": "#11111b", - "theme.bar.menus.menu.network.card.color": "#1e1e2e", - "theme.bar.menus.menu.volume.input_slider.puck": "#585b70", - "theme.bar.menus.menu.volume.input_slider.backgroundhover": "#45475a", - "theme.bar.menus.menu.volume.input_slider.background": "#585b71", - "theme.bar.menus.menu.volume.input_slider.primary": "#eba0ac", - "theme.bar.menus.menu.volume.audio_slider.puck": "#585b70", - "theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#45475a", - "theme.bar.menus.menu.volume.audio_slider.background": "#585b71", - "theme.bar.menus.menu.volume.audio_slider.primary": "#eba0ac", - "theme.bar.menus.menu.volume.icons.active": "#eba0ac", - "theme.bar.menus.menu.volume.icons.passive": "#9399b2", - "theme.bar.menus.menu.volume.iconbutton.active": "#eba0ac", - "theme.bar.menus.menu.volume.iconbutton.passive": "#cdd6f4", - "theme.bar.menus.menu.volume.listitems.active": "#eba0ab", - "theme.bar.menus.menu.volume.listitems.passive": "#cdd6f4", - "theme.bar.menus.menu.volume.border.color": "#313244", - "theme.bar.menus.menu.volume.background.color": "#11111b", - "theme.bar.menus.menu.media.slider.puck": "#6c7086", - "theme.bar.menus.menu.media.slider.backgroundhover": "#45475a", - "theme.bar.menus.menu.media.slider.background": "#585b71", - "theme.bar.menus.menu.media.slider.primary": "#f5c2e7", - "theme.bar.menus.menu.media.buttons.text": "#11111b", - "theme.bar.menus.menu.media.buttons.background": "#b4beff", - "theme.bar.menus.menu.media.buttons.enabled": "#94e2d4", - "theme.bar.menus.menu.media.buttons.inactive": "#585b70", - "theme.bar.menus.menu.media.border.color": "#313244", - "theme.bar.menus.menu.media.background.color": "#11111b", - "theme.bar.menus.menu.media.album": "#f5c2e8", - "theme.bar.menus.menu.media.artist": "#94e2d6", - "theme.bar.menus.menu.media.song": "#b4beff", - "theme.bar.menus.tooltip.text": "#cdd6f4", - "theme.bar.menus.tooltip.background": "#11111b", - "theme.bar.menus.dropdownmenu.divider": "#1e1e2e", - "theme.bar.menus.dropdownmenu.text": "#cdd6f4", - "theme.bar.menus.dropdownmenu.background": "#11111b", - "theme.bar.menus.slider.puck": "#6c7086", - "theme.bar.menus.slider.backgroundhover": "#45475a", - "theme.bar.menus.slider.background": "#585b71", - "theme.bar.menus.slider.primary": "#b4befe", - "theme.bar.menus.progressbar.background": "#45475a", - "theme.bar.menus.progressbar.foreground": "#b4befe", - "theme.bar.menus.iconbuttons.active": "#b4beff", - "theme.bar.menus.iconbuttons.passive": "#cdd6f3", - "theme.bar.menus.buttons.text": "#181824", - "theme.bar.menus.buttons.disabled": "#585b71", - "theme.bar.menus.buttons.active": "#f5c2e6", - "theme.bar.menus.buttons.default": "#b4befe", - "theme.bar.menus.switch.puck": "#454759", - "theme.bar.menus.switch.disabled": "#313245", - "theme.bar.menus.switch.enabled": "#b4befe", - "theme.bar.menus.icons.active": "#b4befe", - "theme.bar.menus.icons.passive": "#585b70", - "theme.bar.menus.listitems.active": "#b4befd", - "theme.bar.menus.listitems.passive": "#cdd6f4", - "theme.bar.menus.label": "#b4befe", - "theme.bar.menus.feinttext": "#313244", - "theme.bar.menus.dimtext": "#585b70", - "theme.bar.menus.cards": "#1e1e2e", - "theme.bar.buttons.notifications.total": "#b4befe", - "theme.bar.buttons.notifications.icon": "#b4befe", - "theme.bar.buttons.notifications.hover": "#45475a", - "theme.bar.buttons.notifications.background": "#242438", - "theme.bar.buttons.clock.icon": "#f5c2e7", - "theme.bar.buttons.clock.text": "#f5c2e7", - "theme.bar.buttons.clock.hover": "#45475a", - "theme.bar.buttons.clock.background": "#242438", - "theme.bar.buttons.battery.icon": "#f9e2af", - "theme.bar.buttons.battery.text": "#f9e2af", - "theme.bar.buttons.battery.hover": "#45475a", - "theme.bar.buttons.battery.background": "#242438", - "theme.bar.buttons.systray.hover": "#45475a", - "theme.bar.buttons.systray.background": "#242438", - "theme.bar.buttons.bluetooth.icon": "#89dceb", - "theme.bar.buttons.bluetooth.text": "#89dceb", - "theme.bar.buttons.bluetooth.hover": "#45475a", - "theme.bar.buttons.bluetooth.background": "#242438", - "theme.bar.buttons.network.icon": "#cba6f7", - "theme.bar.buttons.network.text": "#cba6f7", - "theme.bar.buttons.network.hover": "#45475a", - "theme.bar.buttons.network.background": "#242438", - "theme.bar.buttons.volume.icon": "#eba0ac", - "theme.bar.buttons.volume.text": "#eba0ac", - "theme.bar.buttons.volume.hover": "#45475a", - "theme.bar.buttons.volume.background": "#242438", - "theme.bar.buttons.media.hover": "#45475a", - "theme.bar.buttons.windowtitle.icon": "#f5c2e7", - "theme.bar.buttons.windowtitle.text": "#f5c2e7", - "theme.bar.buttons.windowtitle.hover": "#45475a", - "theme.bar.buttons.windowtitle.background": "#242438", - "theme.bar.buttons.workspaces.numbered_active_text_color": "#181825", - "theme.bar.buttons.workspaces.active": "#f5c2e7", - "theme.bar.buttons.workspaces.occupied": "#f2cdcd", - "theme.bar.buttons.workspaces.available": "#89dceb", - "theme.bar.buttons.workspaces.hover": "#45475a", - "theme.bar.buttons.workspaces.background": "#242438", - "theme.bar.buttons.dashboard.icon": "#f9e2af", - "theme.bar.buttons.dashboard.hover": "#45475a", - "theme.bar.buttons.dashboard.background": "#242438", - "theme.osd.label": "#b4beff", - "theme.osd.icon": "#11111b", - "theme.osd.bar_overflow_color": "#f38ba7", - "theme.osd.bar_empty_color": "#313244", - "theme.osd.bar_color": "#b4beff", - "theme.osd.icon_container": "#b4beff", - "theme.osd.bar_container": "#11111b", - "theme.notification.close_button.label": "#11111b", - "theme.notification.close_button.background": "#f38ba7", - "theme.notification.labelicon": "#b4befe", - "theme.notification.text": "#cdd6f4", - "theme.notification.time": "#7f849b", - "theme.notification.border": "#313243", - "theme.notification.label": "#b4befe", - "theme.notification.actions.text": "#181825", - "theme.notification.actions.background": "#b4befd", - "theme.notification.background": "#181826", - "theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#181825", - "theme.bar.buttons.workspaces.numbered_active_underline_color": "#f5c2e7", - "theme.bar.menus.menu.media.card.color": "#1e1e2e", - "theme.bar.menus.check_radio_button.background": "#181826", - "theme.bar.menus.check_radio_button.active": "#b7bcf8", - "theme.bar.buttons.style": "default", - "theme.bar.buttons.icon_background": "#242438", - "theme.bar.buttons.volume.icon_background": "#ee999f", - "theme.bar.buttons.network.icon_background": "#c5a0f6", - "theme.bar.buttons.bluetooth.icon_background": "#91d7e3", - "theme.bar.buttons.windowtitle.icon_background": "#f5bde6", - "theme.bar.buttons.media.icon_background": "#b7bcf8", - "theme.bar.buttons.notifications.icon_background": "#b7bcf8", - "theme.bar.buttons.battery.icon_background": "#eed49f" -} \ No newline at end of file + "theme.bar.menus.background": "#11111b", + "theme.bar.background": "#11111b", + "theme.bar.buttons.media.icon": "#b4befe", + "theme.bar.buttons.media.text": "#b4befe", + "theme.bar.buttons.icon": "#b4befe", + "theme.bar.buttons.text": "#b4befe", + "theme.bar.buttons.hover": "#45475a", + "theme.bar.buttons.background": "#242438", + "theme.bar.menus.text": "#cdd6f4", + "theme.bar.menus.border.color": "#313244", + "theme.bar.buttons.media.background": "#242438", + "theme.bar.menus.menu.volume.text": "#cdd6f4", + "theme.bar.menus.menu.volume.card.color": "#1e1e2e", + "theme.bar.menus.menu.volume.label.color": "#eba0ac", + "theme.bar.menus.popover.text": "#b4befe", + "theme.bar.menus.popover.background": "#181824", + "theme.bar.menus.menu.dashboard.powermenu.shutdown": "#f38ba8", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#f38ba8", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.confirm": "#a6e3a1", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#11111a", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.body": "#cdd6f4", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#b4befe", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.border": "#313244", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#11111b", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#1e1e2e", + "theme.bar.menus.menu.notifications.switch.puck": "#454759", + "theme.bar.menus.menu.notifications.switch.disabled": "#313245", + "theme.bar.menus.menu.notifications.switch.enabled": "#b4befe", + "theme.bar.menus.menu.notifications.clear": "#f38ba8", + "theme.bar.menus.menu.notifications.switch_divider": "#45475a", + "theme.bar.menus.menu.notifications.border": "#313244", + "theme.bar.menus.menu.notifications.card": "#1e1e2e", + "theme.bar.menus.menu.notifications.background": "#11111b", + "theme.bar.menus.menu.notifications.no_notifications_label": "#313244", + "theme.bar.menus.menu.notifications.label": "#b4befe", + "theme.bar.menus.menu.dashboard.monitors.disk.label": "#f5c2e7", + "theme.bar.menus.menu.dashboard.monitors.disk.bar": "#f5c2e8", + "theme.bar.menus.menu.dashboard.monitors.disk.icon": "#f5c2e7", + "theme.bar.menus.menu.dashboard.monitors.gpu.label": "#a6e3a1", + "theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#a6e3a2", + "theme.bar.menus.menu.dashboard.monitors.gpu.icon": "#a6e3a1", + "theme.bar.menus.menu.dashboard.monitors.ram.label": "#f9e2af", + "theme.bar.menus.menu.dashboard.monitors.ram.bar": "#f9e2ae", + "theme.bar.menus.menu.dashboard.monitors.ram.icon": "#f9e2af", + "theme.bar.menus.menu.dashboard.monitors.cpu.label": "#eba0ac", + "theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#eba0ad", + "theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#eba0ac", + "theme.bar.menus.menu.dashboard.monitors.bar_background": "#45475a", + "theme.bar.menus.menu.dashboard.directories.right.bottom.color": "#b4befe", + "theme.bar.menus.menu.dashboard.directories.right.middle.color": "#cba6f7", + "theme.bar.menus.menu.dashboard.directories.right.top.color": "#94e2d5", + "theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#eba0ac", + "theme.bar.menus.menu.dashboard.directories.left.middle.color": "#f9e2af", + "theme.bar.menus.menu.dashboard.directories.left.top.color": "#f5c2e7", + "theme.bar.menus.menu.dashboard.controls.input.text": "#181824", + "theme.bar.menus.menu.dashboard.controls.input.background": "#f5c2e7", + "theme.bar.menus.menu.dashboard.controls.volume.text": "#181824", + "theme.bar.menus.menu.dashboard.controls.volume.background": "#eba0ac", + "theme.bar.menus.menu.dashboard.controls.notifications.text": "#181824", + "theme.bar.menus.menu.dashboard.controls.notifications.background": "#f9e2af", + "theme.bar.menus.menu.dashboard.controls.bluetooth.text": "#181824", + "theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#89dceb", + "theme.bar.menus.menu.dashboard.controls.wifi.text": "#181824", + "theme.bar.menus.menu.dashboard.controls.wifi.background": "#cba6f7", + "theme.bar.menus.menu.dashboard.controls.disabled": "#585b70", + "theme.bar.menus.menu.dashboard.shortcuts.recording": "#a6e3a1", + "theme.bar.menus.menu.dashboard.shortcuts.text": "#181824", + "theme.bar.menus.menu.dashboard.shortcuts.background": "#b4befe", + "theme.bar.menus.menu.dashboard.powermenu.sleep": "#89dceb", + "theme.bar.menus.menu.dashboard.powermenu.logout": "#a6e3a1", + "theme.bar.menus.menu.dashboard.powermenu.restart": "#fab387", + "theme.bar.menus.menu.dashboard.profile.name": "#f5c2e7", + "theme.bar.menus.menu.dashboard.border.color": "#313244", + "theme.bar.menus.menu.dashboard.background.color": "#11111b", + "theme.bar.menus.menu.dashboard.card.color": "#1e1e2e", + "theme.bar.menus.menu.clock.weather.hourly.temperature": "#f5c2e7", + "theme.bar.menus.menu.clock.weather.hourly.icon": "#f5c2e7", + "theme.bar.menus.menu.clock.weather.hourly.time": "#f5c2e7", + "theme.bar.menus.menu.clock.weather.thermometer.extremelycold": "#89dceb", + "theme.bar.menus.menu.clock.weather.thermometer.cold": "#89b4fa", + "theme.bar.menus.menu.clock.weather.thermometer.moderate": "#b4befe", + "theme.bar.menus.menu.clock.weather.thermometer.hot": "#fab387", + "theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#f38ba8", + "theme.bar.menus.menu.clock.weather.stats": "#f5c2e7", + "theme.bar.menus.menu.clock.weather.status": "#94e2d5", + "theme.bar.menus.menu.clock.weather.temperature": "#cdd6f4", + "theme.bar.menus.menu.clock.weather.icon": "#f5c2e7", + "theme.bar.menus.menu.clock.calendar.contextdays": "#585b70", + "theme.bar.menus.menu.clock.calendar.days": "#cdd6f4", + "theme.bar.menus.menu.clock.calendar.currentday": "#f5c2e7", + "theme.bar.menus.menu.clock.calendar.paginator": "#f5c2e6", + "theme.bar.menus.menu.clock.calendar.weekdays": "#f5c2e7", + "theme.bar.menus.menu.clock.calendar.yearmonth": "#94e2d5", + "theme.bar.menus.menu.clock.time.timeperiod": "#94e2d5", + "theme.bar.menus.menu.clock.time.time": "#f5c2e7", + "theme.bar.menus.menu.clock.text": "#cdd6f4", + "theme.bar.menus.menu.clock.border.color": "#313244", + "theme.bar.menus.menu.clock.background.color": "#11111b", + "theme.bar.menus.menu.clock.card.color": "#1e1e2e", + "theme.bar.menus.menu.battery.slider.puck": "#6c7086", + "theme.bar.menus.menu.battery.slider.backgroundhover": "#45475a", + "theme.bar.menus.menu.battery.slider.background": "#585b71", + "theme.bar.menus.menu.battery.slider.primary": "#f9e2af", + "theme.bar.menus.menu.battery.icons.active": "#f9e2af", + "theme.bar.menus.menu.battery.icons.passive": "#9399b2", + "theme.bar.menus.menu.battery.listitems.active": "#f9e2af", + "theme.bar.menus.menu.battery.listitems.passive": "#cdd6f3", + "theme.bar.menus.menu.battery.text": "#cdd6f4", + "theme.bar.menus.menu.battery.label.color": "#f9e2af", + "theme.bar.menus.menu.battery.border.color": "#313244", + "theme.bar.menus.menu.battery.background.color": "#11111b", + "theme.bar.menus.menu.battery.card.color": "#1e1e2e", + "theme.bar.menus.menu.systray.dropdownmenu.divider": "#1e1e2e", + "theme.bar.menus.menu.systray.dropdownmenu.text": "#cdd6f4", + "theme.bar.menus.menu.systray.dropdownmenu.background": "#11111b", + "theme.bar.menus.menu.bluetooth.iconbutton.active": "#89dceb", + "theme.bar.menus.menu.bluetooth.iconbutton.passive": "#cdd6f4", + "theme.bar.menus.menu.bluetooth.icons.active": "#89dceb", + "theme.bar.menus.menu.bluetooth.icons.passive": "#9399b2", + "theme.bar.menus.menu.bluetooth.listitems.active": "#89dcea", + "theme.bar.menus.menu.bluetooth.listitems.passive": "#cdd6f4", + "theme.bar.menus.menu.bluetooth.switch.puck": "#454759", + "theme.bar.menus.menu.bluetooth.switch.disabled": "#313245", + "theme.bar.menus.menu.bluetooth.switch.enabled": "#89dceb", + "theme.bar.menus.menu.bluetooth.switch_divider": "#45475a", + "theme.bar.menus.menu.bluetooth.status": "#6c7086", + "theme.bar.menus.menu.bluetooth.text": "#cdd6f4", + "theme.bar.menus.menu.bluetooth.label.color": "#89dceb", + "theme.bar.menus.menu.bluetooth.border.color": "#313244", + "theme.bar.menus.menu.bluetooth.background.color": "#11111b", + "theme.bar.menus.menu.bluetooth.card.color": "#1e1e2e", + "theme.bar.menus.menu.network.iconbuttons.active": "#cba6f7", + "theme.bar.menus.menu.network.iconbuttons.passive": "#cdd6f4", + "theme.bar.menus.menu.network.icons.active": "#cba6f7", + "theme.bar.menus.menu.network.icons.passive": "#9399b2", + "theme.bar.menus.menu.network.listitems.active": "#cba6f6", + "theme.bar.menus.menu.network.listitems.passive": "#cdd6f4", + "theme.bar.menus.menu.network.status.color": "#6c7086", + "theme.bar.menus.menu.network.text": "#cdd6f4", + "theme.bar.menus.menu.network.label.color": "#cba6f7", + "theme.bar.menus.menu.network.border.color": "#313244", + "theme.bar.menus.menu.network.background.color": "#11111b", + "theme.bar.menus.menu.network.card.color": "#1e1e2e", + "theme.bar.menus.menu.volume.input_slider.puck": "#585b70", + "theme.bar.menus.menu.volume.input_slider.backgroundhover": "#45475a", + "theme.bar.menus.menu.volume.input_slider.background": "#585b71", + "theme.bar.menus.menu.volume.input_slider.primary": "#eba0ac", + "theme.bar.menus.menu.volume.audio_slider.puck": "#585b70", + "theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#45475a", + "theme.bar.menus.menu.volume.audio_slider.background": "#585b71", + "theme.bar.menus.menu.volume.audio_slider.primary": "#eba0ac", + "theme.bar.menus.menu.volume.icons.active": "#eba0ac", + "theme.bar.menus.menu.volume.icons.passive": "#9399b2", + "theme.bar.menus.menu.volume.iconbutton.active": "#eba0ac", + "theme.bar.menus.menu.volume.iconbutton.passive": "#cdd6f4", + "theme.bar.menus.menu.volume.listitems.active": "#eba0ab", + "theme.bar.menus.menu.volume.listitems.passive": "#cdd6f4", + "theme.bar.menus.menu.volume.border.color": "#313244", + "theme.bar.menus.menu.volume.background.color": "#11111b", + "theme.bar.menus.menu.media.slider.puck": "#6c7086", + "theme.bar.menus.menu.media.slider.backgroundhover": "#45475a", + "theme.bar.menus.menu.media.slider.background": "#585b71", + "theme.bar.menus.menu.media.slider.primary": "#f5c2e7", + "theme.bar.menus.menu.media.buttons.text": "#11111b", + "theme.bar.menus.menu.media.buttons.background": "#b4beff", + "theme.bar.menus.menu.media.buttons.enabled": "#94e2d4", + "theme.bar.menus.menu.media.buttons.inactive": "#585b70", + "theme.bar.menus.menu.media.border.color": "#313244", + "theme.bar.menus.menu.media.background.color": "#11111b", + "theme.bar.menus.menu.media.album": "#f5c2e8", + "theme.bar.menus.menu.media.artist": "#94e2d6", + "theme.bar.menus.menu.media.song": "#b4beff", + "theme.bar.menus.tooltip.text": "#cdd6f4", + "theme.bar.menus.tooltip.background": "#11111b", + "theme.bar.menus.dropdownmenu.divider": "#1e1e2e", + "theme.bar.menus.dropdownmenu.text": "#cdd6f4", + "theme.bar.menus.dropdownmenu.background": "#11111b", + "theme.bar.menus.slider.puck": "#6c7086", + "theme.bar.menus.slider.backgroundhover": "#45475a", + "theme.bar.menus.slider.background": "#585b71", + "theme.bar.menus.slider.primary": "#b4befe", + "theme.bar.menus.progressbar.background": "#45475a", + "theme.bar.menus.progressbar.foreground": "#b4befe", + "theme.bar.menus.iconbuttons.active": "#b4beff", + "theme.bar.menus.iconbuttons.passive": "#cdd6f3", + "theme.bar.menus.buttons.text": "#181824", + "theme.bar.menus.buttons.disabled": "#585b71", + "theme.bar.menus.buttons.active": "#f5c2e6", + "theme.bar.menus.buttons.default": "#b4befe", + "theme.bar.menus.switch.puck": "#454759", + "theme.bar.menus.switch.disabled": "#313245", + "theme.bar.menus.switch.enabled": "#b4befe", + "theme.bar.menus.icons.active": "#b4befe", + "theme.bar.menus.icons.passive": "#585b70", + "theme.bar.menus.listitems.active": "#b4befd", + "theme.bar.menus.listitems.passive": "#cdd6f4", + "theme.bar.menus.label": "#b4befe", + "theme.bar.menus.feinttext": "#313244", + "theme.bar.menus.dimtext": "#585b70", + "theme.bar.menus.cards": "#1e1e2e", + "theme.bar.buttons.notifications.total": "#b4befe", + "theme.bar.buttons.notifications.icon": "#b4befe", + "theme.bar.buttons.notifications.hover": "#45475a", + "theme.bar.buttons.notifications.background": "#242438", + "theme.bar.buttons.clock.icon": "#f5c2e7", + "theme.bar.buttons.clock.text": "#f5c2e7", + "theme.bar.buttons.clock.hover": "#45475a", + "theme.bar.buttons.clock.background": "#242438", + "theme.bar.buttons.battery.icon": "#f9e2af", + "theme.bar.buttons.battery.text": "#f9e2af", + "theme.bar.buttons.battery.hover": "#45475a", + "theme.bar.buttons.battery.background": "#242438", + "theme.bar.buttons.systray.hover": "#45475a", + "theme.bar.buttons.systray.background": "#242438", + "theme.bar.buttons.bluetooth.icon": "#89dceb", + "theme.bar.buttons.bluetooth.text": "#89dceb", + "theme.bar.buttons.bluetooth.hover": "#45475a", + "theme.bar.buttons.bluetooth.background": "#242438", + "theme.bar.buttons.network.icon": "#cba6f7", + "theme.bar.buttons.network.text": "#cba6f7", + "theme.bar.buttons.network.hover": "#45475a", + "theme.bar.buttons.network.background": "#242438", + "theme.bar.buttons.volume.icon": "#eba0ac", + "theme.bar.buttons.volume.text": "#eba0ac", + "theme.bar.buttons.volume.hover": "#45475a", + "theme.bar.buttons.volume.background": "#242438", + "theme.bar.buttons.media.hover": "#45475a", + "theme.bar.buttons.windowtitle.icon": "#f5c2e7", + "theme.bar.buttons.windowtitle.text": "#f5c2e7", + "theme.bar.buttons.windowtitle.hover": "#45475a", + "theme.bar.buttons.windowtitle.background": "#242438", + "theme.bar.buttons.workspaces.numbered_active_text_color": "#181825", + "theme.bar.buttons.workspaces.active": "#f5c2e7", + "theme.bar.buttons.workspaces.occupied": "#f2cdcd", + "theme.bar.buttons.workspaces.available": "#89dceb", + "theme.bar.buttons.workspaces.hover": "#45475a", + "theme.bar.buttons.workspaces.background": "#242438", + "theme.bar.buttons.dashboard.icon": "#f9e2af", + "theme.bar.buttons.dashboard.hover": "#45475a", + "theme.bar.buttons.dashboard.background": "#242438", + "theme.osd.label": "#b4beff", + "theme.osd.icon": "#11111b", + "theme.osd.bar_overflow_color": "#f38ba7", + "theme.osd.bar_empty_color": "#313244", + "theme.osd.bar_color": "#b4beff", + "theme.osd.icon_container": "#b4beff", + "theme.osd.bar_container": "#11111b", + "theme.notification.close_button.label": "#11111b", + "theme.notification.close_button.background": "#f38ba7", + "theme.notification.labelicon": "#b4befe", + "theme.notification.text": "#cdd6f4", + "theme.notification.time": "#7f849b", + "theme.notification.border": "#313243", + "theme.notification.label": "#b4befe", + "theme.notification.actions.text": "#181825", + "theme.notification.actions.background": "#b4befd", + "theme.notification.background": "#181826", + "theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#181825", + "theme.bar.buttons.workspaces.numbered_active_underline_color": "#f5c2e7", + "theme.bar.menus.menu.media.card.color": "#1e1e2e", + "theme.bar.menus.check_radio_button.background": "#181826", + "theme.bar.menus.check_radio_button.active": "#b7bcf8", + "theme.bar.buttons.style": "default", + "theme.bar.menus.menu.notifications.scrollbar.color": "#b4befe", + "theme.bar.menus.menu.notifications.pager.button": "#b4befe", + "theme.bar.menus.menu.notifications.pager.label": "#9399b2", + "theme.bar.menus.menu.notifications.pager.background": "#11111b" +} diff --git a/themes/catppuccin_mocha_split.json b/themes/catppuccin_mocha_split.json index 3fcd45c..2d6c350 100644 --- a/themes/catppuccin_mocha_split.json +++ b/themes/catppuccin_mocha_split.json @@ -1,274 +1,278 @@ { - "theme.bar.menus.background": "#11111b", - "theme.bar.background": "#11111b", - "theme.bar.buttons.media.icon": "#1e1e2e", - "theme.bar.buttons.media.text": "#b4befe", - "theme.bar.buttons.icon": "#b4befe", - "theme.bar.buttons.text": "#b4befe", - "theme.bar.buttons.hover": "#45475a", - "theme.bar.buttons.background": "#242438", - "theme.bar.menus.text": "#cdd6f4", - "theme.bar.menus.border.color": "#313244", - "theme.bar.buttons.media.background": "#242438", - "theme.bar.menus.menu.volume.text": "#cdd6f4", - "theme.bar.menus.menu.volume.card.color": "#1e1e2e", - "theme.bar.menus.menu.volume.label.color": "#eba0ac", - "theme.bar.menus.popover.text": "#b4befe", - "theme.bar.menus.popover.background": "#181824", - "theme.bar.menus.menu.dashboard.powermenu.shutdown": "#f38ba8", - "theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#f38ba8", - "theme.bar.menus.menu.dashboard.powermenu.confirmation.confirm": "#a6e3a1", - "theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#11111a", - "theme.bar.menus.menu.dashboard.powermenu.confirmation.body": "#cdd6f4", - "theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#b4befe", - "theme.bar.menus.menu.dashboard.powermenu.confirmation.border": "#313244", - "theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#11111b", - "theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#1e1e2e", - "theme.bar.menus.menu.notifications.switch.puck": "#454759", - "theme.bar.menus.menu.notifications.switch.disabled": "#313245", - "theme.bar.menus.menu.notifications.switch.enabled": "#b4befe", - "theme.bar.menus.menu.notifications.clear": "#f38ba8", - "theme.bar.menus.menu.notifications.switch_divider": "#45475a", - "theme.bar.menus.menu.notifications.border": "#313244", - "theme.bar.menus.menu.notifications.card": "#1e1e2e", - "theme.bar.menus.menu.notifications.background": "#11111b", - "theme.bar.menus.menu.notifications.no_notifications_label": "#313244", - "theme.bar.menus.menu.notifications.label": "#b4befe", - "theme.bar.menus.menu.dashboard.monitors.disk.label": "#f5c2e7", - "theme.bar.menus.menu.dashboard.monitors.disk.bar": "#f5c2e8", - "theme.bar.menus.menu.dashboard.monitors.disk.icon": "#f5c2e7", - "theme.bar.menus.menu.dashboard.monitors.gpu.label": "#a6e3a1", - "theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#a6e3a2", - "theme.bar.menus.menu.dashboard.monitors.gpu.icon": "#a6e3a1", - "theme.bar.menus.menu.dashboard.monitors.ram.label": "#f9e2af", - "theme.bar.menus.menu.dashboard.monitors.ram.bar": "#f9e2ae", - "theme.bar.menus.menu.dashboard.monitors.ram.icon": "#f9e2af", - "theme.bar.menus.menu.dashboard.monitors.cpu.label": "#eba0ac", - "theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#eba0ad", - "theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#eba0ac", - "theme.bar.menus.menu.dashboard.monitors.bar_background": "#45475a", - "theme.bar.menus.menu.dashboard.directories.right.bottom.color": "#b4befe", - "theme.bar.menus.menu.dashboard.directories.right.middle.color": "#cba6f7", - "theme.bar.menus.menu.dashboard.directories.right.top.color": "#94e2d5", - "theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#eba0ac", - "theme.bar.menus.menu.dashboard.directories.left.middle.color": "#f9e2af", - "theme.bar.menus.menu.dashboard.directories.left.top.color": "#f5c2e7", - "theme.bar.menus.menu.dashboard.controls.input.text": "#181824", - "theme.bar.menus.menu.dashboard.controls.input.background": "#f5c2e7", - "theme.bar.menus.menu.dashboard.controls.volume.text": "#181824", - "theme.bar.menus.menu.dashboard.controls.volume.background": "#eba0ac", - "theme.bar.menus.menu.dashboard.controls.notifications.text": "#181824", - "theme.bar.menus.menu.dashboard.controls.notifications.background": "#f9e2af", - "theme.bar.menus.menu.dashboard.controls.bluetooth.text": "#181824", - "theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#89dceb", - "theme.bar.menus.menu.dashboard.controls.wifi.text": "#181824", - "theme.bar.menus.menu.dashboard.controls.wifi.background": "#cba6f7", - "theme.bar.menus.menu.dashboard.controls.disabled": "#585b70", - "theme.bar.menus.menu.dashboard.shortcuts.recording": "#a6e3a1", - "theme.bar.menus.menu.dashboard.shortcuts.text": "#181824", - "theme.bar.menus.menu.dashboard.shortcuts.background": "#b4befe", - "theme.bar.menus.menu.dashboard.powermenu.sleep": "#89dceb", - "theme.bar.menus.menu.dashboard.powermenu.logout": "#a6e3a1", - "theme.bar.menus.menu.dashboard.powermenu.restart": "#fab387", - "theme.bar.menus.menu.dashboard.profile.name": "#f5c2e7", - "theme.bar.menus.menu.dashboard.border.color": "#313244", - "theme.bar.menus.menu.dashboard.background.color": "#11111b", - "theme.bar.menus.menu.dashboard.card.color": "#1e1e2e", - "theme.bar.menus.menu.clock.weather.hourly.temperature": "#f5c2e7", - "theme.bar.menus.menu.clock.weather.hourly.icon": "#f5c2e7", - "theme.bar.menus.menu.clock.weather.hourly.time": "#f5c2e7", - "theme.bar.menus.menu.clock.weather.thermometer.extremelycold": "#89dceb", - "theme.bar.menus.menu.clock.weather.thermometer.cold": "#89b4fa", - "theme.bar.menus.menu.clock.weather.thermometer.moderate": "#b4befe", - "theme.bar.menus.menu.clock.weather.thermometer.hot": "#fab387", - "theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#f38ba8", - "theme.bar.menus.menu.clock.weather.stats": "#f5c2e7", - "theme.bar.menus.menu.clock.weather.status": "#94e2d5", - "theme.bar.menus.menu.clock.weather.temperature": "#cdd6f4", - "theme.bar.menus.menu.clock.weather.icon": "#f5c2e7", - "theme.bar.menus.menu.clock.calendar.contextdays": "#585b70", - "theme.bar.menus.menu.clock.calendar.days": "#cdd6f4", - "theme.bar.menus.menu.clock.calendar.currentday": "#f5c2e7", - "theme.bar.menus.menu.clock.calendar.paginator": "#f5c2e6", - "theme.bar.menus.menu.clock.calendar.weekdays": "#f5c2e7", - "theme.bar.menus.menu.clock.calendar.yearmonth": "#94e2d5", - "theme.bar.menus.menu.clock.time.timeperiod": "#94e2d5", - "theme.bar.menus.menu.clock.time.time": "#f5c2e7", - "theme.bar.menus.menu.clock.text": "#cdd6f4", - "theme.bar.menus.menu.clock.border.color": "#313244", - "theme.bar.menus.menu.clock.background.color": "#11111b", - "theme.bar.menus.menu.clock.card.color": "#1e1e2e", - "theme.bar.menus.menu.battery.slider.puck": "#6c7086", - "theme.bar.menus.menu.battery.slider.backgroundhover": "#45475a", - "theme.bar.menus.menu.battery.slider.background": "#585b71", - "theme.bar.menus.menu.battery.slider.primary": "#f9e2af", - "theme.bar.menus.menu.battery.icons.active": "#f9e2af", - "theme.bar.menus.menu.battery.icons.passive": "#9399b2", - "theme.bar.menus.menu.battery.listitems.active": "#f9e2af", - "theme.bar.menus.menu.battery.listitems.passive": "#cdd6f3", - "theme.bar.menus.menu.battery.text": "#cdd6f4", - "theme.bar.menus.menu.battery.label.color": "#f9e2af", - "theme.bar.menus.menu.battery.border.color": "#313244", - "theme.bar.menus.menu.battery.background.color": "#11111b", - "theme.bar.menus.menu.battery.card.color": "#1e1e2e", - "theme.bar.menus.menu.systray.dropdownmenu.divider": "#1e1e2e", - "theme.bar.menus.menu.systray.dropdownmenu.text": "#cdd6f4", - "theme.bar.menus.menu.systray.dropdownmenu.background": "#11111b", - "theme.bar.menus.menu.bluetooth.iconbutton.active": "#89dceb", - "theme.bar.menus.menu.bluetooth.iconbutton.passive": "#cdd6f4", - "theme.bar.menus.menu.bluetooth.icons.active": "#89dceb", - "theme.bar.menus.menu.bluetooth.icons.passive": "#9399b2", - "theme.bar.menus.menu.bluetooth.listitems.active": "#89dcea", - "theme.bar.menus.menu.bluetooth.listitems.passive": "#cdd6f4", - "theme.bar.menus.menu.bluetooth.switch.puck": "#454759", - "theme.bar.menus.menu.bluetooth.switch.disabled": "#313245", - "theme.bar.menus.menu.bluetooth.switch.enabled": "#89dceb", - "theme.bar.menus.menu.bluetooth.switch_divider": "#45475a", - "theme.bar.menus.menu.bluetooth.status": "#6c7086", - "theme.bar.menus.menu.bluetooth.text": "#cdd6f4", - "theme.bar.menus.menu.bluetooth.label.color": "#89dceb", - "theme.bar.menus.menu.bluetooth.border.color": "#313244", - "theme.bar.menus.menu.bluetooth.background.color": "#11111b", - "theme.bar.menus.menu.bluetooth.card.color": "#1e1e2e", - "theme.bar.menus.menu.network.iconbuttons.active": "#cba6f7", - "theme.bar.menus.menu.network.iconbuttons.passive": "#cdd6f4", - "theme.bar.menus.menu.network.icons.active": "#cba6f7", - "theme.bar.menus.menu.network.icons.passive": "#9399b2", - "theme.bar.menus.menu.network.listitems.active": "#cba6f6", - "theme.bar.menus.menu.network.listitems.passive": "#cdd6f4", - "theme.bar.menus.menu.network.status.color": "#6c7086", - "theme.bar.menus.menu.network.text": "#cdd6f4", - "theme.bar.menus.menu.network.label.color": "#cba6f7", - "theme.bar.menus.menu.network.border.color": "#313244", - "theme.bar.menus.menu.network.background.color": "#11111b", - "theme.bar.menus.menu.network.card.color": "#1e1e2e", - "theme.bar.menus.menu.volume.input_slider.puck": "#585b70", - "theme.bar.menus.menu.volume.input_slider.backgroundhover": "#45475a", - "theme.bar.menus.menu.volume.input_slider.background": "#585b71", - "theme.bar.menus.menu.volume.input_slider.primary": "#eba0ac", - "theme.bar.menus.menu.volume.audio_slider.puck": "#585b70", - "theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#45475a", - "theme.bar.menus.menu.volume.audio_slider.background": "#585b71", - "theme.bar.menus.menu.volume.audio_slider.primary": "#eba0ac", - "theme.bar.menus.menu.volume.icons.active": "#eba0ac", - "theme.bar.menus.menu.volume.icons.passive": "#9399b2", - "theme.bar.menus.menu.volume.iconbutton.active": "#eba0ac", - "theme.bar.menus.menu.volume.iconbutton.passive": "#cdd6f4", - "theme.bar.menus.menu.volume.listitems.active": "#eba0ab", - "theme.bar.menus.menu.volume.listitems.passive": "#cdd6f4", - "theme.bar.menus.menu.volume.border.color": "#313244", - "theme.bar.menus.menu.volume.background.color": "#11111b", - "theme.bar.menus.menu.media.slider.puck": "#6c7086", - "theme.bar.menus.menu.media.slider.backgroundhover": "#45475a", - "theme.bar.menus.menu.media.slider.background": "#585b71", - "theme.bar.menus.menu.media.slider.primary": "#f5c2e7", - "theme.bar.menus.menu.media.buttons.text": "#11111b", - "theme.bar.menus.menu.media.buttons.background": "#b4beff", - "theme.bar.menus.menu.media.buttons.enabled": "#94e2d4", - "theme.bar.menus.menu.media.buttons.inactive": "#585b70", - "theme.bar.menus.menu.media.border.color": "#313244", - "theme.bar.menus.menu.media.background.color": "#11111b", - "theme.bar.menus.menu.media.album": "#f5c2e8", - "theme.bar.menus.menu.media.artist": "#94e2d6", - "theme.bar.menus.menu.media.song": "#b4beff", - "theme.bar.menus.tooltip.text": "#cdd6f4", - "theme.bar.menus.tooltip.background": "#11111b", - "theme.bar.menus.dropdownmenu.divider": "#1e1e2e", - "theme.bar.menus.dropdownmenu.text": "#cdd6f4", - "theme.bar.menus.dropdownmenu.background": "#11111b", - "theme.bar.menus.slider.puck": "#6c7086", - "theme.bar.menus.slider.backgroundhover": "#45475a", - "theme.bar.menus.slider.background": "#585b71", - "theme.bar.menus.slider.primary": "#b4befe", - "theme.bar.menus.progressbar.background": "#45475a", - "theme.bar.menus.progressbar.foreground": "#b4befe", - "theme.bar.menus.iconbuttons.active": "#b4beff", - "theme.bar.menus.iconbuttons.passive": "#cdd6f3", - "theme.bar.menus.buttons.text": "#181824", - "theme.bar.menus.buttons.disabled": "#585b71", - "theme.bar.menus.buttons.active": "#f5c2e6", - "theme.bar.menus.buttons.default": "#b4befe", - "theme.bar.menus.switch.puck": "#454759", - "theme.bar.menus.switch.disabled": "#313245", - "theme.bar.menus.switch.enabled": "#b4befe", - "theme.bar.menus.icons.active": "#b4befe", - "theme.bar.menus.icons.passive": "#585b70", - "theme.bar.menus.listitems.active": "#b4befd", - "theme.bar.menus.listitems.passive": "#cdd6f4", - "theme.bar.menus.label": "#b4befe", - "theme.bar.menus.feinttext": "#313244", - "theme.bar.menus.dimtext": "#585b70", - "theme.bar.menus.cards": "#1e1e2e", - "theme.bar.buttons.notifications.total": "#b4befe", - "theme.bar.buttons.notifications.icon": "#1e1e2e", - "theme.bar.buttons.notifications.hover": "#45475a", - "theme.bar.buttons.notifications.background": "#242438", - "theme.bar.buttons.clock.icon": "#232338", - "theme.bar.buttons.clock.text": "#f5c2e7", - "theme.bar.buttons.clock.hover": "#45475a", - "theme.bar.buttons.clock.background": "#242438", - "theme.bar.buttons.battery.icon": "#242438", - "theme.bar.buttons.battery.text": "#f9e2af", - "theme.bar.buttons.battery.hover": "#45475a", - "theme.bar.buttons.battery.background": "#242438", - "theme.bar.buttons.systray.hover": "#45475a", - "theme.bar.buttons.systray.background": "#242438", - "theme.bar.buttons.bluetooth.icon": "#1e1e2e", - "theme.bar.buttons.bluetooth.text": "#89dceb", - "theme.bar.buttons.bluetooth.hover": "#45475a", - "theme.bar.buttons.bluetooth.background": "#242438", - "theme.bar.buttons.network.icon": "#242438", - "theme.bar.buttons.network.text": "#cba6f7", - "theme.bar.buttons.network.hover": "#45475a", - "theme.bar.buttons.network.background": "#242438", - "theme.bar.buttons.volume.icon": "#242438", - "theme.bar.buttons.volume.text": "#eba0ac", - "theme.bar.buttons.volume.hover": "#45475a", - "theme.bar.buttons.volume.background": "#242438", - "theme.bar.buttons.media.hover": "#45475a", - "theme.bar.buttons.windowtitle.icon": "#1e1e2e", - "theme.bar.buttons.windowtitle.text": "#f5c2e7", - "theme.bar.buttons.windowtitle.hover": "#45475a", - "theme.bar.buttons.windowtitle.background": "#242438", - "theme.bar.buttons.workspaces.numbered_active_text_color": "#181825", - "theme.bar.buttons.workspaces.active": "#f5c2e7", - "theme.bar.buttons.workspaces.occupied": "#f2cdcd", - "theme.bar.buttons.workspaces.available": "#89dceb", - "theme.bar.buttons.workspaces.hover": "#f5c2e7", - "theme.bar.buttons.workspaces.background": "#242438", - "theme.bar.buttons.dashboard.icon": "#1e1e2e", - "theme.bar.buttons.dashboard.hover": "#45475a", - "theme.bar.buttons.dashboard.background": "#f9e2af", - "theme.osd.label": "#b4beff", - "theme.osd.icon": "#11111b", - "theme.osd.bar_overflow_color": "#f38ba7", - "theme.osd.bar_empty_color": "#313244", - "theme.osd.bar_color": "#b4beff", - "theme.osd.icon_container": "#b4beff", - "theme.osd.bar_container": "#11111b", - "theme.notification.close_button.label": "#11111b", - "theme.notification.close_button.background": "#f38ba7", - "theme.notification.labelicon": "#b4befe", - "theme.notification.text": "#cdd6f4", - "theme.notification.time": "#7f849b", - "theme.notification.border": "#313243", - "theme.notification.label": "#b4befe", - "theme.notification.actions.text": "#181825", - "theme.notification.actions.background": "#b4befd", - "theme.notification.background": "#181826", - "theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#181825", - "theme.bar.buttons.workspaces.numbered_active_underline_color": "#f5c2e7", - "theme.bar.menus.menu.media.card.color": "#1e1e2e", - "theme.bar.menus.check_radio_button.background": "#45475a", - "theme.bar.menus.check_radio_button.active": "#b4beff", - "theme.bar.buttons.style": "split", - "theme.bar.buttons.icon_background": "#242438", - "theme.bar.buttons.volume.icon_background": "#eba0ac", - "theme.bar.buttons.network.icon_background": "#caa6f7", - "theme.bar.buttons.bluetooth.icon_background": "#89dbeb", - "theme.bar.buttons.windowtitle.icon_background": "#f5c2e7", - "theme.bar.buttons.media.icon_background": "#b4befe", - "theme.bar.buttons.notifications.icon_background": "#b4befe", - "theme.bar.buttons.battery.icon_background": "#f9e2af", - "theme.bar.buttons.clock.icon_background": "#f5c2e7" -} \ No newline at end of file + "theme.bar.menus.background": "#11111b", + "theme.bar.background": "#11111b", + "theme.bar.buttons.media.icon": "#1e1e2e", + "theme.bar.buttons.media.text": "#b4befe", + "theme.bar.buttons.icon": "#b4befe", + "theme.bar.buttons.text": "#b4befe", + "theme.bar.buttons.hover": "#45475a", + "theme.bar.buttons.background": "#242438", + "theme.bar.menus.text": "#cdd6f4", + "theme.bar.menus.border.color": "#313244", + "theme.bar.buttons.media.background": "#242438", + "theme.bar.menus.menu.volume.text": "#cdd6f4", + "theme.bar.menus.menu.volume.card.color": "#1e1e2e", + "theme.bar.menus.menu.volume.label.color": "#eba0ac", + "theme.bar.menus.popover.text": "#b4befe", + "theme.bar.menus.popover.background": "#181824", + "theme.bar.menus.menu.dashboard.powermenu.shutdown": "#f38ba8", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#f38ba8", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.confirm": "#a6e3a1", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#11111a", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.body": "#cdd6f4", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#b4befe", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.border": "#313244", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#11111b", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#1e1e2e", + "theme.bar.menus.menu.notifications.switch.puck": "#454759", + "theme.bar.menus.menu.notifications.switch.disabled": "#313245", + "theme.bar.menus.menu.notifications.switch.enabled": "#b4befe", + "theme.bar.menus.menu.notifications.clear": "#f38ba8", + "theme.bar.menus.menu.notifications.switch_divider": "#45475a", + "theme.bar.menus.menu.notifications.border": "#313244", + "theme.bar.menus.menu.notifications.card": "#1e1e2e", + "theme.bar.menus.menu.notifications.background": "#11111b", + "theme.bar.menus.menu.notifications.no_notifications_label": "#313244", + "theme.bar.menus.menu.notifications.label": "#b4befe", + "theme.bar.menus.menu.dashboard.monitors.disk.label": "#f5c2e7", + "theme.bar.menus.menu.dashboard.monitors.disk.bar": "#f5c2e8", + "theme.bar.menus.menu.dashboard.monitors.disk.icon": "#f5c2e7", + "theme.bar.menus.menu.dashboard.monitors.gpu.label": "#a6e3a1", + "theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#a6e3a2", + "theme.bar.menus.menu.dashboard.monitors.gpu.icon": "#a6e3a1", + "theme.bar.menus.menu.dashboard.monitors.ram.label": "#f9e2af", + "theme.bar.menus.menu.dashboard.monitors.ram.bar": "#f9e2ae", + "theme.bar.menus.menu.dashboard.monitors.ram.icon": "#f9e2af", + "theme.bar.menus.menu.dashboard.monitors.cpu.label": "#eba0ac", + "theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#eba0ad", + "theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#eba0ac", + "theme.bar.menus.menu.dashboard.monitors.bar_background": "#45475a", + "theme.bar.menus.menu.dashboard.directories.right.bottom.color": "#b4befe", + "theme.bar.menus.menu.dashboard.directories.right.middle.color": "#cba6f7", + "theme.bar.menus.menu.dashboard.directories.right.top.color": "#94e2d5", + "theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#eba0ac", + "theme.bar.menus.menu.dashboard.directories.left.middle.color": "#f9e2af", + "theme.bar.menus.menu.dashboard.directories.left.top.color": "#f5c2e7", + "theme.bar.menus.menu.dashboard.controls.input.text": "#181824", + "theme.bar.menus.menu.dashboard.controls.input.background": "#f5c2e7", + "theme.bar.menus.menu.dashboard.controls.volume.text": "#181824", + "theme.bar.menus.menu.dashboard.controls.volume.background": "#eba0ac", + "theme.bar.menus.menu.dashboard.controls.notifications.text": "#181824", + "theme.bar.menus.menu.dashboard.controls.notifications.background": "#f9e2af", + "theme.bar.menus.menu.dashboard.controls.bluetooth.text": "#181824", + "theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#89dceb", + "theme.bar.menus.menu.dashboard.controls.wifi.text": "#181824", + "theme.bar.menus.menu.dashboard.controls.wifi.background": "#cba6f7", + "theme.bar.menus.menu.dashboard.controls.disabled": "#585b70", + "theme.bar.menus.menu.dashboard.shortcuts.recording": "#a6e3a1", + "theme.bar.menus.menu.dashboard.shortcuts.text": "#181824", + "theme.bar.menus.menu.dashboard.shortcuts.background": "#b4befe", + "theme.bar.menus.menu.dashboard.powermenu.sleep": "#89dceb", + "theme.bar.menus.menu.dashboard.powermenu.logout": "#a6e3a1", + "theme.bar.menus.menu.dashboard.powermenu.restart": "#fab387", + "theme.bar.menus.menu.dashboard.profile.name": "#f5c2e7", + "theme.bar.menus.menu.dashboard.border.color": "#313244", + "theme.bar.menus.menu.dashboard.background.color": "#11111b", + "theme.bar.menus.menu.dashboard.card.color": "#1e1e2e", + "theme.bar.menus.menu.clock.weather.hourly.temperature": "#f5c2e7", + "theme.bar.menus.menu.clock.weather.hourly.icon": "#f5c2e7", + "theme.bar.menus.menu.clock.weather.hourly.time": "#f5c2e7", + "theme.bar.menus.menu.clock.weather.thermometer.extremelycold": "#89dceb", + "theme.bar.menus.menu.clock.weather.thermometer.cold": "#89b4fa", + "theme.bar.menus.menu.clock.weather.thermometer.moderate": "#b4befe", + "theme.bar.menus.menu.clock.weather.thermometer.hot": "#fab387", + "theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#f38ba8", + "theme.bar.menus.menu.clock.weather.stats": "#f5c2e7", + "theme.bar.menus.menu.clock.weather.status": "#94e2d5", + "theme.bar.menus.menu.clock.weather.temperature": "#cdd6f4", + "theme.bar.menus.menu.clock.weather.icon": "#f5c2e7", + "theme.bar.menus.menu.clock.calendar.contextdays": "#585b70", + "theme.bar.menus.menu.clock.calendar.days": "#cdd6f4", + "theme.bar.menus.menu.clock.calendar.currentday": "#f5c2e7", + "theme.bar.menus.menu.clock.calendar.paginator": "#f5c2e6", + "theme.bar.menus.menu.clock.calendar.weekdays": "#f5c2e7", + "theme.bar.menus.menu.clock.calendar.yearmonth": "#94e2d5", + "theme.bar.menus.menu.clock.time.timeperiod": "#94e2d5", + "theme.bar.menus.menu.clock.time.time": "#f5c2e7", + "theme.bar.menus.menu.clock.text": "#cdd6f4", + "theme.bar.menus.menu.clock.border.color": "#313244", + "theme.bar.menus.menu.clock.background.color": "#11111b", + "theme.bar.menus.menu.clock.card.color": "#1e1e2e", + "theme.bar.menus.menu.battery.slider.puck": "#6c7086", + "theme.bar.menus.menu.battery.slider.backgroundhover": "#45475a", + "theme.bar.menus.menu.battery.slider.background": "#585b71", + "theme.bar.menus.menu.battery.slider.primary": "#f9e2af", + "theme.bar.menus.menu.battery.icons.active": "#f9e2af", + "theme.bar.menus.menu.battery.icons.passive": "#9399b2", + "theme.bar.menus.menu.battery.listitems.active": "#f9e2af", + "theme.bar.menus.menu.battery.listitems.passive": "#cdd6f3", + "theme.bar.menus.menu.battery.text": "#cdd6f4", + "theme.bar.menus.menu.battery.label.color": "#f9e2af", + "theme.bar.menus.menu.battery.border.color": "#313244", + "theme.bar.menus.menu.battery.background.color": "#11111b", + "theme.bar.menus.menu.battery.card.color": "#1e1e2e", + "theme.bar.menus.menu.systray.dropdownmenu.divider": "#1e1e2e", + "theme.bar.menus.menu.systray.dropdownmenu.text": "#cdd6f4", + "theme.bar.menus.menu.systray.dropdownmenu.background": "#11111b", + "theme.bar.menus.menu.bluetooth.iconbutton.active": "#89dceb", + "theme.bar.menus.menu.bluetooth.iconbutton.passive": "#cdd6f4", + "theme.bar.menus.menu.bluetooth.icons.active": "#89dceb", + "theme.bar.menus.menu.bluetooth.icons.passive": "#9399b2", + "theme.bar.menus.menu.bluetooth.listitems.active": "#89dcea", + "theme.bar.menus.menu.bluetooth.listitems.passive": "#cdd6f4", + "theme.bar.menus.menu.bluetooth.switch.puck": "#454759", + "theme.bar.menus.menu.bluetooth.switch.disabled": "#313245", + "theme.bar.menus.menu.bluetooth.switch.enabled": "#89dceb", + "theme.bar.menus.menu.bluetooth.switch_divider": "#45475a", + "theme.bar.menus.menu.bluetooth.status": "#6c7086", + "theme.bar.menus.menu.bluetooth.text": "#cdd6f4", + "theme.bar.menus.menu.bluetooth.label.color": "#89dceb", + "theme.bar.menus.menu.bluetooth.border.color": "#313244", + "theme.bar.menus.menu.bluetooth.background.color": "#11111b", + "theme.bar.menus.menu.bluetooth.card.color": "#1e1e2e", + "theme.bar.menus.menu.network.iconbuttons.active": "#cba6f7", + "theme.bar.menus.menu.network.iconbuttons.passive": "#cdd6f4", + "theme.bar.menus.menu.network.icons.active": "#cba6f7", + "theme.bar.menus.menu.network.icons.passive": "#9399b2", + "theme.bar.menus.menu.network.listitems.active": "#cba6f6", + "theme.bar.menus.menu.network.listitems.passive": "#cdd6f4", + "theme.bar.menus.menu.network.status.color": "#6c7086", + "theme.bar.menus.menu.network.text": "#cdd6f4", + "theme.bar.menus.menu.network.label.color": "#cba6f7", + "theme.bar.menus.menu.network.border.color": "#313244", + "theme.bar.menus.menu.network.background.color": "#11111b", + "theme.bar.menus.menu.network.card.color": "#1e1e2e", + "theme.bar.menus.menu.volume.input_slider.puck": "#585b70", + "theme.bar.menus.menu.volume.input_slider.backgroundhover": "#45475a", + "theme.bar.menus.menu.volume.input_slider.background": "#585b71", + "theme.bar.menus.menu.volume.input_slider.primary": "#eba0ac", + "theme.bar.menus.menu.volume.audio_slider.puck": "#585b70", + "theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#45475a", + "theme.bar.menus.menu.volume.audio_slider.background": "#585b71", + "theme.bar.menus.menu.volume.audio_slider.primary": "#eba0ac", + "theme.bar.menus.menu.volume.icons.active": "#eba0ac", + "theme.bar.menus.menu.volume.icons.passive": "#9399b2", + "theme.bar.menus.menu.volume.iconbutton.active": "#eba0ac", + "theme.bar.menus.menu.volume.iconbutton.passive": "#cdd6f4", + "theme.bar.menus.menu.volume.listitems.active": "#eba0ab", + "theme.bar.menus.menu.volume.listitems.passive": "#cdd6f4", + "theme.bar.menus.menu.volume.border.color": "#313244", + "theme.bar.menus.menu.volume.background.color": "#11111b", + "theme.bar.menus.menu.media.slider.puck": "#6c7086", + "theme.bar.menus.menu.media.slider.backgroundhover": "#45475a", + "theme.bar.menus.menu.media.slider.background": "#585b71", + "theme.bar.menus.menu.media.slider.primary": "#f5c2e7", + "theme.bar.menus.menu.media.buttons.text": "#11111b", + "theme.bar.menus.menu.media.buttons.background": "#b4beff", + "theme.bar.menus.menu.media.buttons.enabled": "#94e2d4", + "theme.bar.menus.menu.media.buttons.inactive": "#585b70", + "theme.bar.menus.menu.media.border.color": "#313244", + "theme.bar.menus.menu.media.background.color": "#11111b", + "theme.bar.menus.menu.media.album": "#f5c2e8", + "theme.bar.menus.menu.media.artist": "#94e2d6", + "theme.bar.menus.menu.media.song": "#b4beff", + "theme.bar.menus.tooltip.text": "#cdd6f4", + "theme.bar.menus.tooltip.background": "#11111b", + "theme.bar.menus.dropdownmenu.divider": "#1e1e2e", + "theme.bar.menus.dropdownmenu.text": "#cdd6f4", + "theme.bar.menus.dropdownmenu.background": "#11111b", + "theme.bar.menus.slider.puck": "#6c7086", + "theme.bar.menus.slider.backgroundhover": "#45475a", + "theme.bar.menus.slider.background": "#585b71", + "theme.bar.menus.slider.primary": "#b4befe", + "theme.bar.menus.progressbar.background": "#45475a", + "theme.bar.menus.progressbar.foreground": "#b4befe", + "theme.bar.menus.iconbuttons.active": "#b4beff", + "theme.bar.menus.iconbuttons.passive": "#cdd6f3", + "theme.bar.menus.buttons.text": "#181824", + "theme.bar.menus.buttons.disabled": "#585b71", + "theme.bar.menus.buttons.active": "#f5c2e6", + "theme.bar.menus.buttons.default": "#b4befe", + "theme.bar.menus.switch.puck": "#454759", + "theme.bar.menus.switch.disabled": "#313245", + "theme.bar.menus.switch.enabled": "#b4befe", + "theme.bar.menus.icons.active": "#b4befe", + "theme.bar.menus.icons.passive": "#585b70", + "theme.bar.menus.listitems.active": "#b4befd", + "theme.bar.menus.listitems.passive": "#cdd6f4", + "theme.bar.menus.label": "#b4befe", + "theme.bar.menus.feinttext": "#313244", + "theme.bar.menus.dimtext": "#585b70", + "theme.bar.menus.cards": "#1e1e2e", + "theme.bar.buttons.notifications.total": "#b4befe", + "theme.bar.buttons.notifications.icon": "#1e1e2e", + "theme.bar.buttons.notifications.hover": "#45475a", + "theme.bar.buttons.notifications.background": "#242438", + "theme.bar.buttons.clock.icon": "#232338", + "theme.bar.buttons.clock.text": "#f5c2e7", + "theme.bar.buttons.clock.hover": "#45475a", + "theme.bar.buttons.clock.background": "#242438", + "theme.bar.buttons.battery.icon": "#242438", + "theme.bar.buttons.battery.text": "#f9e2af", + "theme.bar.buttons.battery.hover": "#45475a", + "theme.bar.buttons.battery.background": "#242438", + "theme.bar.buttons.systray.hover": "#45475a", + "theme.bar.buttons.systray.background": "#242438", + "theme.bar.buttons.bluetooth.icon": "#1e1e2e", + "theme.bar.buttons.bluetooth.text": "#89dceb", + "theme.bar.buttons.bluetooth.hover": "#45475a", + "theme.bar.buttons.bluetooth.background": "#242438", + "theme.bar.buttons.network.icon": "#242438", + "theme.bar.buttons.network.text": "#cba6f7", + "theme.bar.buttons.network.hover": "#45475a", + "theme.bar.buttons.network.background": "#242438", + "theme.bar.buttons.volume.icon": "#242438", + "theme.bar.buttons.volume.text": "#eba0ac", + "theme.bar.buttons.volume.hover": "#45475a", + "theme.bar.buttons.volume.background": "#242438", + "theme.bar.buttons.media.hover": "#45475a", + "theme.bar.buttons.windowtitle.icon": "#1e1e2e", + "theme.bar.buttons.windowtitle.text": "#f5c2e7", + "theme.bar.buttons.windowtitle.hover": "#45475a", + "theme.bar.buttons.windowtitle.background": "#242438", + "theme.bar.buttons.workspaces.numbered_active_text_color": "#181825", + "theme.bar.buttons.workspaces.active": "#f5c2e7", + "theme.bar.buttons.workspaces.occupied": "#f2cdcd", + "theme.bar.buttons.workspaces.available": "#89dceb", + "theme.bar.buttons.workspaces.hover": "#f5c2e7", + "theme.bar.buttons.workspaces.background": "#242438", + "theme.bar.buttons.dashboard.icon": "#1e1e2e", + "theme.bar.buttons.dashboard.hover": "#45475a", + "theme.bar.buttons.dashboard.background": "#f9e2af", + "theme.osd.label": "#b4beff", + "theme.osd.icon": "#11111b", + "theme.osd.bar_overflow_color": "#f38ba7", + "theme.osd.bar_empty_color": "#313244", + "theme.osd.bar_color": "#b4beff", + "theme.osd.icon_container": "#b4beff", + "theme.osd.bar_container": "#11111b", + "theme.notification.close_button.label": "#11111b", + "theme.notification.close_button.background": "#f38ba7", + "theme.notification.labelicon": "#b4befe", + "theme.notification.text": "#cdd6f4", + "theme.notification.time": "#7f849b", + "theme.notification.border": "#313243", + "theme.notification.label": "#b4befe", + "theme.notification.actions.text": "#181825", + "theme.notification.actions.background": "#b4befd", + "theme.notification.background": "#181826", + "theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#181825", + "theme.bar.buttons.workspaces.numbered_active_underline_color": "#f5c2e7", + "theme.bar.menus.menu.media.card.color": "#1e1e2e", + "theme.bar.menus.check_radio_button.background": "#45475a", + "theme.bar.menus.check_radio_button.active": "#b4beff", + "theme.bar.buttons.style": "split", + "theme.bar.buttons.icon_background": "#242438", + "theme.bar.buttons.volume.icon_background": "#eba0ac", + "theme.bar.buttons.network.icon_background": "#caa6f7", + "theme.bar.buttons.bluetooth.icon_background": "#89dbeb", + "theme.bar.buttons.windowtitle.icon_background": "#f5c2e7", + "theme.bar.buttons.media.icon_background": "#b4befe", + "theme.bar.buttons.notifications.icon_background": "#b4befe", + "theme.bar.buttons.battery.icon_background": "#f9e2af", + "theme.bar.buttons.clock.icon_background": "#f5c2e7", + "theme.bar.menus.menu.notifications.scrollbar.color": "#b4befe", + "theme.bar.menus.menu.notifications.pager.button": "#b4befe", + "theme.bar.menus.menu.notifications.pager.label": "#9399b2", + "theme.bar.menus.menu.notifications.pager.background": "#11111b" +} diff --git a/themes/cyberpunk.json b/themes/cyberpunk.json index 2c8ae90..4a073ec 100644 --- a/themes/cyberpunk.json +++ b/themes/cyberpunk.json @@ -262,12 +262,8 @@ "theme.bar.menus.check_radio_button.background": "#000000", "theme.bar.menus.check_radio_button.active": "#ffffff", "theme.bar.buttons.style": "default", - "theme.bar.buttons.icon_background": "#242438", - "theme.bar.buttons.volume.icon_background": "#ee999f", - "theme.bar.buttons.network.icon_background": "#c5a0f6", - "theme.bar.buttons.bluetooth.icon_background": "#91d7e3", - "theme.bar.buttons.windowtitle.icon_background": "#f5bde6", - "theme.bar.buttons.media.icon_background": "#b7bcf8", - "theme.bar.buttons.notifications.icon_background": "#b7bcf8", - "theme.bar.buttons.battery.icon_background": "#eed49f" -} \ No newline at end of file + "theme.bar.menus.menu.notifications.pager.button": "#FFD700", + "theme.bar.menus.menu.notifications.scrollbar.color": "#FFD700", + "theme.bar.menus.menu.notifications.pager.label": "#9399B2", + "theme.bar.menus.menu.notifications.pager.background": "#0A0A0A" +} diff --git a/themes/cyberpunk_split.json b/themes/cyberpunk_split.json index 2167b56..b1cd9a1 100644 --- a/themes/cyberpunk_split.json +++ b/themes/cyberpunk_split.json @@ -270,5 +270,9 @@ "theme.bar.buttons.media.icon_background": "#00ffff", "theme.bar.buttons.notifications.icon_background": "#f7d04b", "theme.bar.buttons.battery.icon_background": "#f7d04b", - "theme.bar.buttons.clock.icon_background": "#5bafff" -} \ No newline at end of file + "theme.bar.buttons.clock.icon_background": "#5bafff", + "theme.bar.menus.menu.notifications.pager.button": "#00ffff", + "theme.bar.menus.menu.notifications.scrollbar.color": "#00ffff", + "theme.bar.menus.menu.notifications.pager.label": "#9399B2", + "theme.bar.menus.menu.notifications.pager.background": "#0A0A0A" +} diff --git a/themes/dracula.json b/themes/dracula.json index e75a6f5..e2d1a9f 100644 --- a/themes/dracula.json +++ b/themes/dracula.json @@ -1,273 +1,269 @@ { - "theme.bar.menus.background": "#6272a4", - "theme.bar.background": "#282a36", - "theme.bar.buttons.media.icon": "#bd93f9", - "theme.bar.buttons.media.text": "#bd93f9", - "theme.bar.buttons.icon": "#bd93f9", - "theme.bar.buttons.text": "#bd93f9", - "theme.bar.buttons.hover": "#44475a", - "theme.bar.buttons.background": "#282936", - "theme.bar.menus.text": "#f8f8f2", - "theme.bar.menus.border.color": "#44475a", - "theme.bar.buttons.media.background": "#44475a", - "theme.bar.menus.menu.volume.text": "#f8f8f2", - "theme.bar.menus.menu.volume.card.color": "#44475a", - "theme.bar.menus.menu.volume.label.color": "#ffb86c", - "theme.bar.menus.popover.text": "#bd93f9", - "theme.bar.menus.popover.background": "#282a36", - "theme.bar.menus.menu.dashboard.powermenu.shutdown": "#ff5555", - "theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#ff5555", - "theme.bar.menus.menu.dashboard.powermenu.confirmation.confirm": "#50fa7b", - "theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#282a36", - "theme.bar.menus.menu.dashboard.powermenu.confirmation.body": "#f8f8f2", - "theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#bd93f9", - "theme.bar.menus.menu.dashboard.powermenu.confirmation.border": "#44475a", - "theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#282a36", - "theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#44475a", - "theme.bar.menus.menu.notifications.switch.puck": "#44475a", - "theme.bar.menus.menu.notifications.switch.disabled": "#44475a", - "theme.bar.menus.menu.notifications.switch.enabled": "#bd93f9", - "theme.bar.menus.menu.notifications.clear": "#bd93f9", - "theme.bar.menus.menu.notifications.switch_divider": "#44475a", - "theme.bar.menus.menu.notifications.border": "#44475a", - "theme.bar.menus.menu.notifications.card": "#44475a", - "theme.bar.menus.menu.notifications.background": "#282a36", - "theme.bar.menus.menu.notifications.no_notifications_label": "#44475a", - "theme.bar.menus.menu.notifications.label": "#bd93f9", - "theme.bar.menus.menu.dashboard.monitors.disk.label": "#ff79c6", - "theme.bar.menus.menu.dashboard.monitors.disk.bar": "#ff79c6", - "theme.bar.menus.menu.dashboard.monitors.disk.icon": "#ff79c6", - "theme.bar.menus.menu.dashboard.monitors.gpu.label": "#50fa7b", - "theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#50fa7b", - "theme.bar.menus.menu.dashboard.monitors.gpu.icon": "#50fa7b", - "theme.bar.menus.menu.dashboard.monitors.ram.label": "#f1fa8c", - "theme.bar.menus.menu.dashboard.monitors.ram.bar": "#f1fa8c", - "theme.bar.menus.menu.dashboard.monitors.ram.icon": "#f1fa8c", - "theme.bar.menus.menu.dashboard.monitors.cpu.label": "#ffb86c", - "theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#ffb86c", - "theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#ffb86c", - "theme.bar.menus.menu.dashboard.monitors.bar_background": "#6272a4", - "theme.bar.menus.menu.dashboard.directories.right.bottom.color": "#ffb86c", - "theme.bar.menus.menu.dashboard.directories.right.middle.color": "#bd93f9", - "theme.bar.menus.menu.dashboard.directories.right.top.color": "#8be9fd", - "theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#ff5555", - "theme.bar.menus.menu.dashboard.directories.left.middle.color": "#f1fa8c", - "theme.bar.menus.menu.dashboard.directories.left.top.color": "#ff79c6", - "theme.bar.menus.menu.dashboard.controls.input.text": "#282a36", - "theme.bar.menus.menu.dashboard.controls.input.background": "#ff79c6", - "theme.bar.menus.menu.dashboard.controls.volume.text": "#282a36", - "theme.bar.menus.menu.dashboard.controls.volume.background": "#ffb86c", - "theme.bar.menus.menu.dashboard.controls.notifications.text": "#282a36", - "theme.bar.menus.menu.dashboard.controls.notifications.background": "#f1fa8c", - "theme.bar.menus.menu.dashboard.controls.bluetooth.text": "#282a36", - "theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#8be9fd", - "theme.bar.menus.menu.dashboard.controls.wifi.text": "#282a36", - "theme.bar.menus.menu.dashboard.controls.wifi.background": "#bd93f9", - "theme.bar.menus.menu.dashboard.controls.disabled": "#44475a", - "theme.bar.menus.menu.dashboard.shortcuts.recording": "#50fa7b", - "theme.bar.menus.menu.dashboard.shortcuts.text": "#282a36", - "theme.bar.menus.menu.dashboard.shortcuts.background": "#bd93f9", - "theme.bar.menus.menu.dashboard.powermenu.sleep": "#8be9fd", - "theme.bar.menus.menu.dashboard.powermenu.logout": "#50fa7b", - "theme.bar.menus.menu.dashboard.powermenu.restart": "#ffb86c", - "theme.bar.menus.menu.dashboard.profile.name": "#ff79c6", - "theme.bar.menus.menu.dashboard.border.color": "#44475a", - "theme.bar.menus.menu.dashboard.background.color": "#282a36", - "theme.bar.menus.menu.dashboard.card.color": "#44475a", - "theme.bar.menus.menu.clock.weather.hourly.temperature": "#ff79c6", - "theme.bar.menus.menu.clock.weather.hourly.icon": "#ff79c6", - "theme.bar.menus.menu.clock.weather.hourly.time": "#ff79c6", - "theme.bar.menus.menu.clock.weather.thermometer.extremelycold": "#8be9fd", - "theme.bar.menus.menu.clock.weather.thermometer.cold": "#8be9fd", - "theme.bar.menus.menu.clock.weather.thermometer.moderate": "#bd93f9", - "theme.bar.menus.menu.clock.weather.thermometer.hot": "#ffb86c", - "theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#ff5555", - "theme.bar.menus.menu.clock.weather.stats": "#ff79c6", - "theme.bar.menus.menu.clock.weather.status": "#8be9fd", - "theme.bar.menus.menu.clock.weather.temperature": "#f8f8f2", - "theme.bar.menus.menu.clock.weather.icon": "#ff79c6", - "theme.bar.menus.menu.clock.calendar.contextdays": "#44475a", - "theme.bar.menus.menu.clock.calendar.days": "#f8f8f2", - "theme.bar.menus.menu.clock.calendar.currentday": "#ff79c6", - "theme.bar.menus.menu.clock.calendar.paginator": "#ff79c6", - "theme.bar.menus.menu.clock.calendar.weekdays": "#ff79c6", - "theme.bar.menus.menu.clock.calendar.yearmonth": "#8be9fd", - "theme.bar.menus.menu.clock.time.timeperiod": "#8be9fd", - "theme.bar.menus.menu.clock.time.time": "#ff79c6", - "theme.bar.menus.menu.clock.text": "#f8f8f2", - "theme.bar.menus.menu.clock.border.color": "#44475a", - "theme.bar.menus.menu.clock.background.color": "#282a36", - "theme.bar.menus.menu.clock.card.color": "#44475a", - "theme.bar.menus.menu.battery.slider.puck": "#282936", - "theme.bar.menus.menu.battery.slider.backgroundhover": "#6272a4", - "theme.bar.menus.menu.battery.slider.background": "#6272a4", - "theme.bar.menus.menu.battery.slider.primary": "#f1fa8c", - "theme.bar.menus.menu.battery.icons.active": "#f1fa8c", - "theme.bar.menus.menu.battery.icons.passive": "#6272a4", - "theme.bar.menus.menu.battery.listitems.active": "#f1fa8c", - "theme.bar.menus.menu.battery.listitems.passive": "#f8f8f2", - "theme.bar.menus.menu.battery.text": "#f8f8f2", - "theme.bar.menus.menu.battery.label.color": "#f1fa8c", - "theme.bar.menus.menu.battery.border.color": "#44475a", - "theme.bar.menus.menu.battery.background.color": "#282a36", - "theme.bar.menus.menu.battery.card.color": "#44475a", - "theme.bar.menus.menu.systray.dropdownmenu.divider": "#44475a", - "theme.bar.menus.menu.systray.dropdownmenu.text": "#f8f8f2", - "theme.bar.menus.menu.systray.dropdownmenu.background": "#282a36", - "theme.bar.menus.menu.bluetooth.iconbutton.active": "#8be9fd", - "theme.bar.menus.menu.bluetooth.iconbutton.passive": "#f8f8f2", - "theme.bar.menus.menu.bluetooth.icons.active": "#8be9fd", - "theme.bar.menus.menu.bluetooth.icons.passive": "#6272a4", - "theme.bar.menus.menu.bluetooth.listitems.active": "#8be9fd", - "theme.bar.menus.menu.bluetooth.listitems.passive": "#f8f8f2", - "theme.bar.menus.menu.bluetooth.switch.puck": "#44475a", - "theme.bar.menus.menu.bluetooth.switch.disabled": "#44475a", - "theme.bar.menus.menu.bluetooth.switch.enabled": "#8be9fd", - "theme.bar.menus.menu.bluetooth.switch_divider": "#44475a", - "theme.bar.menus.menu.bluetooth.status": "#44475a", - "theme.bar.menus.menu.bluetooth.text": "#f8f8f2", - "theme.bar.menus.menu.bluetooth.label.color": "#8be9fd", - "theme.bar.menus.menu.bluetooth.border.color": "#44475a", - "theme.bar.menus.menu.bluetooth.background.color": "#282a36", - "theme.bar.menus.menu.bluetooth.card.color": "#44475a", - "theme.bar.menus.menu.network.iconbuttons.active": "#bd93f9", - "theme.bar.menus.menu.network.iconbuttons.passive": "#f8f8f2", - "theme.bar.menus.menu.network.icons.active": "#bd93f9", - "theme.bar.menus.menu.network.icons.passive": "#6272a4", - "theme.bar.menus.menu.network.listitems.active": "#bd93f9", - "theme.bar.menus.menu.network.listitems.passive": "#f8f8f2", - "theme.bar.menus.menu.network.status.color": "#44475a", - "theme.bar.menus.menu.network.text": "#f8f8f2", - "theme.bar.menus.menu.network.label.color": "#bd93f9", - "theme.bar.menus.menu.network.border.color": "#44475a", - "theme.bar.menus.menu.network.background.color": "#282a36", - "theme.bar.menus.menu.network.card.color": "#44475a", - "theme.bar.menus.menu.volume.input_slider.puck": "#282936", - "theme.bar.menus.menu.volume.input_slider.backgroundhover": "#6272a4", - "theme.bar.menus.menu.volume.input_slider.background": "#6272a4", - "theme.bar.menus.menu.volume.input_slider.primary": "#ffb86c", - "theme.bar.menus.menu.volume.audio_slider.puck": "#282936", - "theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#6272a4", - "theme.bar.menus.menu.volume.audio_slider.background": "#6272a4", - "theme.bar.menus.menu.volume.audio_slider.primary": "#ffb86c", - "theme.bar.menus.menu.volume.icons.active": "#ffb86c", - "theme.bar.menus.menu.volume.icons.passive": "#6272a4", - "theme.bar.menus.menu.volume.iconbutton.active": "#ffb86c", - "theme.bar.menus.menu.volume.iconbutton.passive": "#f8f8f2", - "theme.bar.menus.menu.volume.listitems.active": "#ffb86c", - "theme.bar.menus.menu.volume.listitems.passive": "#f8f8f2", - "theme.bar.menus.menu.volume.border.color": "#44475a", - "theme.bar.menus.menu.volume.background.color": "#282a36", - "theme.bar.menus.menu.media.slider.puck": "#282936", - "theme.bar.menus.menu.media.slider.backgroundhover": "#6272a4", - "theme.bar.menus.menu.media.slider.background": "#6272a4", - "theme.bar.menus.menu.media.slider.primary": "#ff79c6", - "theme.bar.menus.menu.media.buttons.text": "#282a36", - "theme.bar.menus.menu.media.buttons.background": "#bd93f9", - "theme.bar.menus.menu.media.buttons.enabled": "#8be9fd", - "theme.bar.menus.menu.media.buttons.inactive": "#44475a", - "theme.bar.menus.menu.media.border.color": "#44475a", - "theme.bar.menus.menu.media.background.color": "#282a36", - "theme.bar.menus.menu.media.album": "#ff79c6", - "theme.bar.menus.menu.media.artist": "#8be9fd", - "theme.bar.menus.menu.media.song": "#bd93f9", - "theme.bar.menus.tooltip.text": "#f8f8f2", - "theme.bar.menus.tooltip.background": "#282a36", - "theme.bar.menus.dropdownmenu.divider": "#44475a", - "theme.bar.menus.dropdownmenu.text": "#f8f8f2", - "theme.bar.menus.dropdownmenu.background": "#282a36", - "theme.bar.menus.slider.puck": "#44475a", - "theme.bar.menus.slider.backgroundhover": "#44475a", - "theme.bar.menus.slider.background": "#44475a", - "theme.bar.menus.slider.primary": "#bd93f9", - "theme.bar.menus.progressbar.background": "#44475a", - "theme.bar.menus.progressbar.foreground": "#bd93f9", - "theme.bar.menus.iconbuttons.active": "#bd93f9", - "theme.bar.menus.iconbuttons.passive": "#f8f8f2", - "theme.bar.menus.buttons.text": "#282a36", - "theme.bar.menus.buttons.disabled": "#44475a", - "theme.bar.menus.buttons.active": "#ff79c6", - "theme.bar.menus.buttons.default": "#bd93f9", - "theme.bar.menus.switch.puck": "#44475a", - "theme.bar.menus.switch.disabled": "#44475a", - "theme.bar.menus.switch.enabled": "#bd93f9", - "theme.bar.menus.icons.active": "#bd93f9", - "theme.bar.menus.icons.passive": "#44475a", - "theme.bar.menus.listitems.active": "#bd93f9", - "theme.bar.menus.listitems.passive": "#f8f8f2", - "theme.bar.menus.label": "#bd93f9", - "theme.bar.menus.feinttext": "#44475a", - "theme.bar.menus.dimtext": "#6272a4", - "theme.bar.menus.cards": "#44475a", - "theme.bar.buttons.notifications.total": "#bd93f9", - "theme.bar.buttons.notifications.icon": "#bd93f9", - "theme.bar.buttons.notifications.hover": "#6272a4", - "theme.bar.buttons.notifications.background": "#44475a", - "theme.bar.buttons.clock.icon": "#ff79c6", - "theme.bar.buttons.clock.text": "#ff79c6", - "theme.bar.buttons.clock.hover": "#6272a4", - "theme.bar.buttons.clock.background": "#44475a", - "theme.bar.buttons.battery.icon": "#f1fa8c", - "theme.bar.buttons.battery.text": "#f1fa8c", - "theme.bar.buttons.battery.hover": "#6272a4", - "theme.bar.buttons.battery.background": "#44475a", - "theme.bar.buttons.systray.hover": "#6272a4", - "theme.bar.buttons.systray.background": "#44475a", - "theme.bar.buttons.bluetooth.icon": "#8be9fd", - "theme.bar.buttons.bluetooth.text": "#8be9fd", - "theme.bar.buttons.bluetooth.hover": "#6272a4", - "theme.bar.buttons.bluetooth.background": "#44475a", - "theme.bar.buttons.network.icon": "#bd93f9", - "theme.bar.buttons.network.text": "#bd93f9", - "theme.bar.buttons.network.hover": "#6272a4", - "theme.bar.buttons.network.background": "#44475a", - "theme.bar.buttons.volume.icon": "#ffb86c", - "theme.bar.buttons.volume.text": "#ffb86c", - "theme.bar.buttons.volume.hover": "#6272a4", - "theme.bar.buttons.volume.background": "#44475a", - "theme.bar.buttons.media.hover": "#6272a4", - "theme.bar.buttons.windowtitle.icon": "#f1fa8c", - "theme.bar.buttons.windowtitle.text": "#f1fa8c", - "theme.bar.buttons.windowtitle.hover": "#6272a4", - "theme.bar.buttons.windowtitle.background": "#44475a", - "theme.bar.buttons.workspaces.numbered_active_text_color": "#282a36", - "theme.bar.buttons.workspaces.active": "#ff79c6", - "theme.bar.buttons.workspaces.occupied": "#ffb86c", - "theme.bar.buttons.workspaces.available": "#8be9fd", - "theme.bar.buttons.workspaces.hover": "#44475a", - "theme.bar.buttons.workspaces.background": "#44475a", - "theme.bar.buttons.dashboard.icon": "#8be8fd", - "theme.bar.buttons.dashboard.hover": "#6272a4", - "theme.bar.buttons.dashboard.background": "#44475a", - "theme.osd.label": "#bd93f9", - "theme.osd.icon": "#282a36", - "theme.osd.bar_overflow_color": "#ff5555", - "theme.osd.bar_empty_color": "#44475a", - "theme.osd.bar_color": "#bd93f9", - "theme.osd.icon_container": "#bd93f9", - "theme.osd.bar_container": "#282a36", - "theme.notification.close_button.label": "#282a36", - "theme.notification.close_button.background": "#bd93f9", - "theme.notification.labelicon": "#bd93f9", - "theme.notification.text": "#f8f8f2", - "theme.notification.time": "#6272a4", - "theme.notification.border": "#44475a", - "theme.notification.label": "#bd93f9", - "theme.notification.actions.text": "#282a36", - "theme.notification.actions.background": "#bd93f9", - "theme.notification.background": "#282a36", - "theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#21252b", - "theme.bar.buttons.workspaces.numbered_active_underline_color": "#e23ee2", - "theme.bar.menus.menu.media.card.color": "#44475a", - "theme.bar.menus.check_radio_button.background": "#282936", - "theme.bar.menus.check_radio_button.active": "#bd93f9", - "theme.bar.buttons.style": "default", - "theme.bar.buttons.icon_background": "#242438", - "theme.bar.buttons.volume.icon_background": "#ee999f", - "theme.bar.buttons.network.icon_background": "#c5a0f6", - "theme.bar.buttons.bluetooth.icon_background": "#91d7e3", - "theme.bar.buttons.windowtitle.icon_background": "#f5bde6", - "theme.bar.buttons.media.icon_background": "#b7bcf8", - "theme.bar.buttons.notifications.icon_background": "#b7bcf8", - "theme.bar.buttons.battery.icon_background": "#eed49f" -} \ No newline at end of file + "theme.bar.menus.background": "#6272a4", + "theme.bar.background": "#282a36", + "theme.bar.buttons.media.icon": "#bd93f9", + "theme.bar.buttons.media.text": "#bd93f9", + "theme.bar.buttons.icon": "#bd93f9", + "theme.bar.buttons.text": "#bd93f9", + "theme.bar.buttons.hover": "#44475a", + "theme.bar.buttons.background": "#282936", + "theme.bar.menus.text": "#f8f8f2", + "theme.bar.menus.border.color": "#44475a", + "theme.bar.buttons.media.background": "#44475a", + "theme.bar.menus.menu.volume.text": "#f8f8f2", + "theme.bar.menus.menu.volume.card.color": "#44475a", + "theme.bar.menus.menu.volume.label.color": "#ffb86c", + "theme.bar.menus.popover.text": "#bd93f9", + "theme.bar.menus.popover.background": "#282a36", + "theme.bar.menus.menu.dashboard.powermenu.shutdown": "#ff5555", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#ff5555", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.confirm": "#50fa7b", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#282a36", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.body": "#f8f8f2", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#bd93f9", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.border": "#44475a", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#282a36", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#44475a", + "theme.bar.menus.menu.notifications.switch.puck": "#44475a", + "theme.bar.menus.menu.notifications.switch.disabled": "#44475a", + "theme.bar.menus.menu.notifications.switch.enabled": "#bd93f9", + "theme.bar.menus.menu.notifications.clear": "#bd93f9", + "theme.bar.menus.menu.notifications.switch_divider": "#44475a", + "theme.bar.menus.menu.notifications.border": "#44475a", + "theme.bar.menus.menu.notifications.card": "#44475a", + "theme.bar.menus.menu.notifications.background": "#282a36", + "theme.bar.menus.menu.notifications.no_notifications_label": "#44475a", + "theme.bar.menus.menu.notifications.label": "#bd93f9", + "theme.bar.menus.menu.dashboard.monitors.disk.label": "#ff79c6", + "theme.bar.menus.menu.dashboard.monitors.disk.bar": "#ff79c6", + "theme.bar.menus.menu.dashboard.monitors.disk.icon": "#ff79c6", + "theme.bar.menus.menu.dashboard.monitors.gpu.label": "#50fa7b", + "theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#50fa7b", + "theme.bar.menus.menu.dashboard.monitors.gpu.icon": "#50fa7b", + "theme.bar.menus.menu.dashboard.monitors.ram.label": "#f1fa8c", + "theme.bar.menus.menu.dashboard.monitors.ram.bar": "#f1fa8c", + "theme.bar.menus.menu.dashboard.monitors.ram.icon": "#f1fa8c", + "theme.bar.menus.menu.dashboard.monitors.cpu.label": "#ffb86c", + "theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#ffb86c", + "theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#ffb86c", + "theme.bar.menus.menu.dashboard.monitors.bar_background": "#6272a4", + "theme.bar.menus.menu.dashboard.directories.right.bottom.color": "#ffb86c", + "theme.bar.menus.menu.dashboard.directories.right.middle.color": "#bd93f9", + "theme.bar.menus.menu.dashboard.directories.right.top.color": "#8be9fd", + "theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#ff5555", + "theme.bar.menus.menu.dashboard.directories.left.middle.color": "#f1fa8c", + "theme.bar.menus.menu.dashboard.directories.left.top.color": "#ff79c6", + "theme.bar.menus.menu.dashboard.controls.input.text": "#282a36", + "theme.bar.menus.menu.dashboard.controls.input.background": "#ff79c6", + "theme.bar.menus.menu.dashboard.controls.volume.text": "#282a36", + "theme.bar.menus.menu.dashboard.controls.volume.background": "#ffb86c", + "theme.bar.menus.menu.dashboard.controls.notifications.text": "#282a36", + "theme.bar.menus.menu.dashboard.controls.notifications.background": "#f1fa8c", + "theme.bar.menus.menu.dashboard.controls.bluetooth.text": "#282a36", + "theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#8be9fd", + "theme.bar.menus.menu.dashboard.controls.wifi.text": "#282a36", + "theme.bar.menus.menu.dashboard.controls.wifi.background": "#bd93f9", + "theme.bar.menus.menu.dashboard.controls.disabled": "#44475a", + "theme.bar.menus.menu.dashboard.shortcuts.recording": "#50fa7b", + "theme.bar.menus.menu.dashboard.shortcuts.text": "#282a36", + "theme.bar.menus.menu.dashboard.shortcuts.background": "#bd93f9", + "theme.bar.menus.menu.dashboard.powermenu.sleep": "#8be9fd", + "theme.bar.menus.menu.dashboard.powermenu.logout": "#50fa7b", + "theme.bar.menus.menu.dashboard.powermenu.restart": "#ffb86c", + "theme.bar.menus.menu.dashboard.profile.name": "#ff79c6", + "theme.bar.menus.menu.dashboard.border.color": "#44475a", + "theme.bar.menus.menu.dashboard.background.color": "#282a36", + "theme.bar.menus.menu.dashboard.card.color": "#44475a", + "theme.bar.menus.menu.clock.weather.hourly.temperature": "#ff79c6", + "theme.bar.menus.menu.clock.weather.hourly.icon": "#ff79c6", + "theme.bar.menus.menu.clock.weather.hourly.time": "#ff79c6", + "theme.bar.menus.menu.clock.weather.thermometer.extremelycold": "#8be9fd", + "theme.bar.menus.menu.clock.weather.thermometer.cold": "#8be9fd", + "theme.bar.menus.menu.clock.weather.thermometer.moderate": "#bd93f9", + "theme.bar.menus.menu.clock.weather.thermometer.hot": "#ffb86c", + "theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#ff5555", + "theme.bar.menus.menu.clock.weather.stats": "#ff79c6", + "theme.bar.menus.menu.clock.weather.status": "#8be9fd", + "theme.bar.menus.menu.clock.weather.temperature": "#f8f8f2", + "theme.bar.menus.menu.clock.weather.icon": "#ff79c6", + "theme.bar.menus.menu.clock.calendar.contextdays": "#44475a", + "theme.bar.menus.menu.clock.calendar.days": "#f8f8f2", + "theme.bar.menus.menu.clock.calendar.currentday": "#ff79c6", + "theme.bar.menus.menu.clock.calendar.paginator": "#ff79c6", + "theme.bar.menus.menu.clock.calendar.weekdays": "#ff79c6", + "theme.bar.menus.menu.clock.calendar.yearmonth": "#8be9fd", + "theme.bar.menus.menu.clock.time.timeperiod": "#8be9fd", + "theme.bar.menus.menu.clock.time.time": "#ff79c6", + "theme.bar.menus.menu.clock.text": "#f8f8f2", + "theme.bar.menus.menu.clock.border.color": "#44475a", + "theme.bar.menus.menu.clock.background.color": "#282a36", + "theme.bar.menus.menu.clock.card.color": "#44475a", + "theme.bar.menus.menu.battery.slider.puck": "#282936", + "theme.bar.menus.menu.battery.slider.backgroundhover": "#6272a4", + "theme.bar.menus.menu.battery.slider.background": "#6272a4", + "theme.bar.menus.menu.battery.slider.primary": "#f1fa8c", + "theme.bar.menus.menu.battery.icons.active": "#f1fa8c", + "theme.bar.menus.menu.battery.icons.passive": "#6272a4", + "theme.bar.menus.menu.battery.listitems.active": "#f1fa8c", + "theme.bar.menus.menu.battery.listitems.passive": "#f8f8f2", + "theme.bar.menus.menu.battery.text": "#f8f8f2", + "theme.bar.menus.menu.battery.label.color": "#f1fa8c", + "theme.bar.menus.menu.battery.border.color": "#44475a", + "theme.bar.menus.menu.battery.background.color": "#282a36", + "theme.bar.menus.menu.battery.card.color": "#44475a", + "theme.bar.menus.menu.systray.dropdownmenu.divider": "#44475a", + "theme.bar.menus.menu.systray.dropdownmenu.text": "#f8f8f2", + "theme.bar.menus.menu.systray.dropdownmenu.background": "#282a36", + "theme.bar.menus.menu.bluetooth.iconbutton.active": "#8be9fd", + "theme.bar.menus.menu.bluetooth.iconbutton.passive": "#f8f8f2", + "theme.bar.menus.menu.bluetooth.icons.active": "#8be9fd", + "theme.bar.menus.menu.bluetooth.icons.passive": "#6272a4", + "theme.bar.menus.menu.bluetooth.listitems.active": "#8be9fd", + "theme.bar.menus.menu.bluetooth.listitems.passive": "#f8f8f2", + "theme.bar.menus.menu.bluetooth.switch.puck": "#44475a", + "theme.bar.menus.menu.bluetooth.switch.disabled": "#44475a", + "theme.bar.menus.menu.bluetooth.switch.enabled": "#8be9fd", + "theme.bar.menus.menu.bluetooth.switch_divider": "#44475a", + "theme.bar.menus.menu.bluetooth.status": "#44475a", + "theme.bar.menus.menu.bluetooth.text": "#f8f8f2", + "theme.bar.menus.menu.bluetooth.label.color": "#8be9fd", + "theme.bar.menus.menu.bluetooth.border.color": "#44475a", + "theme.bar.menus.menu.bluetooth.background.color": "#282a36", + "theme.bar.menus.menu.bluetooth.card.color": "#44475a", + "theme.bar.menus.menu.network.iconbuttons.active": "#bd93f9", + "theme.bar.menus.menu.network.iconbuttons.passive": "#f8f8f2", + "theme.bar.menus.menu.network.icons.active": "#bd93f9", + "theme.bar.menus.menu.network.icons.passive": "#6272a4", + "theme.bar.menus.menu.network.listitems.active": "#bd93f9", + "theme.bar.menus.menu.network.listitems.passive": "#f8f8f2", + "theme.bar.menus.menu.network.status.color": "#44475a", + "theme.bar.menus.menu.network.text": "#f8f8f2", + "theme.bar.menus.menu.network.label.color": "#bd93f9", + "theme.bar.menus.menu.network.border.color": "#44475a", + "theme.bar.menus.menu.network.background.color": "#282a36", + "theme.bar.menus.menu.network.card.color": "#44475a", + "theme.bar.menus.menu.volume.input_slider.puck": "#282936", + "theme.bar.menus.menu.volume.input_slider.backgroundhover": "#6272a4", + "theme.bar.menus.menu.volume.input_slider.background": "#6272a4", + "theme.bar.menus.menu.volume.input_slider.primary": "#ffb86c", + "theme.bar.menus.menu.volume.audio_slider.puck": "#282936", + "theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#6272a4", + "theme.bar.menus.menu.volume.audio_slider.background": "#6272a4", + "theme.bar.menus.menu.volume.audio_slider.primary": "#ffb86c", + "theme.bar.menus.menu.volume.icons.active": "#ffb86c", + "theme.bar.menus.menu.volume.icons.passive": "#6272a4", + "theme.bar.menus.menu.volume.iconbutton.active": "#ffb86c", + "theme.bar.menus.menu.volume.iconbutton.passive": "#f8f8f2", + "theme.bar.menus.menu.volume.listitems.active": "#ffb86c", + "theme.bar.menus.menu.volume.listitems.passive": "#f8f8f2", + "theme.bar.menus.menu.volume.border.color": "#44475a", + "theme.bar.menus.menu.volume.background.color": "#282a36", + "theme.bar.menus.menu.media.slider.puck": "#282936", + "theme.bar.menus.menu.media.slider.backgroundhover": "#6272a4", + "theme.bar.menus.menu.media.slider.background": "#6272a4", + "theme.bar.menus.menu.media.slider.primary": "#ff79c6", + "theme.bar.menus.menu.media.buttons.text": "#282a36", + "theme.bar.menus.menu.media.buttons.background": "#bd93f9", + "theme.bar.menus.menu.media.buttons.enabled": "#8be9fd", + "theme.bar.menus.menu.media.buttons.inactive": "#44475a", + "theme.bar.menus.menu.media.border.color": "#44475a", + "theme.bar.menus.menu.media.background.color": "#282a36", + "theme.bar.menus.menu.media.album": "#ff79c6", + "theme.bar.menus.menu.media.artist": "#8be9fd", + "theme.bar.menus.menu.media.song": "#bd93f9", + "theme.bar.menus.tooltip.text": "#f8f8f2", + "theme.bar.menus.tooltip.background": "#282a36", + "theme.bar.menus.dropdownmenu.divider": "#44475a", + "theme.bar.menus.dropdownmenu.text": "#f8f8f2", + "theme.bar.menus.dropdownmenu.background": "#282a36", + "theme.bar.menus.slider.puck": "#44475a", + "theme.bar.menus.slider.backgroundhover": "#44475a", + "theme.bar.menus.slider.background": "#44475a", + "theme.bar.menus.slider.primary": "#bd93f9", + "theme.bar.menus.progressbar.background": "#44475a", + "theme.bar.menus.progressbar.foreground": "#bd93f9", + "theme.bar.menus.iconbuttons.active": "#bd93f9", + "theme.bar.menus.iconbuttons.passive": "#f8f8f2", + "theme.bar.menus.buttons.text": "#282a36", + "theme.bar.menus.buttons.disabled": "#44475a", + "theme.bar.menus.buttons.active": "#ff79c6", + "theme.bar.menus.buttons.default": "#bd93f9", + "theme.bar.menus.switch.puck": "#44475a", + "theme.bar.menus.switch.disabled": "#44475a", + "theme.bar.menus.switch.enabled": "#bd93f9", + "theme.bar.menus.icons.active": "#bd93f9", + "theme.bar.menus.icons.passive": "#44475a", + "theme.bar.menus.listitems.active": "#bd93f9", + "theme.bar.menus.listitems.passive": "#f8f8f2", + "theme.bar.menus.label": "#bd93f9", + "theme.bar.menus.feinttext": "#44475a", + "theme.bar.menus.dimtext": "#6272a4", + "theme.bar.menus.cards": "#44475a", + "theme.bar.buttons.notifications.total": "#bd93f9", + "theme.bar.buttons.notifications.icon": "#bd93f9", + "theme.bar.buttons.notifications.hover": "#6272a4", + "theme.bar.buttons.notifications.background": "#44475a", + "theme.bar.buttons.clock.icon": "#ff79c6", + "theme.bar.buttons.clock.text": "#ff79c6", + "theme.bar.buttons.clock.hover": "#6272a4", + "theme.bar.buttons.clock.background": "#44475a", + "theme.bar.buttons.battery.icon": "#f1fa8c", + "theme.bar.buttons.battery.text": "#f1fa8c", + "theme.bar.buttons.battery.hover": "#6272a4", + "theme.bar.buttons.battery.background": "#44475a", + "theme.bar.buttons.systray.hover": "#6272a4", + "theme.bar.buttons.systray.background": "#44475a", + "theme.bar.buttons.bluetooth.icon": "#8be9fd", + "theme.bar.buttons.bluetooth.text": "#8be9fd", + "theme.bar.buttons.bluetooth.hover": "#6272a4", + "theme.bar.buttons.bluetooth.background": "#44475a", + "theme.bar.buttons.network.icon": "#bd93f9", + "theme.bar.buttons.network.text": "#bd93f9", + "theme.bar.buttons.network.hover": "#6272a4", + "theme.bar.buttons.network.background": "#44475a", + "theme.bar.buttons.volume.icon": "#ffb86c", + "theme.bar.buttons.volume.text": "#ffb86c", + "theme.bar.buttons.volume.hover": "#6272a4", + "theme.bar.buttons.volume.background": "#44475a", + "theme.bar.buttons.media.hover": "#6272a4", + "theme.bar.buttons.windowtitle.icon": "#f1fa8c", + "theme.bar.buttons.windowtitle.text": "#f1fa8c", + "theme.bar.buttons.windowtitle.hover": "#6272a4", + "theme.bar.buttons.windowtitle.background": "#44475a", + "theme.bar.buttons.workspaces.numbered_active_text_color": "#282a36", + "theme.bar.buttons.workspaces.active": "#ff79c6", + "theme.bar.buttons.workspaces.occupied": "#ffb86c", + "theme.bar.buttons.workspaces.available": "#8be9fd", + "theme.bar.buttons.workspaces.hover": "#44475a", + "theme.bar.buttons.workspaces.background": "#44475a", + "theme.bar.buttons.dashboard.icon": "#8be8fd", + "theme.bar.buttons.dashboard.hover": "#6272a4", + "theme.bar.buttons.dashboard.background": "#44475a", + "theme.osd.label": "#bd93f9", + "theme.osd.icon": "#282a36", + "theme.osd.bar_overflow_color": "#ff5555", + "theme.osd.bar_empty_color": "#44475a", + "theme.osd.bar_color": "#bd93f9", + "theme.osd.icon_container": "#bd93f9", + "theme.osd.bar_container": "#282a36", + "theme.notification.close_button.label": "#282a36", + "theme.notification.close_button.background": "#bd93f9", + "theme.notification.labelicon": "#bd93f9", + "theme.notification.text": "#f8f8f2", + "theme.notification.time": "#6272a4", + "theme.notification.border": "#44475a", + "theme.notification.label": "#bd93f9", + "theme.notification.actions.text": "#282a36", + "theme.notification.actions.background": "#bd93f9", + "theme.notification.background": "#282a36", + "theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#21252b", + "theme.bar.buttons.workspaces.numbered_active_underline_color": "#e23ee2", + "theme.bar.menus.menu.media.card.color": "#44475a", + "theme.bar.menus.check_radio_button.background": "#282936", + "theme.bar.menus.check_radio_button.active": "#bd93f9", + "theme.bar.buttons.style": "default", + "theme.bar.menus.menu.notifications.pager.button": "#bd93f9", + "theme.bar.menus.menu.notifications.scrollbar.color": "#bd93f9", + "theme.bar.menus.menu.notifications.pager.label": "#6272a4", + "theme.bar.menus.menu.notifications.pager.background": "#282936" +} diff --git a/themes/dracula_split.json b/themes/dracula_split.json index 7d76843..53c16ee 100644 --- a/themes/dracula_split.json +++ b/themes/dracula_split.json @@ -1,274 +1,278 @@ { - "theme.bar.menus.background": "#6272a4", - "theme.bar.background": "#282a36", - "theme.bar.buttons.media.icon": "#44475a", - "theme.bar.buttons.media.text": "#bd93f9", - "theme.bar.buttons.icon": "#bd93f9", - "theme.bar.buttons.text": "#bd93f9", - "theme.bar.buttons.hover": "#44475a", - "theme.bar.buttons.background": "#282936", - "theme.bar.menus.text": "#f8f8f2", - "theme.bar.menus.border.color": "#44475a", - "theme.bar.buttons.media.background": "#44475a", - "theme.bar.menus.menu.volume.text": "#f8f8f2", - "theme.bar.menus.menu.volume.card.color": "#44475a", - "theme.bar.menus.menu.volume.label.color": "#ffb86c", - "theme.bar.menus.popover.text": "#bd93f9", - "theme.bar.menus.popover.background": "#282a36", - "theme.bar.menus.menu.dashboard.powermenu.shutdown": "#ff5555", - "theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#ff5555", - "theme.bar.menus.menu.dashboard.powermenu.confirmation.confirm": "#50fa7b", - "theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#282a36", - "theme.bar.menus.menu.dashboard.powermenu.confirmation.body": "#f8f8f2", - "theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#bd93f9", - "theme.bar.menus.menu.dashboard.powermenu.confirmation.border": "#44475a", - "theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#282a36", - "theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#44475a", - "theme.bar.menus.menu.notifications.switch.puck": "#44475a", - "theme.bar.menus.menu.notifications.switch.disabled": "#44475a", - "theme.bar.menus.menu.notifications.switch.enabled": "#bd93f9", - "theme.bar.menus.menu.notifications.clear": "#bd93f9", - "theme.bar.menus.menu.notifications.switch_divider": "#44475a", - "theme.bar.menus.menu.notifications.border": "#44475a", - "theme.bar.menus.menu.notifications.card": "#44475a", - "theme.bar.menus.menu.notifications.background": "#282a36", - "theme.bar.menus.menu.notifications.no_notifications_label": "#44475a", - "theme.bar.menus.menu.notifications.label": "#bd93f9", - "theme.bar.menus.menu.dashboard.monitors.disk.label": "#ff79c6", - "theme.bar.menus.menu.dashboard.monitors.disk.bar": "#ff79c6", - "theme.bar.menus.menu.dashboard.monitors.disk.icon": "#ff79c6", - "theme.bar.menus.menu.dashboard.monitors.gpu.label": "#50fa7b", - "theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#50fa7b", - "theme.bar.menus.menu.dashboard.monitors.gpu.icon": "#50fa7b", - "theme.bar.menus.menu.dashboard.monitors.ram.label": "#f1fa8c", - "theme.bar.menus.menu.dashboard.monitors.ram.bar": "#f1fa8c", - "theme.bar.menus.menu.dashboard.monitors.ram.icon": "#f1fa8c", - "theme.bar.menus.menu.dashboard.monitors.cpu.label": "#ffb86c", - "theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#ffb86c", - "theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#ffb86c", - "theme.bar.menus.menu.dashboard.monitors.bar_background": "#6272a4", - "theme.bar.menus.menu.dashboard.directories.right.bottom.color": "#ffb86c", - "theme.bar.menus.menu.dashboard.directories.right.middle.color": "#bd93f9", - "theme.bar.menus.menu.dashboard.directories.right.top.color": "#8be9fd", - "theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#ff5555", - "theme.bar.menus.menu.dashboard.directories.left.middle.color": "#f1fa8c", - "theme.bar.menus.menu.dashboard.directories.left.top.color": "#ff79c6", - "theme.bar.menus.menu.dashboard.controls.input.text": "#282a36", - "theme.bar.menus.menu.dashboard.controls.input.background": "#ff79c6", - "theme.bar.menus.menu.dashboard.controls.volume.text": "#282a36", - "theme.bar.menus.menu.dashboard.controls.volume.background": "#ffb86c", - "theme.bar.menus.menu.dashboard.controls.notifications.text": "#282a36", - "theme.bar.menus.menu.dashboard.controls.notifications.background": "#f1fa8c", - "theme.bar.menus.menu.dashboard.controls.bluetooth.text": "#282a36", - "theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#8be9fd", - "theme.bar.menus.menu.dashboard.controls.wifi.text": "#282a36", - "theme.bar.menus.menu.dashboard.controls.wifi.background": "#bd93f9", - "theme.bar.menus.menu.dashboard.controls.disabled": "#44475a", - "theme.bar.menus.menu.dashboard.shortcuts.recording": "#50fa7b", - "theme.bar.menus.menu.dashboard.shortcuts.text": "#282a36", - "theme.bar.menus.menu.dashboard.shortcuts.background": "#bd93f9", - "theme.bar.menus.menu.dashboard.powermenu.sleep": "#8be9fd", - "theme.bar.menus.menu.dashboard.powermenu.logout": "#50fa7b", - "theme.bar.menus.menu.dashboard.powermenu.restart": "#ffb86c", - "theme.bar.menus.menu.dashboard.profile.name": "#ff79c6", - "theme.bar.menus.menu.dashboard.border.color": "#44475a", - "theme.bar.menus.menu.dashboard.background.color": "#282a36", - "theme.bar.menus.menu.dashboard.card.color": "#44475a", - "theme.bar.menus.menu.clock.weather.hourly.temperature": "#ff79c6", - "theme.bar.menus.menu.clock.weather.hourly.icon": "#ff79c6", - "theme.bar.menus.menu.clock.weather.hourly.time": "#ff79c6", - "theme.bar.menus.menu.clock.weather.thermometer.extremelycold": "#8be9fd", - "theme.bar.menus.menu.clock.weather.thermometer.cold": "#8be9fd", - "theme.bar.menus.menu.clock.weather.thermometer.moderate": "#bd93f9", - "theme.bar.menus.menu.clock.weather.thermometer.hot": "#ffb86c", - "theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#ff5555", - "theme.bar.menus.menu.clock.weather.stats": "#ff79c6", - "theme.bar.menus.menu.clock.weather.status": "#8be9fd", - "theme.bar.menus.menu.clock.weather.temperature": "#f8f8f2", - "theme.bar.menus.menu.clock.weather.icon": "#ff79c6", - "theme.bar.menus.menu.clock.calendar.contextdays": "#44475a", - "theme.bar.menus.menu.clock.calendar.days": "#f8f8f2", - "theme.bar.menus.menu.clock.calendar.currentday": "#ff79c6", - "theme.bar.menus.menu.clock.calendar.paginator": "#ff79c6", - "theme.bar.menus.menu.clock.calendar.weekdays": "#ff79c6", - "theme.bar.menus.menu.clock.calendar.yearmonth": "#8be9fd", - "theme.bar.menus.menu.clock.time.timeperiod": "#8be9fd", - "theme.bar.menus.menu.clock.time.time": "#ff79c6", - "theme.bar.menus.menu.clock.text": "#f8f8f2", - "theme.bar.menus.menu.clock.border.color": "#44475a", - "theme.bar.menus.menu.clock.background.color": "#282a36", - "theme.bar.menus.menu.clock.card.color": "#44475a", - "theme.bar.menus.menu.battery.slider.puck": "#282936", - "theme.bar.menus.menu.battery.slider.backgroundhover": "#6272a4", - "theme.bar.menus.menu.battery.slider.background": "#6272a4", - "theme.bar.menus.menu.battery.slider.primary": "#f1fa8c", - "theme.bar.menus.menu.battery.icons.active": "#f1fa8c", - "theme.bar.menus.menu.battery.icons.passive": "#6272a4", - "theme.bar.menus.menu.battery.listitems.active": "#f1fa8c", - "theme.bar.menus.menu.battery.listitems.passive": "#f8f8f2", - "theme.bar.menus.menu.battery.text": "#f8f8f2", - "theme.bar.menus.menu.battery.label.color": "#f1fa8c", - "theme.bar.menus.menu.battery.border.color": "#44475a", - "theme.bar.menus.menu.battery.background.color": "#282a36", - "theme.bar.menus.menu.battery.card.color": "#44475a", - "theme.bar.menus.menu.systray.dropdownmenu.divider": "#44475a", - "theme.bar.menus.menu.systray.dropdownmenu.text": "#f8f8f2", - "theme.bar.menus.menu.systray.dropdownmenu.background": "#282a36", - "theme.bar.menus.menu.bluetooth.iconbutton.active": "#8be9fd", - "theme.bar.menus.menu.bluetooth.iconbutton.passive": "#f8f8f2", - "theme.bar.menus.menu.bluetooth.icons.active": "#8be9fd", - "theme.bar.menus.menu.bluetooth.icons.passive": "#6272a4", - "theme.bar.menus.menu.bluetooth.listitems.active": "#8be9fd", - "theme.bar.menus.menu.bluetooth.listitems.passive": "#f8f8f2", - "theme.bar.menus.menu.bluetooth.switch.puck": "#44475a", - "theme.bar.menus.menu.bluetooth.switch.disabled": "#44475a", - "theme.bar.menus.menu.bluetooth.switch.enabled": "#8be9fd", - "theme.bar.menus.menu.bluetooth.switch_divider": "#44475a", - "theme.bar.menus.menu.bluetooth.status": "#44475a", - "theme.bar.menus.menu.bluetooth.text": "#f8f8f2", - "theme.bar.menus.menu.bluetooth.label.color": "#8be9fd", - "theme.bar.menus.menu.bluetooth.border.color": "#44475a", - "theme.bar.menus.menu.bluetooth.background.color": "#282a36", - "theme.bar.menus.menu.bluetooth.card.color": "#44475a", - "theme.bar.menus.menu.network.iconbuttons.active": "#bd93f9", - "theme.bar.menus.menu.network.iconbuttons.passive": "#f8f8f2", - "theme.bar.menus.menu.network.icons.active": "#bd93f9", - "theme.bar.menus.menu.network.icons.passive": "#6272a4", - "theme.bar.menus.menu.network.listitems.active": "#bd93f9", - "theme.bar.menus.menu.network.listitems.passive": "#f8f8f2", - "theme.bar.menus.menu.network.status.color": "#44475a", - "theme.bar.menus.menu.network.text": "#f8f8f2", - "theme.bar.menus.menu.network.label.color": "#bd93f9", - "theme.bar.menus.menu.network.border.color": "#44475a", - "theme.bar.menus.menu.network.background.color": "#282a36", - "theme.bar.menus.menu.network.card.color": "#44475a", - "theme.bar.menus.menu.volume.input_slider.puck": "#282936", - "theme.bar.menus.menu.volume.input_slider.backgroundhover": "#6272a4", - "theme.bar.menus.menu.volume.input_slider.background": "#6272a4", - "theme.bar.menus.menu.volume.input_slider.primary": "#ffb86c", - "theme.bar.menus.menu.volume.audio_slider.puck": "#282936", - "theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#6272a4", - "theme.bar.menus.menu.volume.audio_slider.background": "#6272a4", - "theme.bar.menus.menu.volume.audio_slider.primary": "#ffb86c", - "theme.bar.menus.menu.volume.icons.active": "#ffb86c", - "theme.bar.menus.menu.volume.icons.passive": "#6272a4", - "theme.bar.menus.menu.volume.iconbutton.active": "#ffb86c", - "theme.bar.menus.menu.volume.iconbutton.passive": "#f8f8f2", - "theme.bar.menus.menu.volume.listitems.active": "#ffb86c", - "theme.bar.menus.menu.volume.listitems.passive": "#f8f8f2", - "theme.bar.menus.menu.volume.border.color": "#44475a", - "theme.bar.menus.menu.volume.background.color": "#282a36", - "theme.bar.menus.menu.media.slider.puck": "#282936", - "theme.bar.menus.menu.media.slider.backgroundhover": "#6272a4", - "theme.bar.menus.menu.media.slider.background": "#6272a4", - "theme.bar.menus.menu.media.slider.primary": "#ff79c6", - "theme.bar.menus.menu.media.buttons.text": "#282a36", - "theme.bar.menus.menu.media.buttons.background": "#bd93f9", - "theme.bar.menus.menu.media.buttons.enabled": "#8be9fd", - "theme.bar.menus.menu.media.buttons.inactive": "#44475a", - "theme.bar.menus.menu.media.border.color": "#44475a", - "theme.bar.menus.menu.media.background.color": "#282a36", - "theme.bar.menus.menu.media.album": "#ff79c6", - "theme.bar.menus.menu.media.artist": "#8be9fd", - "theme.bar.menus.menu.media.song": "#bd93f9", - "theme.bar.menus.tooltip.text": "#f8f8f2", - "theme.bar.menus.tooltip.background": "#282a36", - "theme.bar.menus.dropdownmenu.divider": "#44475a", - "theme.bar.menus.dropdownmenu.text": "#f8f8f2", - "theme.bar.menus.dropdownmenu.background": "#282a36", - "theme.bar.menus.slider.puck": "#44475a", - "theme.bar.menus.slider.backgroundhover": "#44475a", - "theme.bar.menus.slider.background": "#44475a", - "theme.bar.menus.slider.primary": "#bd93f9", - "theme.bar.menus.progressbar.background": "#44475a", - "theme.bar.menus.progressbar.foreground": "#bd93f9", - "theme.bar.menus.iconbuttons.active": "#bd93f9", - "theme.bar.menus.iconbuttons.passive": "#f8f8f2", - "theme.bar.menus.buttons.text": "#282a36", - "theme.bar.menus.buttons.disabled": "#44475a", - "theme.bar.menus.buttons.active": "#ff79c6", - "theme.bar.menus.buttons.default": "#bd93f9", - "theme.bar.menus.switch.puck": "#44475a", - "theme.bar.menus.switch.disabled": "#44475a", - "theme.bar.menus.switch.enabled": "#bd93f9", - "theme.bar.menus.icons.active": "#bd93f9", - "theme.bar.menus.icons.passive": "#44475a", - "theme.bar.menus.listitems.active": "#bd93f9", - "theme.bar.menus.listitems.passive": "#f8f8f2", - "theme.bar.menus.label": "#bd93f9", - "theme.bar.menus.feinttext": "#44475a", - "theme.bar.menus.dimtext": "#6272a4", - "theme.bar.menus.cards": "#44475a", - "theme.bar.buttons.notifications.total": "#bd93f9", - "theme.bar.buttons.notifications.icon": "#44475a", - "theme.bar.buttons.notifications.hover": "#6272a4", - "theme.bar.buttons.notifications.background": "#44475a", - "theme.bar.buttons.clock.icon": "#44475a", - "theme.bar.buttons.clock.text": "#ff79c6", - "theme.bar.buttons.clock.hover": "#6272a4", - "theme.bar.buttons.clock.background": "#44475a", - "theme.bar.buttons.battery.icon": "#44475a", - "theme.bar.buttons.battery.text": "#f1fa8c", - "theme.bar.buttons.battery.hover": "#6272a4", - "theme.bar.buttons.battery.background": "#44475a", - "theme.bar.buttons.systray.hover": "#6272a4", - "theme.bar.buttons.systray.background": "#44475a", - "theme.bar.buttons.bluetooth.icon": "#44475a", - "theme.bar.buttons.bluetooth.text": "#8be9fd", - "theme.bar.buttons.bluetooth.hover": "#6272a4", - "theme.bar.buttons.bluetooth.background": "#44475a", - "theme.bar.buttons.network.icon": "#44475a", - "theme.bar.buttons.network.text": "#bd93f9", - "theme.bar.buttons.network.hover": "#6272a4", - "theme.bar.buttons.network.background": "#44475a", - "theme.bar.buttons.volume.icon": "#44475a", - "theme.bar.buttons.volume.text": "#ffb86c", - "theme.bar.buttons.volume.hover": "#6272a4", - "theme.bar.buttons.volume.background": "#44475a", - "theme.bar.buttons.media.hover": "#6272a4", - "theme.bar.buttons.windowtitle.icon": "#44475a", - "theme.bar.buttons.windowtitle.text": "#f1fa8c", - "theme.bar.buttons.windowtitle.hover": "#6272a4", - "theme.bar.buttons.windowtitle.background": "#44475a", - "theme.bar.buttons.workspaces.numbered_active_text_color": "#282a36", - "theme.bar.buttons.workspaces.active": "#ff79c6", - "theme.bar.buttons.workspaces.occupied": "#ffb86c", - "theme.bar.buttons.workspaces.available": "#8be9fd", - "theme.bar.buttons.workspaces.hover": "#ff79c6", - "theme.bar.buttons.workspaces.background": "#44475a", - "theme.bar.buttons.dashboard.icon": "#44475a", - "theme.bar.buttons.dashboard.hover": "#6272a4", - "theme.bar.buttons.dashboard.background": "#8be8fd", - "theme.osd.label": "#bd93f9", - "theme.osd.icon": "#282a36", - "theme.osd.bar_overflow_color": "#ff5555", - "theme.osd.bar_empty_color": "#44475a", - "theme.osd.bar_color": "#bd93f9", - "theme.osd.icon_container": "#bd93f9", - "theme.osd.bar_container": "#282a36", - "theme.notification.close_button.label": "#282a36", - "theme.notification.close_button.background": "#bd93f9", - "theme.notification.labelicon": "#bd93f9", - "theme.notification.text": "#f8f8f2", - "theme.notification.time": "#6272a4", - "theme.notification.border": "#44475a", - "theme.notification.label": "#bd93f9", - "theme.notification.actions.text": "#282a36", - "theme.notification.actions.background": "#bd93f9", - "theme.notification.background": "#44475a", - "theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#ff79c6", - "theme.bar.buttons.workspaces.numbered_active_underline_color": "#ff79c6", - "theme.bar.menus.menu.media.card.color": "#44475a", - "theme.bar.menus.check_radio_button.background": "#282936", - "theme.bar.menus.check_radio_button.active": "#bd93f9", - "theme.bar.buttons.style": "split", - "theme.bar.buttons.icon_background": "#242438", - "theme.bar.buttons.volume.icon_background": "#ffb86c", - "theme.bar.buttons.network.icon_background": "#bd93f9", - "theme.bar.buttons.bluetooth.icon_background": "#8be9fd", - "theme.bar.buttons.windowtitle.icon_background": "#f1fa8c", - "theme.bar.buttons.media.icon_background": "#bd93f9", - "theme.bar.buttons.notifications.icon_background": "#bd93f9", - "theme.bar.buttons.battery.icon_background": "#f1fa8c", - "theme.bar.buttons.clock.icon_background": "#ff79c6" -} \ No newline at end of file + "theme.bar.menus.background": "#6272a4", + "theme.bar.background": "#282a36", + "theme.bar.buttons.media.icon": "#44475a", + "theme.bar.buttons.media.text": "#bd93f9", + "theme.bar.buttons.icon": "#bd93f9", + "theme.bar.buttons.text": "#bd93f9", + "theme.bar.buttons.hover": "#44475a", + "theme.bar.buttons.background": "#282936", + "theme.bar.menus.text": "#f8f8f2", + "theme.bar.menus.border.color": "#44475a", + "theme.bar.buttons.media.background": "#44475a", + "theme.bar.menus.menu.volume.text": "#f8f8f2", + "theme.bar.menus.menu.volume.card.color": "#44475a", + "theme.bar.menus.menu.volume.label.color": "#ffb86c", + "theme.bar.menus.popover.text": "#bd93f9", + "theme.bar.menus.popover.background": "#282a36", + "theme.bar.menus.menu.dashboard.powermenu.shutdown": "#ff5555", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#ff5555", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.confirm": "#50fa7b", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#282a36", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.body": "#f8f8f2", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#bd93f9", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.border": "#44475a", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#282a36", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#44475a", + "theme.bar.menus.menu.notifications.switch.puck": "#44475a", + "theme.bar.menus.menu.notifications.switch.disabled": "#44475a", + "theme.bar.menus.menu.notifications.switch.enabled": "#bd93f9", + "theme.bar.menus.menu.notifications.clear": "#bd93f9", + "theme.bar.menus.menu.notifications.switch_divider": "#44475a", + "theme.bar.menus.menu.notifications.border": "#44475a", + "theme.bar.menus.menu.notifications.card": "#44475a", + "theme.bar.menus.menu.notifications.background": "#282a36", + "theme.bar.menus.menu.notifications.no_notifications_label": "#44475a", + "theme.bar.menus.menu.notifications.label": "#bd93f9", + "theme.bar.menus.menu.dashboard.monitors.disk.label": "#ff79c6", + "theme.bar.menus.menu.dashboard.monitors.disk.bar": "#ff79c6", + "theme.bar.menus.menu.dashboard.monitors.disk.icon": "#ff79c6", + "theme.bar.menus.menu.dashboard.monitors.gpu.label": "#50fa7b", + "theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#50fa7b", + "theme.bar.menus.menu.dashboard.monitors.gpu.icon": "#50fa7b", + "theme.bar.menus.menu.dashboard.monitors.ram.label": "#f1fa8c", + "theme.bar.menus.menu.dashboard.monitors.ram.bar": "#f1fa8c", + "theme.bar.menus.menu.dashboard.monitors.ram.icon": "#f1fa8c", + "theme.bar.menus.menu.dashboard.monitors.cpu.label": "#ffb86c", + "theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#ffb86c", + "theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#ffb86c", + "theme.bar.menus.menu.dashboard.monitors.bar_background": "#6272a4", + "theme.bar.menus.menu.dashboard.directories.right.bottom.color": "#ffb86c", + "theme.bar.menus.menu.dashboard.directories.right.middle.color": "#bd93f9", + "theme.bar.menus.menu.dashboard.directories.right.top.color": "#8be9fd", + "theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#ff5555", + "theme.bar.menus.menu.dashboard.directories.left.middle.color": "#f1fa8c", + "theme.bar.menus.menu.dashboard.directories.left.top.color": "#ff79c6", + "theme.bar.menus.menu.dashboard.controls.input.text": "#282a36", + "theme.bar.menus.menu.dashboard.controls.input.background": "#ff79c6", + "theme.bar.menus.menu.dashboard.controls.volume.text": "#282a36", + "theme.bar.menus.menu.dashboard.controls.volume.background": "#ffb86c", + "theme.bar.menus.menu.dashboard.controls.notifications.text": "#282a36", + "theme.bar.menus.menu.dashboard.controls.notifications.background": "#f1fa8c", + "theme.bar.menus.menu.dashboard.controls.bluetooth.text": "#282a36", + "theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#8be9fd", + "theme.bar.menus.menu.dashboard.controls.wifi.text": "#282a36", + "theme.bar.menus.menu.dashboard.controls.wifi.background": "#bd93f9", + "theme.bar.menus.menu.dashboard.controls.disabled": "#44475a", + "theme.bar.menus.menu.dashboard.shortcuts.recording": "#50fa7b", + "theme.bar.menus.menu.dashboard.shortcuts.text": "#282a36", + "theme.bar.menus.menu.dashboard.shortcuts.background": "#bd93f9", + "theme.bar.menus.menu.dashboard.powermenu.sleep": "#8be9fd", + "theme.bar.menus.menu.dashboard.powermenu.logout": "#50fa7b", + "theme.bar.menus.menu.dashboard.powermenu.restart": "#ffb86c", + "theme.bar.menus.menu.dashboard.profile.name": "#ff79c6", + "theme.bar.menus.menu.dashboard.border.color": "#44475a", + "theme.bar.menus.menu.dashboard.background.color": "#282a36", + "theme.bar.menus.menu.dashboard.card.color": "#44475a", + "theme.bar.menus.menu.clock.weather.hourly.temperature": "#ff79c6", + "theme.bar.menus.menu.clock.weather.hourly.icon": "#ff79c6", + "theme.bar.menus.menu.clock.weather.hourly.time": "#ff79c6", + "theme.bar.menus.menu.clock.weather.thermometer.extremelycold": "#8be9fd", + "theme.bar.menus.menu.clock.weather.thermometer.cold": "#8be9fd", + "theme.bar.menus.menu.clock.weather.thermometer.moderate": "#bd93f9", + "theme.bar.menus.menu.clock.weather.thermometer.hot": "#ffb86c", + "theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#ff5555", + "theme.bar.menus.menu.clock.weather.stats": "#ff79c6", + "theme.bar.menus.menu.clock.weather.status": "#8be9fd", + "theme.bar.menus.menu.clock.weather.temperature": "#f8f8f2", + "theme.bar.menus.menu.clock.weather.icon": "#ff79c6", + "theme.bar.menus.menu.clock.calendar.contextdays": "#44475a", + "theme.bar.menus.menu.clock.calendar.days": "#f8f8f2", + "theme.bar.menus.menu.clock.calendar.currentday": "#ff79c6", + "theme.bar.menus.menu.clock.calendar.paginator": "#ff79c6", + "theme.bar.menus.menu.clock.calendar.weekdays": "#ff79c6", + "theme.bar.menus.menu.clock.calendar.yearmonth": "#8be9fd", + "theme.bar.menus.menu.clock.time.timeperiod": "#8be9fd", + "theme.bar.menus.menu.clock.time.time": "#ff79c6", + "theme.bar.menus.menu.clock.text": "#f8f8f2", + "theme.bar.menus.menu.clock.border.color": "#44475a", + "theme.bar.menus.menu.clock.background.color": "#282a36", + "theme.bar.menus.menu.clock.card.color": "#44475a", + "theme.bar.menus.menu.battery.slider.puck": "#282936", + "theme.bar.menus.menu.battery.slider.backgroundhover": "#6272a4", + "theme.bar.menus.menu.battery.slider.background": "#6272a4", + "theme.bar.menus.menu.battery.slider.primary": "#f1fa8c", + "theme.bar.menus.menu.battery.icons.active": "#f1fa8c", + "theme.bar.menus.menu.battery.icons.passive": "#6272a4", + "theme.bar.menus.menu.battery.listitems.active": "#f1fa8c", + "theme.bar.menus.menu.battery.listitems.passive": "#f8f8f2", + "theme.bar.menus.menu.battery.text": "#f8f8f2", + "theme.bar.menus.menu.battery.label.color": "#f1fa8c", + "theme.bar.menus.menu.battery.border.color": "#44475a", + "theme.bar.menus.menu.battery.background.color": "#282a36", + "theme.bar.menus.menu.battery.card.color": "#44475a", + "theme.bar.menus.menu.systray.dropdownmenu.divider": "#44475a", + "theme.bar.menus.menu.systray.dropdownmenu.text": "#f8f8f2", + "theme.bar.menus.menu.systray.dropdownmenu.background": "#282a36", + "theme.bar.menus.menu.bluetooth.iconbutton.active": "#8be9fd", + "theme.bar.menus.menu.bluetooth.iconbutton.passive": "#f8f8f2", + "theme.bar.menus.menu.bluetooth.icons.active": "#8be9fd", + "theme.bar.menus.menu.bluetooth.icons.passive": "#6272a4", + "theme.bar.menus.menu.bluetooth.listitems.active": "#8be9fd", + "theme.bar.menus.menu.bluetooth.listitems.passive": "#f8f8f2", + "theme.bar.menus.menu.bluetooth.switch.puck": "#44475a", + "theme.bar.menus.menu.bluetooth.switch.disabled": "#44475a", + "theme.bar.menus.menu.bluetooth.switch.enabled": "#8be9fd", + "theme.bar.menus.menu.bluetooth.switch_divider": "#44475a", + "theme.bar.menus.menu.bluetooth.status": "#44475a", + "theme.bar.menus.menu.bluetooth.text": "#f8f8f2", + "theme.bar.menus.menu.bluetooth.label.color": "#8be9fd", + "theme.bar.menus.menu.bluetooth.border.color": "#44475a", + "theme.bar.menus.menu.bluetooth.background.color": "#282a36", + "theme.bar.menus.menu.bluetooth.card.color": "#44475a", + "theme.bar.menus.menu.network.iconbuttons.active": "#bd93f9", + "theme.bar.menus.menu.network.iconbuttons.passive": "#f8f8f2", + "theme.bar.menus.menu.network.icons.active": "#bd93f9", + "theme.bar.menus.menu.network.icons.passive": "#6272a4", + "theme.bar.menus.menu.network.listitems.active": "#bd93f9", + "theme.bar.menus.menu.network.listitems.passive": "#f8f8f2", + "theme.bar.menus.menu.network.status.color": "#44475a", + "theme.bar.menus.menu.network.text": "#f8f8f2", + "theme.bar.menus.menu.network.label.color": "#bd93f9", + "theme.bar.menus.menu.network.border.color": "#44475a", + "theme.bar.menus.menu.network.background.color": "#282a36", + "theme.bar.menus.menu.network.card.color": "#44475a", + "theme.bar.menus.menu.volume.input_slider.puck": "#282936", + "theme.bar.menus.menu.volume.input_slider.backgroundhover": "#6272a4", + "theme.bar.menus.menu.volume.input_slider.background": "#6272a4", + "theme.bar.menus.menu.volume.input_slider.primary": "#ffb86c", + "theme.bar.menus.menu.volume.audio_slider.puck": "#282936", + "theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#6272a4", + "theme.bar.menus.menu.volume.audio_slider.background": "#6272a4", + "theme.bar.menus.menu.volume.audio_slider.primary": "#ffb86c", + "theme.bar.menus.menu.volume.icons.active": "#ffb86c", + "theme.bar.menus.menu.volume.icons.passive": "#6272a4", + "theme.bar.menus.menu.volume.iconbutton.active": "#ffb86c", + "theme.bar.menus.menu.volume.iconbutton.passive": "#f8f8f2", + "theme.bar.menus.menu.volume.listitems.active": "#ffb86c", + "theme.bar.menus.menu.volume.listitems.passive": "#f8f8f2", + "theme.bar.menus.menu.volume.border.color": "#44475a", + "theme.bar.menus.menu.volume.background.color": "#282a36", + "theme.bar.menus.menu.media.slider.puck": "#282936", + "theme.bar.menus.menu.media.slider.backgroundhover": "#6272a4", + "theme.bar.menus.menu.media.slider.background": "#6272a4", + "theme.bar.menus.menu.media.slider.primary": "#ff79c6", + "theme.bar.menus.menu.media.buttons.text": "#282a36", + "theme.bar.menus.menu.media.buttons.background": "#bd93f9", + "theme.bar.menus.menu.media.buttons.enabled": "#8be9fd", + "theme.bar.menus.menu.media.buttons.inactive": "#44475a", + "theme.bar.menus.menu.media.border.color": "#44475a", + "theme.bar.menus.menu.media.background.color": "#282a36", + "theme.bar.menus.menu.media.album": "#ff79c6", + "theme.bar.menus.menu.media.artist": "#8be9fd", + "theme.bar.menus.menu.media.song": "#bd93f9", + "theme.bar.menus.tooltip.text": "#f8f8f2", + "theme.bar.menus.tooltip.background": "#282a36", + "theme.bar.menus.dropdownmenu.divider": "#44475a", + "theme.bar.menus.dropdownmenu.text": "#f8f8f2", + "theme.bar.menus.dropdownmenu.background": "#282a36", + "theme.bar.menus.slider.puck": "#44475a", + "theme.bar.menus.slider.backgroundhover": "#44475a", + "theme.bar.menus.slider.background": "#44475a", + "theme.bar.menus.slider.primary": "#bd93f9", + "theme.bar.menus.progressbar.background": "#44475a", + "theme.bar.menus.progressbar.foreground": "#bd93f9", + "theme.bar.menus.iconbuttons.active": "#bd93f9", + "theme.bar.menus.iconbuttons.passive": "#f8f8f2", + "theme.bar.menus.buttons.text": "#282a36", + "theme.bar.menus.buttons.disabled": "#44475a", + "theme.bar.menus.buttons.active": "#ff79c6", + "theme.bar.menus.buttons.default": "#bd93f9", + "theme.bar.menus.switch.puck": "#44475a", + "theme.bar.menus.switch.disabled": "#44475a", + "theme.bar.menus.switch.enabled": "#bd93f9", + "theme.bar.menus.icons.active": "#bd93f9", + "theme.bar.menus.icons.passive": "#44475a", + "theme.bar.menus.listitems.active": "#bd93f9", + "theme.bar.menus.listitems.passive": "#f8f8f2", + "theme.bar.menus.label": "#bd93f9", + "theme.bar.menus.feinttext": "#44475a", + "theme.bar.menus.dimtext": "#6272a4", + "theme.bar.menus.cards": "#44475a", + "theme.bar.buttons.notifications.total": "#bd93f9", + "theme.bar.buttons.notifications.icon": "#44475a", + "theme.bar.buttons.notifications.hover": "#6272a4", + "theme.bar.buttons.notifications.background": "#44475a", + "theme.bar.buttons.clock.icon": "#44475a", + "theme.bar.buttons.clock.text": "#ff79c6", + "theme.bar.buttons.clock.hover": "#6272a4", + "theme.bar.buttons.clock.background": "#44475a", + "theme.bar.buttons.battery.icon": "#44475a", + "theme.bar.buttons.battery.text": "#f1fa8c", + "theme.bar.buttons.battery.hover": "#6272a4", + "theme.bar.buttons.battery.background": "#44475a", + "theme.bar.buttons.systray.hover": "#6272a4", + "theme.bar.buttons.systray.background": "#44475a", + "theme.bar.buttons.bluetooth.icon": "#44475a", + "theme.bar.buttons.bluetooth.text": "#8be9fd", + "theme.bar.buttons.bluetooth.hover": "#6272a4", + "theme.bar.buttons.bluetooth.background": "#44475a", + "theme.bar.buttons.network.icon": "#44475a", + "theme.bar.buttons.network.text": "#bd93f9", + "theme.bar.buttons.network.hover": "#6272a4", + "theme.bar.buttons.network.background": "#44475a", + "theme.bar.buttons.volume.icon": "#44475a", + "theme.bar.buttons.volume.text": "#ffb86c", + "theme.bar.buttons.volume.hover": "#6272a4", + "theme.bar.buttons.volume.background": "#44475a", + "theme.bar.buttons.media.hover": "#6272a4", + "theme.bar.buttons.windowtitle.icon": "#44475a", + "theme.bar.buttons.windowtitle.text": "#f1fa8c", + "theme.bar.buttons.windowtitle.hover": "#6272a4", + "theme.bar.buttons.windowtitle.background": "#44475a", + "theme.bar.buttons.workspaces.numbered_active_text_color": "#282a36", + "theme.bar.buttons.workspaces.active": "#ff79c6", + "theme.bar.buttons.workspaces.occupied": "#ffb86c", + "theme.bar.buttons.workspaces.available": "#8be9fd", + "theme.bar.buttons.workspaces.hover": "#ff79c6", + "theme.bar.buttons.workspaces.background": "#44475a", + "theme.bar.buttons.dashboard.icon": "#44475a", + "theme.bar.buttons.dashboard.hover": "#6272a4", + "theme.bar.buttons.dashboard.background": "#8be8fd", + "theme.osd.label": "#bd93f9", + "theme.osd.icon": "#282a36", + "theme.osd.bar_overflow_color": "#ff5555", + "theme.osd.bar_empty_color": "#44475a", + "theme.osd.bar_color": "#bd93f9", + "theme.osd.icon_container": "#bd93f9", + "theme.osd.bar_container": "#282a36", + "theme.notification.close_button.label": "#282a36", + "theme.notification.close_button.background": "#bd93f9", + "theme.notification.labelicon": "#bd93f9", + "theme.notification.text": "#f8f8f2", + "theme.notification.time": "#6272a4", + "theme.notification.border": "#44475a", + "theme.notification.label": "#bd93f9", + "theme.notification.actions.text": "#282a36", + "theme.notification.actions.background": "#bd93f9", + "theme.notification.background": "#44475a", + "theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#ff79c6", + "theme.bar.buttons.workspaces.numbered_active_underline_color": "#ff79c6", + "theme.bar.menus.menu.media.card.color": "#44475a", + "theme.bar.menus.check_radio_button.background": "#282936", + "theme.bar.menus.check_radio_button.active": "#bd93f9", + "theme.bar.buttons.style": "split", + "theme.bar.buttons.icon_background": "#242438", + "theme.bar.buttons.volume.icon_background": "#ffb86c", + "theme.bar.buttons.network.icon_background": "#bd93f9", + "theme.bar.buttons.bluetooth.icon_background": "#8be9fd", + "theme.bar.buttons.windowtitle.icon_background": "#f1fa8c", + "theme.bar.buttons.media.icon_background": "#bd93f9", + "theme.bar.buttons.notifications.icon_background": "#bd93f9", + "theme.bar.buttons.battery.icon_background": "#f1fa8c", + "theme.bar.buttons.clock.icon_background": "#ff79c6", + "theme.bar.menus.menu.notifications.pager.button": "#bd93f9", + "theme.bar.menus.menu.notifications.scrollbar.color": "#bd93f9", + "theme.bar.menus.menu.notifications.pager.label": "#6272a4", + "theme.bar.menus.menu.notifications.pager.background": "#282936" +} diff --git a/themes/everforest.json b/themes/everforest.json index b86104a..df5f739 100644 --- a/themes/everforest.json +++ b/themes/everforest.json @@ -262,12 +262,8 @@ "theme.bar.menus.check_radio_button.background": "#000000", "theme.bar.menus.check_radio_button.active": "#ffffff", "theme.bar.buttons.style": "default", - "theme.bar.buttons.icon_background": "#242438", - "theme.bar.buttons.volume.icon_background": "#ee999f", - "theme.bar.buttons.network.icon_background": "#c5a0f6", - "theme.bar.buttons.bluetooth.icon_background": "#91d7e3", - "theme.bar.buttons.windowtitle.icon_background": "#f5bde6", - "theme.bar.buttons.media.icon_background": "#b7bcf8", - "theme.bar.buttons.notifications.icon_background": "#b7bcf8", - "theme.bar.buttons.battery.icon_background": "#eed49f" -} \ No newline at end of file + "theme.bar.menus.menu.notifications.pager.button": "#a7c080", + "theme.bar.menus.menu.notifications.scrollbar.color": "#a7c080", + "theme.bar.menus.menu.notifications.pager.label": "#7a8478", + "theme.bar.menus.menu.notifications.pager.background": "#2b3339" +} diff --git a/themes/everforest_split.json b/themes/everforest_split.json index 83e36f2..844a27a 100644 --- a/themes/everforest_split.json +++ b/themes/everforest_split.json @@ -270,5 +270,9 @@ "theme.bar.buttons.media.icon_background": "#a7c080", "theme.bar.buttons.notifications.icon_background": "#83c092", "theme.bar.buttons.battery.icon_background": "#e69875", - "theme.bar.buttons.clock.icon_background": "#dbbc7f" -} \ No newline at end of file + "theme.bar.buttons.clock.icon_background": "#dbbc7f", + "theme.bar.menus.menu.notifications.pager.button": "#a7c080", + "theme.bar.menus.menu.notifications.scrollbar.color": "#a7c080", + "theme.bar.menus.menu.notifications.pager.label": "#7a8478", + "theme.bar.menus.menu.notifications.pager.background": "#2b3339" +} diff --git a/themes/gruvbox.json b/themes/gruvbox.json index 8fbc366..677ec78 100644 --- a/themes/gruvbox.json +++ b/themes/gruvbox.json @@ -262,12 +262,8 @@ "theme.bar.menus.check_radio_button.background": "#3c3836", "theme.bar.menus.check_radio_button.active": "#83a598", "theme.bar.buttons.style": "default", - "theme.bar.buttons.icon_background": "#242438", - "theme.bar.buttons.volume.icon_background": "#ee999f", - "theme.bar.buttons.network.icon_background": "#c5a0f6", - "theme.bar.buttons.bluetooth.icon_background": "#91d7e3", - "theme.bar.buttons.windowtitle.icon_background": "#f5bde6", - "theme.bar.buttons.media.icon_background": "#b7bcf8", - "theme.bar.buttons.notifications.icon_background": "#b7bcf8", - "theme.bar.buttons.battery.icon_background": "#eed49f" -} \ No newline at end of file + "theme.bar.menus.menu.notifications.pager.button": "#83a598", + "theme.bar.menus.menu.notifications.scrollbar.color": "#83a598", + "theme.bar.menus.menu.notifications.pager.label": "#a89984", + "theme.bar.menus.menu.notifications.pager.background": "#1d2021" +} diff --git a/themes/gruvbox_split.json b/themes/gruvbox_split.json index 7e1f969..6379a8c 100644 --- a/themes/gruvbox_split.json +++ b/themes/gruvbox_split.json @@ -270,5 +270,9 @@ "theme.bar.buttons.media.icon_background": "#83a598", "theme.bar.buttons.notifications.icon_background": "#83a598", "theme.bar.buttons.battery.icon_background": "#fabd2f", - "theme.bar.buttons.clock.icon_background": "#d3869b" -} \ No newline at end of file + "theme.bar.buttons.clock.icon_background": "#d3869b", + "theme.bar.menus.menu.notifications.pager.button": "#83a598", + "theme.bar.menus.menu.notifications.scrollbar.color": "#83a598", + "theme.bar.menus.menu.notifications.pager.label": "#a89984", + "theme.bar.menus.menu.notifications.pager.background": "#1d2021" +} diff --git a/themes/monochrome.json b/themes/monochrome.json index e115ccf..f682743 100644 --- a/themes/monochrome.json +++ b/themes/monochrome.json @@ -262,12 +262,8 @@ "theme.bar.menus.check_radio_button.background": "#000000", "theme.bar.menus.check_radio_button.active": "#ffffff", "theme.bar.buttons.style": "default", - "theme.bar.buttons.icon_background": "#242438", - "theme.bar.buttons.volume.icon_background": "#ee999f", - "theme.bar.buttons.network.icon_background": "#c5a0f6", - "theme.bar.buttons.bluetooth.icon_background": "#91d7e3", - "theme.bar.buttons.windowtitle.icon_background": "#f5bde6", - "theme.bar.buttons.media.icon_background": "#b7bcf8", - "theme.bar.buttons.notifications.icon_background": "#b7bcf8", - "theme.bar.buttons.battery.icon_background": "#eed49f" -} \ No newline at end of file + "theme.bar.menus.menu.notifications.pager.button": "#FFFFFF", + "theme.bar.menus.menu.notifications.scrollbar.color": "#FFFFFF", + "theme.bar.menus.menu.notifications.pager.label": "#9a9996", + "theme.bar.menus.menu.notifications.pager.background": "#000000" +} diff --git a/themes/monochrome_split.json b/themes/monochrome_split.json index e47ace0..260fa05 100644 --- a/themes/monochrome_split.json +++ b/themes/monochrome_split.json @@ -270,5 +270,9 @@ "theme.bar.buttons.media.icon_background": "#ffffff", "theme.bar.buttons.notifications.icon_background": "#ffffff", "theme.bar.buttons.battery.icon_background": "#ffffff", - "theme.bar.buttons.clock.icon_background": "#ffffff" -} \ No newline at end of file + "theme.bar.buttons.clock.icon_background": "#ffffff", + "theme.bar.menus.menu.notifications.pager.button": "#FFFFFF", + "theme.bar.menus.menu.notifications.scrollbar.color": "#FFFFFF", + "theme.bar.menus.menu.notifications.pager.label": "#9a9996", + "theme.bar.menus.menu.notifications.pager.background": "#000000" +} diff --git a/themes/nord.json b/themes/nord.json index 12f4377..8a4195f 100644 --- a/themes/nord.json +++ b/themes/nord.json @@ -262,12 +262,8 @@ "theme.bar.menus.check_radio_button.background": "#2e3440", "theme.bar.menus.check_radio_button.active": "#88c0d0", "theme.bar.buttons.style": "default", - "theme.bar.buttons.icon_background": "#242438", - "theme.bar.buttons.volume.icon_background": "#fe8018", - "theme.bar.buttons.network.icon_background": "#b16286", - "theme.bar.buttons.bluetooth.icon_background": "#83a598", - "theme.bar.buttons.windowtitle.icon_background": "#d3869b", - "theme.bar.buttons.media.icon_background": "#83a598", - "theme.bar.buttons.notifications.icon_background": "#83a598", - "theme.bar.buttons.battery.icon_background": "#fabd2f" -} \ No newline at end of file + "theme.bar.menus.menu.notifications.pager.button": "#88c0d0", + "theme.bar.menus.menu.notifications.scrollbar.color": "#88c0d0", + "theme.bar.menus.menu.notifications.pager.label": "#5e81ac", + "theme.bar.menus.menu.notifications.pager.background": "#2e3440" +} diff --git a/themes/nord_split.json b/themes/nord_split.json index 37b3a23..551e65b 100644 --- a/themes/nord_split.json +++ b/themes/nord_split.json @@ -270,5 +270,9 @@ "theme.bar.buttons.media.icon_background": "#88c0d0", "theme.bar.buttons.notifications.icon_background": "#88c0d0", "theme.bar.buttons.battery.icon_background": "#81a1c1", - "theme.bar.buttons.clock.icon_background": "#8fbcbb" -} \ No newline at end of file + "theme.bar.buttons.clock.icon_background": "#8fbcbb", + "theme.bar.menus.menu.notifications.pager.button": "#88c0d0", + "theme.bar.menus.menu.notifications.scrollbar.color": "#88c0d0", + "theme.bar.menus.menu.notifications.pager.label": "#5e81ac", + "theme.bar.menus.menu.notifications.pager.background": "#2e3440" +} diff --git a/themes/one_dark.json b/themes/one_dark.json index 18ce0ab..33a8bf3 100644 --- a/themes/one_dark.json +++ b/themes/one_dark.json @@ -262,12 +262,8 @@ "theme.bar.menus.check_radio_button.background": "#2e3440", "theme.bar.menus.check_radio_button.active": "#88c0d0", "theme.bar.buttons.style": "default", - "theme.bar.buttons.icon_background": "#242438", - "theme.bar.buttons.volume.icon_background": "#ee999f", - "theme.bar.buttons.network.icon_background": "#c5a0f6", - "theme.bar.buttons.bluetooth.icon_background": "#91d7e3", - "theme.bar.buttons.windowtitle.icon_background": "#f5bde6", - "theme.bar.buttons.media.icon_background": "#b7bcf8", - "theme.bar.buttons.notifications.icon_background": "#b7bcf8", - "theme.bar.buttons.battery.icon_background": "#eed49f" -} \ No newline at end of file + "theme.bar.menus.menu.notifications.pager.button": "#61afef", + "theme.bar.menus.menu.notifications.scrollbar.color": "#61afef", + "theme.bar.menus.menu.notifications.pager.label": "#828997", + "theme.bar.menus.menu.notifications.pager.background": "#282c34" +} diff --git a/themes/one_dark_split.json b/themes/one_dark_split.json index dbc5a88..2ac9d6b 100644 --- a/themes/one_dark_split.json +++ b/themes/one_dark_split.json @@ -270,5 +270,9 @@ "theme.bar.buttons.media.icon_background": "#61afef", "theme.bar.buttons.notifications.icon_background": "#61afef", "theme.bar.buttons.battery.icon_background": "#e5c07b", - "theme.bar.buttons.clock.icon_background": "#98c379" -} \ No newline at end of file + "theme.bar.buttons.clock.icon_background": "#98c379", + "theme.bar.menus.menu.notifications.pager.button": "#61afef", + "theme.bar.menus.menu.notifications.scrollbar.color": "#61afef", + "theme.bar.menus.menu.notifications.pager.label": "#828997", + "theme.bar.menus.menu.notifications.pager.background": "#282c34" +} diff --git a/themes/rose_pine.json b/themes/rose_pine.json index dcd6470..3378716 100644 --- a/themes/rose_pine.json +++ b/themes/rose_pine.json @@ -262,12 +262,8 @@ "theme.bar.menus.check_radio_button.background": "#393452", "theme.bar.menus.check_radio_button.active": "#c4a7e7", "theme.bar.buttons.style": "default", - "theme.bar.buttons.icon_background": "#242438", - "theme.bar.buttons.volume.icon_background": "#ee999f", - "theme.bar.buttons.network.icon_background": "#c5a0f6", - "theme.bar.buttons.bluetooth.icon_background": "#91d7e3", - "theme.bar.buttons.windowtitle.icon_background": "#f5bde6", - "theme.bar.buttons.media.icon_background": "#b7bcf8", - "theme.bar.buttons.notifications.icon_background": "#b7bcf8", - "theme.bar.buttons.battery.icon_background": "#eed49f" -} \ No newline at end of file + "theme.bar.menus.menu.notifications.pager.button": "#c4a7e7", + "theme.bar.menus.menu.notifications.scrollbar.color": "#c4a7e7", + "theme.bar.menus.menu.notifications.pager.label": "#524f67", + "theme.bar.menus.menu.notifications.pager.background": "#191724" +} diff --git a/themes/rose_pine_moon.json b/themes/rose_pine_moon.json index c670817..04842c6 100644 --- a/themes/rose_pine_moon.json +++ b/themes/rose_pine_moon.json @@ -262,12 +262,8 @@ "theme.bar.menus.check_radio_button.background": "#393452", "theme.bar.menus.check_radio_button.active": "#c4a7e7", "theme.bar.buttons.style": "default", - "theme.bar.buttons.icon_background": "#242438", - "theme.bar.buttons.volume.icon_background": "#ee999f", - "theme.bar.buttons.network.icon_background": "#c5a0f6", - "theme.bar.buttons.bluetooth.icon_background": "#91d7e3", - "theme.bar.buttons.windowtitle.icon_background": "#f5bde6", - "theme.bar.buttons.media.icon_background": "#b7bcf8", - "theme.bar.buttons.notifications.icon_background": "#b7bcf8", - "theme.bar.buttons.battery.icon_background": "#eed49f" -} \ No newline at end of file + "theme.bar.menus.menu.notifications.pager.button": "#c4a7e7", + "theme.bar.menus.menu.notifications.scrollbar.color": "#c4a7e7", + "theme.bar.menus.menu.notifications.pager.label": "#56526e", + "theme.bar.menus.menu.notifications.pager.background": "#232136" +} diff --git a/themes/rose_pine_moon_split.json b/themes/rose_pine_moon_split.json index 7eccbe0..447c2d7 100644 --- a/themes/rose_pine_moon_split.json +++ b/themes/rose_pine_moon_split.json @@ -270,5 +270,9 @@ "theme.bar.buttons.media.icon_background": "#c4a7e7", "theme.bar.buttons.notifications.icon_background": "#c4a7e7", "theme.bar.buttons.battery.icon_background": "#f6c177", - "theme.bar.buttons.clock.icon_background": "#c4a7e7" -} \ No newline at end of file + "theme.bar.buttons.clock.icon_background": "#c4a7e7", + "theme.bar.menus.menu.notifications.pager.button": "#c4a7e7", + "theme.bar.menus.menu.notifications.scrollbar.color": "#c4a7e7", + "theme.bar.menus.menu.notifications.pager.label": "#56526e", + "theme.bar.menus.menu.notifications.pager.background": "#232136" +} diff --git a/themes/rose_pine_split.json b/themes/rose_pine_split.json index 740802b..4731d07 100644 --- a/themes/rose_pine_split.json +++ b/themes/rose_pine_split.json @@ -270,5 +270,9 @@ "theme.bar.buttons.media.icon_background": "#c4a7e7", "theme.bar.buttons.notifications.icon_background": "#c4a7e7", "theme.bar.buttons.battery.icon_background": "#f6c177", - "theme.bar.buttons.clock.icon_background": "#c4a7e7" -} \ No newline at end of file + "theme.bar.buttons.clock.icon_background": "#c4a7e7", + "theme.bar.menus.menu.notifications.pager.button": "#c4a7e7", + "theme.bar.menus.menu.notifications.scrollbar.color": "#c4a7e7", + "theme.bar.menus.menu.notifications.pager.label": "#524f67", + "theme.bar.menus.menu.notifications.pager.background": "#191724" +} diff --git a/themes/tokyo_night.json b/themes/tokyo_night.json index cace0b2..47a255d 100644 --- a/themes/tokyo_night.json +++ b/themes/tokyo_night.json @@ -262,12 +262,8 @@ "theme.bar.menus.check_radio_button.background": "#3b4261", "theme.bar.menus.check_radio_button.active": "#bb9af7", "theme.bar.buttons.style": "default", - "theme.bar.buttons.icon_background": "#242438", - "theme.bar.buttons.volume.icon_background": "#ee999f", - "theme.bar.buttons.network.icon_background": "#c5a0f6", - "theme.bar.buttons.bluetooth.icon_background": "#91d7e3", - "theme.bar.buttons.windowtitle.icon_background": "#f5bde6", - "theme.bar.buttons.media.icon_background": "#b7bcf8", - "theme.bar.buttons.notifications.icon_background": "#b7bcf8", - "theme.bar.buttons.battery.icon_background": "#eed49f" -} \ No newline at end of file + "theme.bar.menus.menu.notifications.pager.button": "#bb9af7", + "theme.bar.menus.menu.notifications.scrollbar.color": "#bb9af7", + "theme.bar.menus.menu.notifications.pager.label": "#565f89", + "theme.bar.menus.menu.notifications.pager.background": "#1a1b26" +} diff --git a/themes/tokyo_night_split.json b/themes/tokyo_night_split.json index 81b58a5..34d8ae8 100644 --- a/themes/tokyo_night_split.json +++ b/themes/tokyo_night_split.json @@ -270,5 +270,9 @@ "theme.bar.buttons.media.icon_background": "#bb9af7", "theme.bar.buttons.notifications.icon_background": "#bb9af7", "theme.bar.buttons.battery.icon_background": "#e0af68", - "theme.bar.buttons.clock.icon_background": "#f7768e" -} \ No newline at end of file + "theme.bar.buttons.clock.icon_background": "#f7768e", + "theme.bar.menus.menu.notifications.pager.button": "#bb9af7", + "theme.bar.menus.menu.notifications.scrollbar.color": "#bb9af7", + "theme.bar.menus.menu.notifications.pager.label": "#565f89", + "theme.bar.menus.menu.notifications.pager.background": "#1a1b26" +} diff --git a/widget/settings/pages/config/notifications/index.ts b/widget/settings/pages/config/notifications/index.ts index 7d09f11..7660e72 100644 --- a/widget/settings/pages/config/notifications/index.ts +++ b/widget/settings/pages/config/notifications/index.ts @@ -17,6 +17,13 @@ export const NotificationSettings = () => { Option({ opt: options.notifications.active_monitor, title: 'Follow Cursor', subtitle: 'The notification will follow the monitor of your cursor', type: 'boolean' }), Option({ opt: options.notifications.timeout, title: 'Notification Timeout', subtitle: 'How long notification popups will last (in milliseconds).', type: 'number' }), Option({ opt: options.notifications.cache_actions, title: 'Preserve Actions', subtitle: 'This will persist the action buttons of a notification after rebooting.', type: 'boolean' }), + + Header('Notification Menu Settings'), + Option({ opt: options.theme.bar.menus.menu.notifications.height, title: 'Notification Menu Height', type: 'string' }), + Option({ opt: options.notifications.displayedTotal, title: 'Displayed Total', subtitle: 'How many notifications to show in the menu at once.\nNewer notifications will display towards the top.', type: 'number', min: 1 }), + Option({ opt: options.theme.bar.menus.menu.notifications.pager.show, title: 'Show Pager', subtitle: "Shows the pagination footer at the bottom of the menu.", type: 'boolean' }), + Option({ opt: options.theme.bar.menus.menu.notifications.scrollbar.width, title: 'Scrollbar Width', type: 'string' }), + Option({ opt: options.theme.bar.menus.menu.notifications.scrollbar.radius, title: 'Scrollbar Radius', type: 'string' }), ] }) }) diff --git a/widget/settings/pages/theme/menus/notifications.ts b/widget/settings/pages/theme/menus/notifications.ts index 08d1bfc..dc9fb89 100644 --- a/widget/settings/pages/theme/menus/notifications.ts +++ b/widget/settings/pages/theme/menus/notifications.ts @@ -26,7 +26,13 @@ export const NotificationsMenuTheme = () => { Option({ opt: options.theme.bar.menus.menu.notifications.switch.disabled, title: 'Disabled', type: 'color' }), Option({ opt: options.theme.bar.menus.menu.notifications.switch.puck, title: 'Puck', type: 'color' }), + Header('Scrollbar'), + Option({ opt: options.theme.bar.menus.menu.notifications.scrollbar.color, title: 'Scrollbar Color', type: 'color' }), + Header('Pagination'), + Option({ opt: options.theme.bar.menus.menu.notifications.pager.background, title: 'Pager Footer Background', type: 'color' }), + Option({ opt: options.theme.bar.menus.menu.notifications.pager.button, title: 'Pager Button Color', type: 'color' }), + Option({ opt: options.theme.bar.menus.menu.notifications.pager.label, title: 'Pager Label Color', type: 'color' }), ] }) })