Added pagination to the notifications menu and a configurable limit to the amount of notifications spawned. (#199)
* Added notification pagination and pagination configuration options. fixes #171 * Added skip to end buttons * Update theme * Removed unused theme parts * Update pager colors * Theme auto-generator * Update label color in options for pager. * Updated themes * Added option to change footer background for notifications menu. * Changes to the Displayed Total options now update the menu. Bugfix
This commit is contained in:
@@ -79,7 +79,7 @@ const getModulesForMonitor = (monitor: number, curLayouts: BarLayout) => {
|
|||||||
const widget = {
|
const widget = {
|
||||||
battery: () => WidgetContainer(BatteryLabel()),
|
battery: () => WidgetContainer(BatteryLabel()),
|
||||||
dashboard: () => WidgetContainer(Menu()),
|
dashboard: () => WidgetContainer(Menu()),
|
||||||
workspaces: (monitor: number) => WidgetContainer(Workspaces(monitor, 10)),
|
workspaces: (monitor: number) => WidgetContainer(Workspaces(monitor)),
|
||||||
windowtitle: () => WidgetContainer(ClientTitle()),
|
windowtitle: () => WidgetContainer(ClientTitle()),
|
||||||
media: () => WidgetContainer(Media()),
|
media: () => WidgetContainer(Media()),
|
||||||
notifications: () => WidgetContainer(Notifications()),
|
notifications: () => WidgetContainer(Notifications()),
|
||||||
|
|||||||
@@ -1,4 +1,6 @@
|
|||||||
const Controls = (notifs) => {
|
import { Notifications } from "types/service/notifications";
|
||||||
|
|
||||||
|
const Controls = (notifs: Notifications) => {
|
||||||
return Widget.Box({
|
return Widget.Box({
|
||||||
class_name: "notification-menu-controls",
|
class_name: "notification-menu-controls",
|
||||||
expand: false,
|
expand: false,
|
||||||
|
|||||||
@@ -2,25 +2,47 @@ import DropdownMenu from "../DropdownMenu.js";
|
|||||||
const notifs = await Service.import("notifications");
|
const notifs = await Service.import("notifications");
|
||||||
import { Controls } from "./controls/index.js";
|
import { Controls } from "./controls/index.js";
|
||||||
import { NotificationCard } from "./notification/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 () => {
|
export default () => {
|
||||||
return DropdownMenu({
|
const curPage = Variable(1);
|
||||||
name: "notificationsmenu",
|
|
||||||
transition: "crossfade",
|
Utils.merge([curPage.bind("value"), displayedTotal.bind("value"), notifs.bind("notifications")], (currentPage, dispTotal, notifications) => {
|
||||||
child: Widget.Box({
|
// If the page doesn't have enough notifications to display, go back
|
||||||
class_name: "notification-menu-content",
|
// to the previous page.
|
||||||
css: "padding: 1px; margin: -1px;",
|
if (notifications.length <= (currentPage - 1) * dispTotal) {
|
||||||
hexpand: true,
|
curPage.value = currentPage <= 1 ? 1 : currentPage - 1;
|
||||||
vexpand: false,
|
}
|
||||||
children: [
|
});
|
||||||
Widget.Box({
|
|
||||||
class_name: "notification-card-container menu",
|
return DropdownMenu({
|
||||||
vertical: true,
|
name: "notificationsmenu",
|
||||||
hexpand: false,
|
transition: "crossfade",
|
||||||
vexpand: false,
|
child: Widget.Box({
|
||||||
children: [Controls(notifs), NotificationCard(notifs)],
|
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)]
|
||||||
|
|
||||||
|
})
|
||||||
|
}),
|
||||||
|
],
|
||||||
}),
|
}),
|
||||||
],
|
});
|
||||||
}),
|
|
||||||
});
|
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -6,54 +6,63 @@ import { Image } from "./image/index.js";
|
|||||||
import { Placeholder } from "./placeholder/index.js";
|
import { Placeholder } from "./placeholder/index.js";
|
||||||
import { Body } from "./body/index.js";
|
import { Body } from "./body/index.js";
|
||||||
import { CloseButton } from "./close/index.js";
|
import { CloseButton } from "./close/index.js";
|
||||||
|
import options from "options.js";
|
||||||
|
import { Variable } from "types/variable.js";
|
||||||
|
|
||||||
const NotificationCard = (notifs: Notifications) => {
|
const { displayedTotal } = options.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,
|
|
||||||
);
|
|
||||||
|
|
||||||
if (notifs.notifications.length <= 0) {
|
const NotificationCard = (notifs: Notifications, curPage: Variable<number>) => {
|
||||||
return (self.children = [Placeholder(notifs)]);
|
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) => {
|
if (notifications.length <= 0) {
|
||||||
return Widget.Box({
|
return (self.children = [Placeholder(notifs)]);
|
||||||
class_name: "notification-card-content-container",
|
}
|
||||||
children: [
|
|
||||||
Widget.Box({
|
const pageStart = (currentPage - 1) * dispTotal;
|
||||||
class_name: "notification-card menu",
|
const pageEnd = currentPage * dispTotal;
|
||||||
vpack: "start",
|
return (self.children = sortedNotifications.slice(pageStart, pageEnd).map((notif: Notification) => {
|
||||||
hexpand: true,
|
return Widget.Box({
|
||||||
vexpand: false,
|
class_name: "notification-card-content-container",
|
||||||
children: [
|
children: [
|
||||||
Image(notif),
|
Widget.Box({
|
||||||
Widget.Box({
|
class_name: "notification-card menu",
|
||||||
vpack: "center",
|
vpack: "start",
|
||||||
vertical: true,
|
hexpand: true,
|
||||||
hexpand: true,
|
vexpand: false,
|
||||||
class_name: `notification-card-content ${!notifHasImg(notif) ? "noimg" : " menu"}`,
|
children: [
|
||||||
children: [
|
Image(notif),
|
||||||
Header(notif),
|
Widget.Box({
|
||||||
Body(notif),
|
vpack: "center",
|
||||||
Actions(notif, notifs),
|
vertical: true,
|
||||||
],
|
hexpand: true,
|
||||||
}),
|
class_name: `notification-card-content ${!notifHasImg(notif) ? "noimg" : " menu"}`,
|
||||||
],
|
children: [
|
||||||
}),
|
Header(notif),
|
||||||
CloseButton(notif, notifs),
|
Body(notif),
|
||||||
],
|
Actions(notif, notifs),
|
||||||
});
|
],
|
||||||
}));
|
}),
|
||||||
});
|
],
|
||||||
},
|
}),
|
||||||
|
CloseButton(notif, notifs),
|
||||||
|
],
|
||||||
|
});
|
||||||
|
}));
|
||||||
|
});
|
||||||
|
},
|
||||||
|
})
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
74
modules/menus/notifications/pager/index.ts
Normal file
74
modules/menus/notifications/pager/index.ts
Normal file
@@ -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<number>) => {
|
||||||
|
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: ""
|
||||||
|
}),
|
||||||
|
}),
|
||||||
|
]
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}
|
||||||
@@ -9,7 +9,7 @@ import { CloseButton } from "./close/index.js";
|
|||||||
import { getPosition } from "lib/utils.js";
|
import { getPosition } from "lib/utils.js";
|
||||||
const hyprland = await Service.import("hyprland");
|
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);
|
const curMonitor = Variable(monitor.value);
|
||||||
@@ -47,7 +47,7 @@ export default () => {
|
|||||||
hexpand: true,
|
hexpand: true,
|
||||||
setup: (self) => {
|
setup: (self) => {
|
||||||
self.hook(notifs, () => {
|
self.hook(notifs, () => {
|
||||||
return (self.children = notifs.popups.map((notif) => {
|
return (self.children = notifs.popups.slice(0, displayedTotal.value).map((notif) => {
|
||||||
return Widget.Box({
|
return Widget.Box({
|
||||||
class_name: "notification-card",
|
class_name: "notification-card",
|
||||||
vpack: "start",
|
vpack: "start",
|
||||||
|
|||||||
67
options.ts
67
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
|
// WARN: CHANGING THESE VALUES WILL PREVENT MATUGEN COLOR GENERATION FOR THE CHANGED VALUE
|
||||||
export const colors = {
|
export const colors = {
|
||||||
"rosewater": "#f5e0dc",
|
rosewater: "#f5e0dc",
|
||||||
"flamingo": "#f2cdcd",
|
flamingo: "#f2cdcd",
|
||||||
"pink": "#f5c2e7",
|
pink: "#f5c2e7",
|
||||||
"mauve": "#cba6f7",
|
mauve: "#cba6f7",
|
||||||
"red": "#f38ba8",
|
red: "#f38ba8",
|
||||||
"maroon": "#eba0ac",
|
maroon: "#eba0ac",
|
||||||
"peach": "#fab387",
|
peach: "#fab387",
|
||||||
"yellow": "#f9e2af",
|
yellow: "#f9e2af",
|
||||||
"green": "#a6e3a1",
|
green: "#a6e3a1",
|
||||||
"teal": "#94e2d5",
|
teal: "#94e2d5",
|
||||||
"sky": "#89dceb",
|
sky: "#89dceb",
|
||||||
"sapphire": "#74c7ec",
|
sapphire: "#74c7ec",
|
||||||
"blue": "#89b4fa",
|
blue: "#89b4fa",
|
||||||
"lavender": "#b4befe",
|
lavender: "#b4befe",
|
||||||
"text": "#cdd6f4",
|
text: "#cdd6f4",
|
||||||
"subtext1": "#bac2de",
|
subtext1: "#bac2de",
|
||||||
"subtext2": "#a6adc8",
|
subtext2: "#a6adc8",
|
||||||
"overlay2": "#9399b2",
|
overlay2: "#9399b2",
|
||||||
"overlay1": "#7f849c",
|
overlay1: "#7f849c",
|
||||||
"overlay0": "#6c7086",
|
overlay0: "#6c7086",
|
||||||
"surface2": "#585b70",
|
surface2: "#585b70",
|
||||||
"surface1": "#45475a",
|
surface1: "#45475a",
|
||||||
"surface0": "#313244",
|
surface0: "#313244",
|
||||||
"base2": "#242438",
|
base2: "#242438",
|
||||||
"base": "#1e1e2e",
|
base: "#1e1e2e",
|
||||||
"mantle": "#181825",
|
mantle: "#181825",
|
||||||
"crust": "#11111b"
|
crust: "#11111b"
|
||||||
};
|
};
|
||||||
|
|
||||||
// WARN: CHANGING THESE VALUES WILL PREVENT MATUGEN COLOR GENERATION FOR THE CHANGED VALUE
|
// WARN: CHANGING THESE VALUES WILL PREVENT MATUGEN COLOR GENERATION FOR THE CHANGED VALUE
|
||||||
@@ -629,6 +629,7 @@ const options = mkOptions(OPTIONS, {
|
|||||||
},
|
},
|
||||||
notifications: {
|
notifications: {
|
||||||
scaling: opt(100),
|
scaling: opt(100),
|
||||||
|
height: opt("58em"),
|
||||||
label: opt(colors.lavender),
|
label: opt(colors.lavender),
|
||||||
no_notifications_label: opt(colors.surface0),
|
no_notifications_label: opt(colors.surface0),
|
||||||
background: opt(colors.crust),
|
background: opt(colors.crust),
|
||||||
@@ -641,6 +642,17 @@ const options = mkOptions(OPTIONS, {
|
|||||||
disabled: opt(tertiary_colors.surface0),
|
disabled: opt(tertiary_colors.surface0),
|
||||||
puck: opt(secondary_colors.surface1)
|
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: {
|
notifications: {
|
||||||
position: opt<NotificationAnchor>("top right"),
|
position: opt<NotificationAnchor>("top right"),
|
||||||
|
displayedTotal: opt(10),
|
||||||
monitor: opt(0),
|
monitor: opt(0),
|
||||||
active_monitor: opt(true),
|
active_monitor: opt(true),
|
||||||
timeout: opt(7000),
|
timeout: opt(7000),
|
||||||
|
|||||||
85
scripts/fillThemes.sh
Executable file
85
scripts/fillThemes.sh
Executable file
@@ -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
|
||||||
@@ -5,7 +5,7 @@
|
|||||||
.notification-card-container.menu {
|
.notification-card-container.menu {
|
||||||
margin: 0em;
|
margin: 0em;
|
||||||
min-width: 30.6em * $bar-menus-menu-notifications-scaling/100;
|
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);
|
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: $bar-menus-border-size solid if($bar-menus-monochrome, $bar-menus-border-color, $bar-menus-menu-notifications-border);
|
||||||
border-radius: $bar-menus-border-radius;
|
border-radius: $bar-menus-border-radius;
|
||||||
@@ -103,6 +103,19 @@
|
|||||||
color: if($bar-menus-monochrome, $bar-menus-buttons-default, $bar-menus-menu-notifications-clear);
|
color: if($bar-menus-monochrome, $bar-menus-buttons-default, $bar-menus-menu-notifications-clear);
|
||||||
font-size: 1.5em;
|
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 {
|
.notification-label-container {
|
||||||
@@ -135,3 +148,41 @@
|
|||||||
background: transparentize($notification-close_button-background , 0.5);
|
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);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -262,12 +262,8 @@
|
|||||||
"theme.bar.menus.check_radio_button.background": "#232534",
|
"theme.bar.menus.check_radio_button.background": "#232534",
|
||||||
"theme.bar.menus.check_radio_button.active": "#b9baf1",
|
"theme.bar.menus.check_radio_button.active": "#b9baf1",
|
||||||
"theme.bar.buttons.style": "default",
|
"theme.bar.buttons.style": "default",
|
||||||
"theme.bar.buttons.icon_background": "#242438",
|
"theme.bar.menus.menu.notifications.pager.button": "#babbf1",
|
||||||
"theme.bar.buttons.volume.icon_background": "#f7768e",
|
"theme.bar.menus.menu.notifications.scrollbar.color": "#babbf1",
|
||||||
"theme.bar.buttons.network.icon_background": "#bb9af7",
|
"theme.bar.menus.menu.notifications.pager.label": "#949cbb",
|
||||||
"theme.bar.buttons.bluetooth.icon_background": "#7dcfff",
|
"theme.bar.menus.menu.notifications.pager.background": "#232634"
|
||||||
"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"
|
|
||||||
}
|
}
|
||||||
@@ -270,5 +270,9 @@
|
|||||||
"theme.bar.buttons.media.icon_background": "#babbf1",
|
"theme.bar.buttons.media.icon_background": "#babbf1",
|
||||||
"theme.bar.buttons.notifications.icon_background": "#b4befe",
|
"theme.bar.buttons.notifications.icon_background": "#b4befe",
|
||||||
"theme.bar.buttons.battery.icon_background": "#e5c890",
|
"theme.bar.buttons.battery.icon_background": "#e5c890",
|
||||||
"theme.bar.buttons.clock.icon_background": "#f4b8e4"
|
"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"
|
||||||
}
|
}
|
||||||
@@ -262,12 +262,8 @@
|
|||||||
"theme.bar.menus.check_radio_button.background": "#dcdfe8",
|
"theme.bar.menus.check_radio_button.background": "#dcdfe8",
|
||||||
"theme.bar.menus.check_radio_button.active": "#7186fd",
|
"theme.bar.menus.check_radio_button.active": "#7186fd",
|
||||||
"theme.bar.buttons.style": "default",
|
"theme.bar.buttons.style": "default",
|
||||||
"theme.bar.buttons.icon_background": "#242438",
|
"theme.bar.menus.menu.notifications.pager.button": "#7287fd",
|
||||||
"theme.bar.buttons.volume.icon_background": "#ee999f",
|
"theme.bar.menus.menu.notifications.scrollbar.color": "#7287fd",
|
||||||
"theme.bar.buttons.network.icon_background": "#c5a0f6",
|
"theme.bar.menus.menu.notifications.pager.label": "#7c7f93",
|
||||||
"theme.bar.buttons.bluetooth.icon_background": "#91d7e3",
|
"theme.bar.menus.menu.notifications.pager.background": "#eff1f5"
|
||||||
"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"
|
|
||||||
}
|
}
|
||||||
@@ -270,5 +270,9 @@
|
|||||||
"theme.bar.buttons.media.icon_background": "#7287fd",
|
"theme.bar.buttons.media.icon_background": "#7287fd",
|
||||||
"theme.bar.buttons.notifications.icon_background": "#7287fd",
|
"theme.bar.buttons.notifications.icon_background": "#7287fd",
|
||||||
"theme.bar.buttons.battery.icon_background": "#df8e1d",
|
"theme.bar.buttons.battery.icon_background": "#df8e1d",
|
||||||
"theme.bar.buttons.clock.icon_background": "#ea76cb"
|
"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"
|
||||||
}
|
}
|
||||||
@@ -262,12 +262,8 @@
|
|||||||
"theme.bar.menus.check_radio_button.background": "#181826",
|
"theme.bar.menus.check_radio_button.background": "#181826",
|
||||||
"theme.bar.menus.check_radio_button.active": "#b7bcf8",
|
"theme.bar.menus.check_radio_button.active": "#b7bcf8",
|
||||||
"theme.bar.buttons.style": "default",
|
"theme.bar.buttons.style": "default",
|
||||||
"theme.bar.buttons.icon_background": "#242438",
|
"theme.bar.menus.menu.notifications.pager.button": "#b7bdf8",
|
||||||
"theme.bar.buttons.volume.icon_background": "#ee999f",
|
"theme.bar.menus.menu.notifications.scrollbar.color": "#b7bdf8",
|
||||||
"theme.bar.buttons.network.icon_background": "#c5a0f6",
|
"theme.bar.menus.menu.notifications.pager.label": "#939ab7",
|
||||||
"theme.bar.buttons.bluetooth.icon_background": "#91d7e3",
|
"theme.bar.menus.menu.notifications.pager.background": "#181926"
|
||||||
"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"
|
|
||||||
}
|
}
|
||||||
@@ -270,5 +270,9 @@
|
|||||||
"theme.bar.buttons.media.icon_background": "#b7bcf8",
|
"theme.bar.buttons.media.icon_background": "#b7bcf8",
|
||||||
"theme.bar.buttons.notifications.icon_background": "#b7bcf8",
|
"theme.bar.buttons.notifications.icon_background": "#b7bcf8",
|
||||||
"theme.bar.buttons.battery.icon_background": "#eed49f",
|
"theme.bar.buttons.battery.icon_background": "#eed49f",
|
||||||
"theme.bar.buttons.clock.icon_background": "#f5bde6"
|
"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"
|
||||||
}
|
}
|
||||||
@@ -1,273 +1,269 @@
|
|||||||
{
|
{
|
||||||
"theme.bar.menus.background": "#11111b",
|
"theme.bar.menus.background": "#11111b",
|
||||||
"theme.bar.background": "#11111b",
|
"theme.bar.background": "#11111b",
|
||||||
"theme.bar.buttons.media.icon": "#b4befe",
|
"theme.bar.buttons.media.icon": "#b4befe",
|
||||||
"theme.bar.buttons.media.text": "#b4befe",
|
"theme.bar.buttons.media.text": "#b4befe",
|
||||||
"theme.bar.buttons.icon": "#b4befe",
|
"theme.bar.buttons.icon": "#b4befe",
|
||||||
"theme.bar.buttons.text": "#b4befe",
|
"theme.bar.buttons.text": "#b4befe",
|
||||||
"theme.bar.buttons.hover": "#45475a",
|
"theme.bar.buttons.hover": "#45475a",
|
||||||
"theme.bar.buttons.background": "#242438",
|
"theme.bar.buttons.background": "#242438",
|
||||||
"theme.bar.menus.text": "#cdd6f4",
|
"theme.bar.menus.text": "#cdd6f4",
|
||||||
"theme.bar.menus.border.color": "#313244",
|
"theme.bar.menus.border.color": "#313244",
|
||||||
"theme.bar.buttons.media.background": "#242438",
|
"theme.bar.buttons.media.background": "#242438",
|
||||||
"theme.bar.menus.menu.volume.text": "#cdd6f4",
|
"theme.bar.menus.menu.volume.text": "#cdd6f4",
|
||||||
"theme.bar.menus.menu.volume.card.color": "#1e1e2e",
|
"theme.bar.menus.menu.volume.card.color": "#1e1e2e",
|
||||||
"theme.bar.menus.menu.volume.label.color": "#eba0ac",
|
"theme.bar.menus.menu.volume.label.color": "#eba0ac",
|
||||||
"theme.bar.menus.popover.text": "#b4befe",
|
"theme.bar.menus.popover.text": "#b4befe",
|
||||||
"theme.bar.menus.popover.background": "#181824",
|
"theme.bar.menus.popover.background": "#181824",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.shutdown": "#f38ba8",
|
"theme.bar.menus.menu.dashboard.powermenu.shutdown": "#f38ba8",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#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.confirm": "#a6e3a1",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#11111a",
|
"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.body": "#cdd6f4",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#b4befe",
|
"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.border": "#313244",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#11111b",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#11111b",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#1e1e2e",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#1e1e2e",
|
||||||
"theme.bar.menus.menu.notifications.switch.puck": "#454759",
|
"theme.bar.menus.menu.notifications.switch.puck": "#454759",
|
||||||
"theme.bar.menus.menu.notifications.switch.disabled": "#313245",
|
"theme.bar.menus.menu.notifications.switch.disabled": "#313245",
|
||||||
"theme.bar.menus.menu.notifications.switch.enabled": "#b4befe",
|
"theme.bar.menus.menu.notifications.switch.enabled": "#b4befe",
|
||||||
"theme.bar.menus.menu.notifications.clear": "#f38ba8",
|
"theme.bar.menus.menu.notifications.clear": "#f38ba8",
|
||||||
"theme.bar.menus.menu.notifications.switch_divider": "#45475a",
|
"theme.bar.menus.menu.notifications.switch_divider": "#45475a",
|
||||||
"theme.bar.menus.menu.notifications.border": "#313244",
|
"theme.bar.menus.menu.notifications.border": "#313244",
|
||||||
"theme.bar.menus.menu.notifications.card": "#1e1e2e",
|
"theme.bar.menus.menu.notifications.card": "#1e1e2e",
|
||||||
"theme.bar.menus.menu.notifications.background": "#11111b",
|
"theme.bar.menus.menu.notifications.background": "#11111b",
|
||||||
"theme.bar.menus.menu.notifications.no_notifications_label": "#313244",
|
"theme.bar.menus.menu.notifications.no_notifications_label": "#313244",
|
||||||
"theme.bar.menus.menu.notifications.label": "#b4befe",
|
"theme.bar.menus.menu.notifications.label": "#b4befe",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.disk.label": "#f5c2e7",
|
"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.bar": "#f5c2e8",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.disk.icon": "#f5c2e7",
|
"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.label": "#a6e3a1",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#a6e3a2",
|
"theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#a6e3a2",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.gpu.icon": "#a6e3a1",
|
"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.label": "#f9e2af",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.ram.bar": "#f9e2ae",
|
"theme.bar.menus.menu.dashboard.monitors.ram.bar": "#f9e2ae",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.ram.icon": "#f9e2af",
|
"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.label": "#eba0ac",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#eba0ad",
|
"theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#eba0ad",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#eba0ac",
|
"theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#eba0ac",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.bar_background": "#45475a",
|
"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.bottom.color": "#b4befe",
|
||||||
"theme.bar.menus.menu.dashboard.directories.right.middle.color": "#cba6f7",
|
"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.right.top.color": "#94e2d5",
|
||||||
"theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#eba0ac",
|
"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.middle.color": "#f9e2af",
|
||||||
"theme.bar.menus.menu.dashboard.directories.left.top.color": "#f5c2e7",
|
"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.text": "#181824",
|
||||||
"theme.bar.menus.menu.dashboard.controls.input.background": "#f5c2e7",
|
"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.text": "#181824",
|
||||||
"theme.bar.menus.menu.dashboard.controls.volume.background": "#eba0ac",
|
"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.text": "#181824",
|
||||||
"theme.bar.menus.menu.dashboard.controls.notifications.background": "#f9e2af",
|
"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.text": "#181824",
|
||||||
"theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#89dceb",
|
"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.text": "#181824",
|
||||||
"theme.bar.menus.menu.dashboard.controls.wifi.background": "#cba6f7",
|
"theme.bar.menus.menu.dashboard.controls.wifi.background": "#cba6f7",
|
||||||
"theme.bar.menus.menu.dashboard.controls.disabled": "#585b70",
|
"theme.bar.menus.menu.dashboard.controls.disabled": "#585b70",
|
||||||
"theme.bar.menus.menu.dashboard.shortcuts.recording": "#a6e3a1",
|
"theme.bar.menus.menu.dashboard.shortcuts.recording": "#a6e3a1",
|
||||||
"theme.bar.menus.menu.dashboard.shortcuts.text": "#181824",
|
"theme.bar.menus.menu.dashboard.shortcuts.text": "#181824",
|
||||||
"theme.bar.menus.menu.dashboard.shortcuts.background": "#b4befe",
|
"theme.bar.menus.menu.dashboard.shortcuts.background": "#b4befe",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.sleep": "#89dceb",
|
"theme.bar.menus.menu.dashboard.powermenu.sleep": "#89dceb",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.logout": "#a6e3a1",
|
"theme.bar.menus.menu.dashboard.powermenu.logout": "#a6e3a1",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.restart": "#fab387",
|
"theme.bar.menus.menu.dashboard.powermenu.restart": "#fab387",
|
||||||
"theme.bar.menus.menu.dashboard.profile.name": "#f5c2e7",
|
"theme.bar.menus.menu.dashboard.profile.name": "#f5c2e7",
|
||||||
"theme.bar.menus.menu.dashboard.border.color": "#313244",
|
"theme.bar.menus.menu.dashboard.border.color": "#313244",
|
||||||
"theme.bar.menus.menu.dashboard.background.color": "#11111b",
|
"theme.bar.menus.menu.dashboard.background.color": "#11111b",
|
||||||
"theme.bar.menus.menu.dashboard.card.color": "#1e1e2e",
|
"theme.bar.menus.menu.dashboard.card.color": "#1e1e2e",
|
||||||
"theme.bar.menus.menu.clock.weather.hourly.temperature": "#f5c2e7",
|
"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.icon": "#f5c2e7",
|
||||||
"theme.bar.menus.menu.clock.weather.hourly.time": "#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.extremelycold": "#89dceb",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.cold": "#89b4fa",
|
"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.moderate": "#b4befe",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.hot": "#fab387",
|
"theme.bar.menus.menu.clock.weather.thermometer.hot": "#fab387",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#f38ba8",
|
"theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#f38ba8",
|
||||||
"theme.bar.menus.menu.clock.weather.stats": "#f5c2e7",
|
"theme.bar.menus.menu.clock.weather.stats": "#f5c2e7",
|
||||||
"theme.bar.menus.menu.clock.weather.status": "#94e2d5",
|
"theme.bar.menus.menu.clock.weather.status": "#94e2d5",
|
||||||
"theme.bar.menus.menu.clock.weather.temperature": "#cdd6f4",
|
"theme.bar.menus.menu.clock.weather.temperature": "#cdd6f4",
|
||||||
"theme.bar.menus.menu.clock.weather.icon": "#f5c2e7",
|
"theme.bar.menus.menu.clock.weather.icon": "#f5c2e7",
|
||||||
"theme.bar.menus.menu.clock.calendar.contextdays": "#585b70",
|
"theme.bar.menus.menu.clock.calendar.contextdays": "#585b70",
|
||||||
"theme.bar.menus.menu.clock.calendar.days": "#cdd6f4",
|
"theme.bar.menus.menu.clock.calendar.days": "#cdd6f4",
|
||||||
"theme.bar.menus.menu.clock.calendar.currentday": "#f5c2e7",
|
"theme.bar.menus.menu.clock.calendar.currentday": "#f5c2e7",
|
||||||
"theme.bar.menus.menu.clock.calendar.paginator": "#f5c2e6",
|
"theme.bar.menus.menu.clock.calendar.paginator": "#f5c2e6",
|
||||||
"theme.bar.menus.menu.clock.calendar.weekdays": "#f5c2e7",
|
"theme.bar.menus.menu.clock.calendar.weekdays": "#f5c2e7",
|
||||||
"theme.bar.menus.menu.clock.calendar.yearmonth": "#94e2d5",
|
"theme.bar.menus.menu.clock.calendar.yearmonth": "#94e2d5",
|
||||||
"theme.bar.menus.menu.clock.time.timeperiod": "#94e2d5",
|
"theme.bar.menus.menu.clock.time.timeperiod": "#94e2d5",
|
||||||
"theme.bar.menus.menu.clock.time.time": "#f5c2e7",
|
"theme.bar.menus.menu.clock.time.time": "#f5c2e7",
|
||||||
"theme.bar.menus.menu.clock.text": "#cdd6f4",
|
"theme.bar.menus.menu.clock.text": "#cdd6f4",
|
||||||
"theme.bar.menus.menu.clock.border.color": "#313244",
|
"theme.bar.menus.menu.clock.border.color": "#313244",
|
||||||
"theme.bar.menus.menu.clock.background.color": "#11111b",
|
"theme.bar.menus.menu.clock.background.color": "#11111b",
|
||||||
"theme.bar.menus.menu.clock.card.color": "#1e1e2e",
|
"theme.bar.menus.menu.clock.card.color": "#1e1e2e",
|
||||||
"theme.bar.menus.menu.battery.slider.puck": "#6c7086",
|
"theme.bar.menus.menu.battery.slider.puck": "#6c7086",
|
||||||
"theme.bar.menus.menu.battery.slider.backgroundhover": "#45475a",
|
"theme.bar.menus.menu.battery.slider.backgroundhover": "#45475a",
|
||||||
"theme.bar.menus.menu.battery.slider.background": "#585b71",
|
"theme.bar.menus.menu.battery.slider.background": "#585b71",
|
||||||
"theme.bar.menus.menu.battery.slider.primary": "#f9e2af",
|
"theme.bar.menus.menu.battery.slider.primary": "#f9e2af",
|
||||||
"theme.bar.menus.menu.battery.icons.active": "#f9e2af",
|
"theme.bar.menus.menu.battery.icons.active": "#f9e2af",
|
||||||
"theme.bar.menus.menu.battery.icons.passive": "#9399b2",
|
"theme.bar.menus.menu.battery.icons.passive": "#9399b2",
|
||||||
"theme.bar.menus.menu.battery.listitems.active": "#f9e2af",
|
"theme.bar.menus.menu.battery.listitems.active": "#f9e2af",
|
||||||
"theme.bar.menus.menu.battery.listitems.passive": "#cdd6f3",
|
"theme.bar.menus.menu.battery.listitems.passive": "#cdd6f3",
|
||||||
"theme.bar.menus.menu.battery.text": "#cdd6f4",
|
"theme.bar.menus.menu.battery.text": "#cdd6f4",
|
||||||
"theme.bar.menus.menu.battery.label.color": "#f9e2af",
|
"theme.bar.menus.menu.battery.label.color": "#f9e2af",
|
||||||
"theme.bar.menus.menu.battery.border.color": "#313244",
|
"theme.bar.menus.menu.battery.border.color": "#313244",
|
||||||
"theme.bar.menus.menu.battery.background.color": "#11111b",
|
"theme.bar.menus.menu.battery.background.color": "#11111b",
|
||||||
"theme.bar.menus.menu.battery.card.color": "#1e1e2e",
|
"theme.bar.menus.menu.battery.card.color": "#1e1e2e",
|
||||||
"theme.bar.menus.menu.systray.dropdownmenu.divider": "#1e1e2e",
|
"theme.bar.menus.menu.systray.dropdownmenu.divider": "#1e1e2e",
|
||||||
"theme.bar.menus.menu.systray.dropdownmenu.text": "#cdd6f4",
|
"theme.bar.menus.menu.systray.dropdownmenu.text": "#cdd6f4",
|
||||||
"theme.bar.menus.menu.systray.dropdownmenu.background": "#11111b",
|
"theme.bar.menus.menu.systray.dropdownmenu.background": "#11111b",
|
||||||
"theme.bar.menus.menu.bluetooth.iconbutton.active": "#89dceb",
|
"theme.bar.menus.menu.bluetooth.iconbutton.active": "#89dceb",
|
||||||
"theme.bar.menus.menu.bluetooth.iconbutton.passive": "#cdd6f4",
|
"theme.bar.menus.menu.bluetooth.iconbutton.passive": "#cdd6f4",
|
||||||
"theme.bar.menus.menu.bluetooth.icons.active": "#89dceb",
|
"theme.bar.menus.menu.bluetooth.icons.active": "#89dceb",
|
||||||
"theme.bar.menus.menu.bluetooth.icons.passive": "#9399b2",
|
"theme.bar.menus.menu.bluetooth.icons.passive": "#9399b2",
|
||||||
"theme.bar.menus.menu.bluetooth.listitems.active": "#89dcea",
|
"theme.bar.menus.menu.bluetooth.listitems.active": "#89dcea",
|
||||||
"theme.bar.menus.menu.bluetooth.listitems.passive": "#cdd6f4",
|
"theme.bar.menus.menu.bluetooth.listitems.passive": "#cdd6f4",
|
||||||
"theme.bar.menus.menu.bluetooth.switch.puck": "#454759",
|
"theme.bar.menus.menu.bluetooth.switch.puck": "#454759",
|
||||||
"theme.bar.menus.menu.bluetooth.switch.disabled": "#313245",
|
"theme.bar.menus.menu.bluetooth.switch.disabled": "#313245",
|
||||||
"theme.bar.menus.menu.bluetooth.switch.enabled": "#89dceb",
|
"theme.bar.menus.menu.bluetooth.switch.enabled": "#89dceb",
|
||||||
"theme.bar.menus.menu.bluetooth.switch_divider": "#45475a",
|
"theme.bar.menus.menu.bluetooth.switch_divider": "#45475a",
|
||||||
"theme.bar.menus.menu.bluetooth.status": "#6c7086",
|
"theme.bar.menus.menu.bluetooth.status": "#6c7086",
|
||||||
"theme.bar.menus.menu.bluetooth.text": "#cdd6f4",
|
"theme.bar.menus.menu.bluetooth.text": "#cdd6f4",
|
||||||
"theme.bar.menus.menu.bluetooth.label.color": "#89dceb",
|
"theme.bar.menus.menu.bluetooth.label.color": "#89dceb",
|
||||||
"theme.bar.menus.menu.bluetooth.border.color": "#313244",
|
"theme.bar.menus.menu.bluetooth.border.color": "#313244",
|
||||||
"theme.bar.menus.menu.bluetooth.background.color": "#11111b",
|
"theme.bar.menus.menu.bluetooth.background.color": "#11111b",
|
||||||
"theme.bar.menus.menu.bluetooth.card.color": "#1e1e2e",
|
"theme.bar.menus.menu.bluetooth.card.color": "#1e1e2e",
|
||||||
"theme.bar.menus.menu.network.iconbuttons.active": "#cba6f7",
|
"theme.bar.menus.menu.network.iconbuttons.active": "#cba6f7",
|
||||||
"theme.bar.menus.menu.network.iconbuttons.passive": "#cdd6f4",
|
"theme.bar.menus.menu.network.iconbuttons.passive": "#cdd6f4",
|
||||||
"theme.bar.menus.menu.network.icons.active": "#cba6f7",
|
"theme.bar.menus.menu.network.icons.active": "#cba6f7",
|
||||||
"theme.bar.menus.menu.network.icons.passive": "#9399b2",
|
"theme.bar.menus.menu.network.icons.passive": "#9399b2",
|
||||||
"theme.bar.menus.menu.network.listitems.active": "#cba6f6",
|
"theme.bar.menus.menu.network.listitems.active": "#cba6f6",
|
||||||
"theme.bar.menus.menu.network.listitems.passive": "#cdd6f4",
|
"theme.bar.menus.menu.network.listitems.passive": "#cdd6f4",
|
||||||
"theme.bar.menus.menu.network.status.color": "#6c7086",
|
"theme.bar.menus.menu.network.status.color": "#6c7086",
|
||||||
"theme.bar.menus.menu.network.text": "#cdd6f4",
|
"theme.bar.menus.menu.network.text": "#cdd6f4",
|
||||||
"theme.bar.menus.menu.network.label.color": "#cba6f7",
|
"theme.bar.menus.menu.network.label.color": "#cba6f7",
|
||||||
"theme.bar.menus.menu.network.border.color": "#313244",
|
"theme.bar.menus.menu.network.border.color": "#313244",
|
||||||
"theme.bar.menus.menu.network.background.color": "#11111b",
|
"theme.bar.menus.menu.network.background.color": "#11111b",
|
||||||
"theme.bar.menus.menu.network.card.color": "#1e1e2e",
|
"theme.bar.menus.menu.network.card.color": "#1e1e2e",
|
||||||
"theme.bar.menus.menu.volume.input_slider.puck": "#585b70",
|
"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.backgroundhover": "#45475a",
|
||||||
"theme.bar.menus.menu.volume.input_slider.background": "#585b71",
|
"theme.bar.menus.menu.volume.input_slider.background": "#585b71",
|
||||||
"theme.bar.menus.menu.volume.input_slider.primary": "#eba0ac",
|
"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.puck": "#585b70",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#45475a",
|
"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.background": "#585b71",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.primary": "#eba0ac",
|
"theme.bar.menus.menu.volume.audio_slider.primary": "#eba0ac",
|
||||||
"theme.bar.menus.menu.volume.icons.active": "#eba0ac",
|
"theme.bar.menus.menu.volume.icons.active": "#eba0ac",
|
||||||
"theme.bar.menus.menu.volume.icons.passive": "#9399b2",
|
"theme.bar.menus.menu.volume.icons.passive": "#9399b2",
|
||||||
"theme.bar.menus.menu.volume.iconbutton.active": "#eba0ac",
|
"theme.bar.menus.menu.volume.iconbutton.active": "#eba0ac",
|
||||||
"theme.bar.menus.menu.volume.iconbutton.passive": "#cdd6f4",
|
"theme.bar.menus.menu.volume.iconbutton.passive": "#cdd6f4",
|
||||||
"theme.bar.menus.menu.volume.listitems.active": "#eba0ab",
|
"theme.bar.menus.menu.volume.listitems.active": "#eba0ab",
|
||||||
"theme.bar.menus.menu.volume.listitems.passive": "#cdd6f4",
|
"theme.bar.menus.menu.volume.listitems.passive": "#cdd6f4",
|
||||||
"theme.bar.menus.menu.volume.border.color": "#313244",
|
"theme.bar.menus.menu.volume.border.color": "#313244",
|
||||||
"theme.bar.menus.menu.volume.background.color": "#11111b",
|
"theme.bar.menus.menu.volume.background.color": "#11111b",
|
||||||
"theme.bar.menus.menu.media.slider.puck": "#6c7086",
|
"theme.bar.menus.menu.media.slider.puck": "#6c7086",
|
||||||
"theme.bar.menus.menu.media.slider.backgroundhover": "#45475a",
|
"theme.bar.menus.menu.media.slider.backgroundhover": "#45475a",
|
||||||
"theme.bar.menus.menu.media.slider.background": "#585b71",
|
"theme.bar.menus.menu.media.slider.background": "#585b71",
|
||||||
"theme.bar.menus.menu.media.slider.primary": "#f5c2e7",
|
"theme.bar.menus.menu.media.slider.primary": "#f5c2e7",
|
||||||
"theme.bar.menus.menu.media.buttons.text": "#11111b",
|
"theme.bar.menus.menu.media.buttons.text": "#11111b",
|
||||||
"theme.bar.menus.menu.media.buttons.background": "#b4beff",
|
"theme.bar.menus.menu.media.buttons.background": "#b4beff",
|
||||||
"theme.bar.menus.menu.media.buttons.enabled": "#94e2d4",
|
"theme.bar.menus.menu.media.buttons.enabled": "#94e2d4",
|
||||||
"theme.bar.menus.menu.media.buttons.inactive": "#585b70",
|
"theme.bar.menus.menu.media.buttons.inactive": "#585b70",
|
||||||
"theme.bar.menus.menu.media.border.color": "#313244",
|
"theme.bar.menus.menu.media.border.color": "#313244",
|
||||||
"theme.bar.menus.menu.media.background.color": "#11111b",
|
"theme.bar.menus.menu.media.background.color": "#11111b",
|
||||||
"theme.bar.menus.menu.media.album": "#f5c2e8",
|
"theme.bar.menus.menu.media.album": "#f5c2e8",
|
||||||
"theme.bar.menus.menu.media.artist": "#94e2d6",
|
"theme.bar.menus.menu.media.artist": "#94e2d6",
|
||||||
"theme.bar.menus.menu.media.song": "#b4beff",
|
"theme.bar.menus.menu.media.song": "#b4beff",
|
||||||
"theme.bar.menus.tooltip.text": "#cdd6f4",
|
"theme.bar.menus.tooltip.text": "#cdd6f4",
|
||||||
"theme.bar.menus.tooltip.background": "#11111b",
|
"theme.bar.menus.tooltip.background": "#11111b",
|
||||||
"theme.bar.menus.dropdownmenu.divider": "#1e1e2e",
|
"theme.bar.menus.dropdownmenu.divider": "#1e1e2e",
|
||||||
"theme.bar.menus.dropdownmenu.text": "#cdd6f4",
|
"theme.bar.menus.dropdownmenu.text": "#cdd6f4",
|
||||||
"theme.bar.menus.dropdownmenu.background": "#11111b",
|
"theme.bar.menus.dropdownmenu.background": "#11111b",
|
||||||
"theme.bar.menus.slider.puck": "#6c7086",
|
"theme.bar.menus.slider.puck": "#6c7086",
|
||||||
"theme.bar.menus.slider.backgroundhover": "#45475a",
|
"theme.bar.menus.slider.backgroundhover": "#45475a",
|
||||||
"theme.bar.menus.slider.background": "#585b71",
|
"theme.bar.menus.slider.background": "#585b71",
|
||||||
"theme.bar.menus.slider.primary": "#b4befe",
|
"theme.bar.menus.slider.primary": "#b4befe",
|
||||||
"theme.bar.menus.progressbar.background": "#45475a",
|
"theme.bar.menus.progressbar.background": "#45475a",
|
||||||
"theme.bar.menus.progressbar.foreground": "#b4befe",
|
"theme.bar.menus.progressbar.foreground": "#b4befe",
|
||||||
"theme.bar.menus.iconbuttons.active": "#b4beff",
|
"theme.bar.menus.iconbuttons.active": "#b4beff",
|
||||||
"theme.bar.menus.iconbuttons.passive": "#cdd6f3",
|
"theme.bar.menus.iconbuttons.passive": "#cdd6f3",
|
||||||
"theme.bar.menus.buttons.text": "#181824",
|
"theme.bar.menus.buttons.text": "#181824",
|
||||||
"theme.bar.menus.buttons.disabled": "#585b71",
|
"theme.bar.menus.buttons.disabled": "#585b71",
|
||||||
"theme.bar.menus.buttons.active": "#f5c2e6",
|
"theme.bar.menus.buttons.active": "#f5c2e6",
|
||||||
"theme.bar.menus.buttons.default": "#b4befe",
|
"theme.bar.menus.buttons.default": "#b4befe",
|
||||||
"theme.bar.menus.switch.puck": "#454759",
|
"theme.bar.menus.switch.puck": "#454759",
|
||||||
"theme.bar.menus.switch.disabled": "#313245",
|
"theme.bar.menus.switch.disabled": "#313245",
|
||||||
"theme.bar.menus.switch.enabled": "#b4befe",
|
"theme.bar.menus.switch.enabled": "#b4befe",
|
||||||
"theme.bar.menus.icons.active": "#b4befe",
|
"theme.bar.menus.icons.active": "#b4befe",
|
||||||
"theme.bar.menus.icons.passive": "#585b70",
|
"theme.bar.menus.icons.passive": "#585b70",
|
||||||
"theme.bar.menus.listitems.active": "#b4befd",
|
"theme.bar.menus.listitems.active": "#b4befd",
|
||||||
"theme.bar.menus.listitems.passive": "#cdd6f4",
|
"theme.bar.menus.listitems.passive": "#cdd6f4",
|
||||||
"theme.bar.menus.label": "#b4befe",
|
"theme.bar.menus.label": "#b4befe",
|
||||||
"theme.bar.menus.feinttext": "#313244",
|
"theme.bar.menus.feinttext": "#313244",
|
||||||
"theme.bar.menus.dimtext": "#585b70",
|
"theme.bar.menus.dimtext": "#585b70",
|
||||||
"theme.bar.menus.cards": "#1e1e2e",
|
"theme.bar.menus.cards": "#1e1e2e",
|
||||||
"theme.bar.buttons.notifications.total": "#b4befe",
|
"theme.bar.buttons.notifications.total": "#b4befe",
|
||||||
"theme.bar.buttons.notifications.icon": "#b4befe",
|
"theme.bar.buttons.notifications.icon": "#b4befe",
|
||||||
"theme.bar.buttons.notifications.hover": "#45475a",
|
"theme.bar.buttons.notifications.hover": "#45475a",
|
||||||
"theme.bar.buttons.notifications.background": "#242438",
|
"theme.bar.buttons.notifications.background": "#242438",
|
||||||
"theme.bar.buttons.clock.icon": "#f5c2e7",
|
"theme.bar.buttons.clock.icon": "#f5c2e7",
|
||||||
"theme.bar.buttons.clock.text": "#f5c2e7",
|
"theme.bar.buttons.clock.text": "#f5c2e7",
|
||||||
"theme.bar.buttons.clock.hover": "#45475a",
|
"theme.bar.buttons.clock.hover": "#45475a",
|
||||||
"theme.bar.buttons.clock.background": "#242438",
|
"theme.bar.buttons.clock.background": "#242438",
|
||||||
"theme.bar.buttons.battery.icon": "#f9e2af",
|
"theme.bar.buttons.battery.icon": "#f9e2af",
|
||||||
"theme.bar.buttons.battery.text": "#f9e2af",
|
"theme.bar.buttons.battery.text": "#f9e2af",
|
||||||
"theme.bar.buttons.battery.hover": "#45475a",
|
"theme.bar.buttons.battery.hover": "#45475a",
|
||||||
"theme.bar.buttons.battery.background": "#242438",
|
"theme.bar.buttons.battery.background": "#242438",
|
||||||
"theme.bar.buttons.systray.hover": "#45475a",
|
"theme.bar.buttons.systray.hover": "#45475a",
|
||||||
"theme.bar.buttons.systray.background": "#242438",
|
"theme.bar.buttons.systray.background": "#242438",
|
||||||
"theme.bar.buttons.bluetooth.icon": "#89dceb",
|
"theme.bar.buttons.bluetooth.icon": "#89dceb",
|
||||||
"theme.bar.buttons.bluetooth.text": "#89dceb",
|
"theme.bar.buttons.bluetooth.text": "#89dceb",
|
||||||
"theme.bar.buttons.bluetooth.hover": "#45475a",
|
"theme.bar.buttons.bluetooth.hover": "#45475a",
|
||||||
"theme.bar.buttons.bluetooth.background": "#242438",
|
"theme.bar.buttons.bluetooth.background": "#242438",
|
||||||
"theme.bar.buttons.network.icon": "#cba6f7",
|
"theme.bar.buttons.network.icon": "#cba6f7",
|
||||||
"theme.bar.buttons.network.text": "#cba6f7",
|
"theme.bar.buttons.network.text": "#cba6f7",
|
||||||
"theme.bar.buttons.network.hover": "#45475a",
|
"theme.bar.buttons.network.hover": "#45475a",
|
||||||
"theme.bar.buttons.network.background": "#242438",
|
"theme.bar.buttons.network.background": "#242438",
|
||||||
"theme.bar.buttons.volume.icon": "#eba0ac",
|
"theme.bar.buttons.volume.icon": "#eba0ac",
|
||||||
"theme.bar.buttons.volume.text": "#eba0ac",
|
"theme.bar.buttons.volume.text": "#eba0ac",
|
||||||
"theme.bar.buttons.volume.hover": "#45475a",
|
"theme.bar.buttons.volume.hover": "#45475a",
|
||||||
"theme.bar.buttons.volume.background": "#242438",
|
"theme.bar.buttons.volume.background": "#242438",
|
||||||
"theme.bar.buttons.media.hover": "#45475a",
|
"theme.bar.buttons.media.hover": "#45475a",
|
||||||
"theme.bar.buttons.windowtitle.icon": "#f5c2e7",
|
"theme.bar.buttons.windowtitle.icon": "#f5c2e7",
|
||||||
"theme.bar.buttons.windowtitle.text": "#f5c2e7",
|
"theme.bar.buttons.windowtitle.text": "#f5c2e7",
|
||||||
"theme.bar.buttons.windowtitle.hover": "#45475a",
|
"theme.bar.buttons.windowtitle.hover": "#45475a",
|
||||||
"theme.bar.buttons.windowtitle.background": "#242438",
|
"theme.bar.buttons.windowtitle.background": "#242438",
|
||||||
"theme.bar.buttons.workspaces.numbered_active_text_color": "#181825",
|
"theme.bar.buttons.workspaces.numbered_active_text_color": "#181825",
|
||||||
"theme.bar.buttons.workspaces.active": "#f5c2e7",
|
"theme.bar.buttons.workspaces.active": "#f5c2e7",
|
||||||
"theme.bar.buttons.workspaces.occupied": "#f2cdcd",
|
"theme.bar.buttons.workspaces.occupied": "#f2cdcd",
|
||||||
"theme.bar.buttons.workspaces.available": "#89dceb",
|
"theme.bar.buttons.workspaces.available": "#89dceb",
|
||||||
"theme.bar.buttons.workspaces.hover": "#45475a",
|
"theme.bar.buttons.workspaces.hover": "#45475a",
|
||||||
"theme.bar.buttons.workspaces.background": "#242438",
|
"theme.bar.buttons.workspaces.background": "#242438",
|
||||||
"theme.bar.buttons.dashboard.icon": "#f9e2af",
|
"theme.bar.buttons.dashboard.icon": "#f9e2af",
|
||||||
"theme.bar.buttons.dashboard.hover": "#45475a",
|
"theme.bar.buttons.dashboard.hover": "#45475a",
|
||||||
"theme.bar.buttons.dashboard.background": "#242438",
|
"theme.bar.buttons.dashboard.background": "#242438",
|
||||||
"theme.osd.label": "#b4beff",
|
"theme.osd.label": "#b4beff",
|
||||||
"theme.osd.icon": "#11111b",
|
"theme.osd.icon": "#11111b",
|
||||||
"theme.osd.bar_overflow_color": "#f38ba7",
|
"theme.osd.bar_overflow_color": "#f38ba7",
|
||||||
"theme.osd.bar_empty_color": "#313244",
|
"theme.osd.bar_empty_color": "#313244",
|
||||||
"theme.osd.bar_color": "#b4beff",
|
"theme.osd.bar_color": "#b4beff",
|
||||||
"theme.osd.icon_container": "#b4beff",
|
"theme.osd.icon_container": "#b4beff",
|
||||||
"theme.osd.bar_container": "#11111b",
|
"theme.osd.bar_container": "#11111b",
|
||||||
"theme.notification.close_button.label": "#11111b",
|
"theme.notification.close_button.label": "#11111b",
|
||||||
"theme.notification.close_button.background": "#f38ba7",
|
"theme.notification.close_button.background": "#f38ba7",
|
||||||
"theme.notification.labelicon": "#b4befe",
|
"theme.notification.labelicon": "#b4befe",
|
||||||
"theme.notification.text": "#cdd6f4",
|
"theme.notification.text": "#cdd6f4",
|
||||||
"theme.notification.time": "#7f849b",
|
"theme.notification.time": "#7f849b",
|
||||||
"theme.notification.border": "#313243",
|
"theme.notification.border": "#313243",
|
||||||
"theme.notification.label": "#b4befe",
|
"theme.notification.label": "#b4befe",
|
||||||
"theme.notification.actions.text": "#181825",
|
"theme.notification.actions.text": "#181825",
|
||||||
"theme.notification.actions.background": "#b4befd",
|
"theme.notification.actions.background": "#b4befd",
|
||||||
"theme.notification.background": "#181826",
|
"theme.notification.background": "#181826",
|
||||||
"theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#181825",
|
"theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#181825",
|
||||||
"theme.bar.buttons.workspaces.numbered_active_underline_color": "#f5c2e7",
|
"theme.bar.buttons.workspaces.numbered_active_underline_color": "#f5c2e7",
|
||||||
"theme.bar.menus.menu.media.card.color": "#1e1e2e",
|
"theme.bar.menus.menu.media.card.color": "#1e1e2e",
|
||||||
"theme.bar.menus.check_radio_button.background": "#181826",
|
"theme.bar.menus.check_radio_button.background": "#181826",
|
||||||
"theme.bar.menus.check_radio_button.active": "#b7bcf8",
|
"theme.bar.menus.check_radio_button.active": "#b7bcf8",
|
||||||
"theme.bar.buttons.style": "default",
|
"theme.bar.buttons.style": "default",
|
||||||
"theme.bar.buttons.icon_background": "#242438",
|
"theme.bar.menus.menu.notifications.scrollbar.color": "#b4befe",
|
||||||
"theme.bar.buttons.volume.icon_background": "#ee999f",
|
"theme.bar.menus.menu.notifications.pager.button": "#b4befe",
|
||||||
"theme.bar.buttons.network.icon_background": "#c5a0f6",
|
"theme.bar.menus.menu.notifications.pager.label": "#9399b2",
|
||||||
"theme.bar.buttons.bluetooth.icon_background": "#91d7e3",
|
"theme.bar.menus.menu.notifications.pager.background": "#11111b"
|
||||||
"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"
|
|
||||||
}
|
}
|
||||||
@@ -1,274 +1,278 @@
|
|||||||
{
|
{
|
||||||
"theme.bar.menus.background": "#11111b",
|
"theme.bar.menus.background": "#11111b",
|
||||||
"theme.bar.background": "#11111b",
|
"theme.bar.background": "#11111b",
|
||||||
"theme.bar.buttons.media.icon": "#1e1e2e",
|
"theme.bar.buttons.media.icon": "#1e1e2e",
|
||||||
"theme.bar.buttons.media.text": "#b4befe",
|
"theme.bar.buttons.media.text": "#b4befe",
|
||||||
"theme.bar.buttons.icon": "#b4befe",
|
"theme.bar.buttons.icon": "#b4befe",
|
||||||
"theme.bar.buttons.text": "#b4befe",
|
"theme.bar.buttons.text": "#b4befe",
|
||||||
"theme.bar.buttons.hover": "#45475a",
|
"theme.bar.buttons.hover": "#45475a",
|
||||||
"theme.bar.buttons.background": "#242438",
|
"theme.bar.buttons.background": "#242438",
|
||||||
"theme.bar.menus.text": "#cdd6f4",
|
"theme.bar.menus.text": "#cdd6f4",
|
||||||
"theme.bar.menus.border.color": "#313244",
|
"theme.bar.menus.border.color": "#313244",
|
||||||
"theme.bar.buttons.media.background": "#242438",
|
"theme.bar.buttons.media.background": "#242438",
|
||||||
"theme.bar.menus.menu.volume.text": "#cdd6f4",
|
"theme.bar.menus.menu.volume.text": "#cdd6f4",
|
||||||
"theme.bar.menus.menu.volume.card.color": "#1e1e2e",
|
"theme.bar.menus.menu.volume.card.color": "#1e1e2e",
|
||||||
"theme.bar.menus.menu.volume.label.color": "#eba0ac",
|
"theme.bar.menus.menu.volume.label.color": "#eba0ac",
|
||||||
"theme.bar.menus.popover.text": "#b4befe",
|
"theme.bar.menus.popover.text": "#b4befe",
|
||||||
"theme.bar.menus.popover.background": "#181824",
|
"theme.bar.menus.popover.background": "#181824",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.shutdown": "#f38ba8",
|
"theme.bar.menus.menu.dashboard.powermenu.shutdown": "#f38ba8",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#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.confirm": "#a6e3a1",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#11111a",
|
"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.body": "#cdd6f4",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#b4befe",
|
"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.border": "#313244",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#11111b",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#11111b",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#1e1e2e",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#1e1e2e",
|
||||||
"theme.bar.menus.menu.notifications.switch.puck": "#454759",
|
"theme.bar.menus.menu.notifications.switch.puck": "#454759",
|
||||||
"theme.bar.menus.menu.notifications.switch.disabled": "#313245",
|
"theme.bar.menus.menu.notifications.switch.disabled": "#313245",
|
||||||
"theme.bar.menus.menu.notifications.switch.enabled": "#b4befe",
|
"theme.bar.menus.menu.notifications.switch.enabled": "#b4befe",
|
||||||
"theme.bar.menus.menu.notifications.clear": "#f38ba8",
|
"theme.bar.menus.menu.notifications.clear": "#f38ba8",
|
||||||
"theme.bar.menus.menu.notifications.switch_divider": "#45475a",
|
"theme.bar.menus.menu.notifications.switch_divider": "#45475a",
|
||||||
"theme.bar.menus.menu.notifications.border": "#313244",
|
"theme.bar.menus.menu.notifications.border": "#313244",
|
||||||
"theme.bar.menus.menu.notifications.card": "#1e1e2e",
|
"theme.bar.menus.menu.notifications.card": "#1e1e2e",
|
||||||
"theme.bar.menus.menu.notifications.background": "#11111b",
|
"theme.bar.menus.menu.notifications.background": "#11111b",
|
||||||
"theme.bar.menus.menu.notifications.no_notifications_label": "#313244",
|
"theme.bar.menus.menu.notifications.no_notifications_label": "#313244",
|
||||||
"theme.bar.menus.menu.notifications.label": "#b4befe",
|
"theme.bar.menus.menu.notifications.label": "#b4befe",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.disk.label": "#f5c2e7",
|
"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.bar": "#f5c2e8",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.disk.icon": "#f5c2e7",
|
"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.label": "#a6e3a1",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#a6e3a2",
|
"theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#a6e3a2",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.gpu.icon": "#a6e3a1",
|
"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.label": "#f9e2af",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.ram.bar": "#f9e2ae",
|
"theme.bar.menus.menu.dashboard.monitors.ram.bar": "#f9e2ae",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.ram.icon": "#f9e2af",
|
"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.label": "#eba0ac",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#eba0ad",
|
"theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#eba0ad",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#eba0ac",
|
"theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#eba0ac",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.bar_background": "#45475a",
|
"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.bottom.color": "#b4befe",
|
||||||
"theme.bar.menus.menu.dashboard.directories.right.middle.color": "#cba6f7",
|
"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.right.top.color": "#94e2d5",
|
||||||
"theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#eba0ac",
|
"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.middle.color": "#f9e2af",
|
||||||
"theme.bar.menus.menu.dashboard.directories.left.top.color": "#f5c2e7",
|
"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.text": "#181824",
|
||||||
"theme.bar.menus.menu.dashboard.controls.input.background": "#f5c2e7",
|
"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.text": "#181824",
|
||||||
"theme.bar.menus.menu.dashboard.controls.volume.background": "#eba0ac",
|
"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.text": "#181824",
|
||||||
"theme.bar.menus.menu.dashboard.controls.notifications.background": "#f9e2af",
|
"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.text": "#181824",
|
||||||
"theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#89dceb",
|
"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.text": "#181824",
|
||||||
"theme.bar.menus.menu.dashboard.controls.wifi.background": "#cba6f7",
|
"theme.bar.menus.menu.dashboard.controls.wifi.background": "#cba6f7",
|
||||||
"theme.bar.menus.menu.dashboard.controls.disabled": "#585b70",
|
"theme.bar.menus.menu.dashboard.controls.disabled": "#585b70",
|
||||||
"theme.bar.menus.menu.dashboard.shortcuts.recording": "#a6e3a1",
|
"theme.bar.menus.menu.dashboard.shortcuts.recording": "#a6e3a1",
|
||||||
"theme.bar.menus.menu.dashboard.shortcuts.text": "#181824",
|
"theme.bar.menus.menu.dashboard.shortcuts.text": "#181824",
|
||||||
"theme.bar.menus.menu.dashboard.shortcuts.background": "#b4befe",
|
"theme.bar.menus.menu.dashboard.shortcuts.background": "#b4befe",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.sleep": "#89dceb",
|
"theme.bar.menus.menu.dashboard.powermenu.sleep": "#89dceb",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.logout": "#a6e3a1",
|
"theme.bar.menus.menu.dashboard.powermenu.logout": "#a6e3a1",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.restart": "#fab387",
|
"theme.bar.menus.menu.dashboard.powermenu.restart": "#fab387",
|
||||||
"theme.bar.menus.menu.dashboard.profile.name": "#f5c2e7",
|
"theme.bar.menus.menu.dashboard.profile.name": "#f5c2e7",
|
||||||
"theme.bar.menus.menu.dashboard.border.color": "#313244",
|
"theme.bar.menus.menu.dashboard.border.color": "#313244",
|
||||||
"theme.bar.menus.menu.dashboard.background.color": "#11111b",
|
"theme.bar.menus.menu.dashboard.background.color": "#11111b",
|
||||||
"theme.bar.menus.menu.dashboard.card.color": "#1e1e2e",
|
"theme.bar.menus.menu.dashboard.card.color": "#1e1e2e",
|
||||||
"theme.bar.menus.menu.clock.weather.hourly.temperature": "#f5c2e7",
|
"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.icon": "#f5c2e7",
|
||||||
"theme.bar.menus.menu.clock.weather.hourly.time": "#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.extremelycold": "#89dceb",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.cold": "#89b4fa",
|
"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.moderate": "#b4befe",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.hot": "#fab387",
|
"theme.bar.menus.menu.clock.weather.thermometer.hot": "#fab387",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#f38ba8",
|
"theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#f38ba8",
|
||||||
"theme.bar.menus.menu.clock.weather.stats": "#f5c2e7",
|
"theme.bar.menus.menu.clock.weather.stats": "#f5c2e7",
|
||||||
"theme.bar.menus.menu.clock.weather.status": "#94e2d5",
|
"theme.bar.menus.menu.clock.weather.status": "#94e2d5",
|
||||||
"theme.bar.menus.menu.clock.weather.temperature": "#cdd6f4",
|
"theme.bar.menus.menu.clock.weather.temperature": "#cdd6f4",
|
||||||
"theme.bar.menus.menu.clock.weather.icon": "#f5c2e7",
|
"theme.bar.menus.menu.clock.weather.icon": "#f5c2e7",
|
||||||
"theme.bar.menus.menu.clock.calendar.contextdays": "#585b70",
|
"theme.bar.menus.menu.clock.calendar.contextdays": "#585b70",
|
||||||
"theme.bar.menus.menu.clock.calendar.days": "#cdd6f4",
|
"theme.bar.menus.menu.clock.calendar.days": "#cdd6f4",
|
||||||
"theme.bar.menus.menu.clock.calendar.currentday": "#f5c2e7",
|
"theme.bar.menus.menu.clock.calendar.currentday": "#f5c2e7",
|
||||||
"theme.bar.menus.menu.clock.calendar.paginator": "#f5c2e6",
|
"theme.bar.menus.menu.clock.calendar.paginator": "#f5c2e6",
|
||||||
"theme.bar.menus.menu.clock.calendar.weekdays": "#f5c2e7",
|
"theme.bar.menus.menu.clock.calendar.weekdays": "#f5c2e7",
|
||||||
"theme.bar.menus.menu.clock.calendar.yearmonth": "#94e2d5",
|
"theme.bar.menus.menu.clock.calendar.yearmonth": "#94e2d5",
|
||||||
"theme.bar.menus.menu.clock.time.timeperiod": "#94e2d5",
|
"theme.bar.menus.menu.clock.time.timeperiod": "#94e2d5",
|
||||||
"theme.bar.menus.menu.clock.time.time": "#f5c2e7",
|
"theme.bar.menus.menu.clock.time.time": "#f5c2e7",
|
||||||
"theme.bar.menus.menu.clock.text": "#cdd6f4",
|
"theme.bar.menus.menu.clock.text": "#cdd6f4",
|
||||||
"theme.bar.menus.menu.clock.border.color": "#313244",
|
"theme.bar.menus.menu.clock.border.color": "#313244",
|
||||||
"theme.bar.menus.menu.clock.background.color": "#11111b",
|
"theme.bar.menus.menu.clock.background.color": "#11111b",
|
||||||
"theme.bar.menus.menu.clock.card.color": "#1e1e2e",
|
"theme.bar.menus.menu.clock.card.color": "#1e1e2e",
|
||||||
"theme.bar.menus.menu.battery.slider.puck": "#6c7086",
|
"theme.bar.menus.menu.battery.slider.puck": "#6c7086",
|
||||||
"theme.bar.menus.menu.battery.slider.backgroundhover": "#45475a",
|
"theme.bar.menus.menu.battery.slider.backgroundhover": "#45475a",
|
||||||
"theme.bar.menus.menu.battery.slider.background": "#585b71",
|
"theme.bar.menus.menu.battery.slider.background": "#585b71",
|
||||||
"theme.bar.menus.menu.battery.slider.primary": "#f9e2af",
|
"theme.bar.menus.menu.battery.slider.primary": "#f9e2af",
|
||||||
"theme.bar.menus.menu.battery.icons.active": "#f9e2af",
|
"theme.bar.menus.menu.battery.icons.active": "#f9e2af",
|
||||||
"theme.bar.menus.menu.battery.icons.passive": "#9399b2",
|
"theme.bar.menus.menu.battery.icons.passive": "#9399b2",
|
||||||
"theme.bar.menus.menu.battery.listitems.active": "#f9e2af",
|
"theme.bar.menus.menu.battery.listitems.active": "#f9e2af",
|
||||||
"theme.bar.menus.menu.battery.listitems.passive": "#cdd6f3",
|
"theme.bar.menus.menu.battery.listitems.passive": "#cdd6f3",
|
||||||
"theme.bar.menus.menu.battery.text": "#cdd6f4",
|
"theme.bar.menus.menu.battery.text": "#cdd6f4",
|
||||||
"theme.bar.menus.menu.battery.label.color": "#f9e2af",
|
"theme.bar.menus.menu.battery.label.color": "#f9e2af",
|
||||||
"theme.bar.menus.menu.battery.border.color": "#313244",
|
"theme.bar.menus.menu.battery.border.color": "#313244",
|
||||||
"theme.bar.menus.menu.battery.background.color": "#11111b",
|
"theme.bar.menus.menu.battery.background.color": "#11111b",
|
||||||
"theme.bar.menus.menu.battery.card.color": "#1e1e2e",
|
"theme.bar.menus.menu.battery.card.color": "#1e1e2e",
|
||||||
"theme.bar.menus.menu.systray.dropdownmenu.divider": "#1e1e2e",
|
"theme.bar.menus.menu.systray.dropdownmenu.divider": "#1e1e2e",
|
||||||
"theme.bar.menus.menu.systray.dropdownmenu.text": "#cdd6f4",
|
"theme.bar.menus.menu.systray.dropdownmenu.text": "#cdd6f4",
|
||||||
"theme.bar.menus.menu.systray.dropdownmenu.background": "#11111b",
|
"theme.bar.menus.menu.systray.dropdownmenu.background": "#11111b",
|
||||||
"theme.bar.menus.menu.bluetooth.iconbutton.active": "#89dceb",
|
"theme.bar.menus.menu.bluetooth.iconbutton.active": "#89dceb",
|
||||||
"theme.bar.menus.menu.bluetooth.iconbutton.passive": "#cdd6f4",
|
"theme.bar.menus.menu.bluetooth.iconbutton.passive": "#cdd6f4",
|
||||||
"theme.bar.menus.menu.bluetooth.icons.active": "#89dceb",
|
"theme.bar.menus.menu.bluetooth.icons.active": "#89dceb",
|
||||||
"theme.bar.menus.menu.bluetooth.icons.passive": "#9399b2",
|
"theme.bar.menus.menu.bluetooth.icons.passive": "#9399b2",
|
||||||
"theme.bar.menus.menu.bluetooth.listitems.active": "#89dcea",
|
"theme.bar.menus.menu.bluetooth.listitems.active": "#89dcea",
|
||||||
"theme.bar.menus.menu.bluetooth.listitems.passive": "#cdd6f4",
|
"theme.bar.menus.menu.bluetooth.listitems.passive": "#cdd6f4",
|
||||||
"theme.bar.menus.menu.bluetooth.switch.puck": "#454759",
|
"theme.bar.menus.menu.bluetooth.switch.puck": "#454759",
|
||||||
"theme.bar.menus.menu.bluetooth.switch.disabled": "#313245",
|
"theme.bar.menus.menu.bluetooth.switch.disabled": "#313245",
|
||||||
"theme.bar.menus.menu.bluetooth.switch.enabled": "#89dceb",
|
"theme.bar.menus.menu.bluetooth.switch.enabled": "#89dceb",
|
||||||
"theme.bar.menus.menu.bluetooth.switch_divider": "#45475a",
|
"theme.bar.menus.menu.bluetooth.switch_divider": "#45475a",
|
||||||
"theme.bar.menus.menu.bluetooth.status": "#6c7086",
|
"theme.bar.menus.menu.bluetooth.status": "#6c7086",
|
||||||
"theme.bar.menus.menu.bluetooth.text": "#cdd6f4",
|
"theme.bar.menus.menu.bluetooth.text": "#cdd6f4",
|
||||||
"theme.bar.menus.menu.bluetooth.label.color": "#89dceb",
|
"theme.bar.menus.menu.bluetooth.label.color": "#89dceb",
|
||||||
"theme.bar.menus.menu.bluetooth.border.color": "#313244",
|
"theme.bar.menus.menu.bluetooth.border.color": "#313244",
|
||||||
"theme.bar.menus.menu.bluetooth.background.color": "#11111b",
|
"theme.bar.menus.menu.bluetooth.background.color": "#11111b",
|
||||||
"theme.bar.menus.menu.bluetooth.card.color": "#1e1e2e",
|
"theme.bar.menus.menu.bluetooth.card.color": "#1e1e2e",
|
||||||
"theme.bar.menus.menu.network.iconbuttons.active": "#cba6f7",
|
"theme.bar.menus.menu.network.iconbuttons.active": "#cba6f7",
|
||||||
"theme.bar.menus.menu.network.iconbuttons.passive": "#cdd6f4",
|
"theme.bar.menus.menu.network.iconbuttons.passive": "#cdd6f4",
|
||||||
"theme.bar.menus.menu.network.icons.active": "#cba6f7",
|
"theme.bar.menus.menu.network.icons.active": "#cba6f7",
|
||||||
"theme.bar.menus.menu.network.icons.passive": "#9399b2",
|
"theme.bar.menus.menu.network.icons.passive": "#9399b2",
|
||||||
"theme.bar.menus.menu.network.listitems.active": "#cba6f6",
|
"theme.bar.menus.menu.network.listitems.active": "#cba6f6",
|
||||||
"theme.bar.menus.menu.network.listitems.passive": "#cdd6f4",
|
"theme.bar.menus.menu.network.listitems.passive": "#cdd6f4",
|
||||||
"theme.bar.menus.menu.network.status.color": "#6c7086",
|
"theme.bar.menus.menu.network.status.color": "#6c7086",
|
||||||
"theme.bar.menus.menu.network.text": "#cdd6f4",
|
"theme.bar.menus.menu.network.text": "#cdd6f4",
|
||||||
"theme.bar.menus.menu.network.label.color": "#cba6f7",
|
"theme.bar.menus.menu.network.label.color": "#cba6f7",
|
||||||
"theme.bar.menus.menu.network.border.color": "#313244",
|
"theme.bar.menus.menu.network.border.color": "#313244",
|
||||||
"theme.bar.menus.menu.network.background.color": "#11111b",
|
"theme.bar.menus.menu.network.background.color": "#11111b",
|
||||||
"theme.bar.menus.menu.network.card.color": "#1e1e2e",
|
"theme.bar.menus.menu.network.card.color": "#1e1e2e",
|
||||||
"theme.bar.menus.menu.volume.input_slider.puck": "#585b70",
|
"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.backgroundhover": "#45475a",
|
||||||
"theme.bar.menus.menu.volume.input_slider.background": "#585b71",
|
"theme.bar.menus.menu.volume.input_slider.background": "#585b71",
|
||||||
"theme.bar.menus.menu.volume.input_slider.primary": "#eba0ac",
|
"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.puck": "#585b70",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#45475a",
|
"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.background": "#585b71",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.primary": "#eba0ac",
|
"theme.bar.menus.menu.volume.audio_slider.primary": "#eba0ac",
|
||||||
"theme.bar.menus.menu.volume.icons.active": "#eba0ac",
|
"theme.bar.menus.menu.volume.icons.active": "#eba0ac",
|
||||||
"theme.bar.menus.menu.volume.icons.passive": "#9399b2",
|
"theme.bar.menus.menu.volume.icons.passive": "#9399b2",
|
||||||
"theme.bar.menus.menu.volume.iconbutton.active": "#eba0ac",
|
"theme.bar.menus.menu.volume.iconbutton.active": "#eba0ac",
|
||||||
"theme.bar.menus.menu.volume.iconbutton.passive": "#cdd6f4",
|
"theme.bar.menus.menu.volume.iconbutton.passive": "#cdd6f4",
|
||||||
"theme.bar.menus.menu.volume.listitems.active": "#eba0ab",
|
"theme.bar.menus.menu.volume.listitems.active": "#eba0ab",
|
||||||
"theme.bar.menus.menu.volume.listitems.passive": "#cdd6f4",
|
"theme.bar.menus.menu.volume.listitems.passive": "#cdd6f4",
|
||||||
"theme.bar.menus.menu.volume.border.color": "#313244",
|
"theme.bar.menus.menu.volume.border.color": "#313244",
|
||||||
"theme.bar.menus.menu.volume.background.color": "#11111b",
|
"theme.bar.menus.menu.volume.background.color": "#11111b",
|
||||||
"theme.bar.menus.menu.media.slider.puck": "#6c7086",
|
"theme.bar.menus.menu.media.slider.puck": "#6c7086",
|
||||||
"theme.bar.menus.menu.media.slider.backgroundhover": "#45475a",
|
"theme.bar.menus.menu.media.slider.backgroundhover": "#45475a",
|
||||||
"theme.bar.menus.menu.media.slider.background": "#585b71",
|
"theme.bar.menus.menu.media.slider.background": "#585b71",
|
||||||
"theme.bar.menus.menu.media.slider.primary": "#f5c2e7",
|
"theme.bar.menus.menu.media.slider.primary": "#f5c2e7",
|
||||||
"theme.bar.menus.menu.media.buttons.text": "#11111b",
|
"theme.bar.menus.menu.media.buttons.text": "#11111b",
|
||||||
"theme.bar.menus.menu.media.buttons.background": "#b4beff",
|
"theme.bar.menus.menu.media.buttons.background": "#b4beff",
|
||||||
"theme.bar.menus.menu.media.buttons.enabled": "#94e2d4",
|
"theme.bar.menus.menu.media.buttons.enabled": "#94e2d4",
|
||||||
"theme.bar.menus.menu.media.buttons.inactive": "#585b70",
|
"theme.bar.menus.menu.media.buttons.inactive": "#585b70",
|
||||||
"theme.bar.menus.menu.media.border.color": "#313244",
|
"theme.bar.menus.menu.media.border.color": "#313244",
|
||||||
"theme.bar.menus.menu.media.background.color": "#11111b",
|
"theme.bar.menus.menu.media.background.color": "#11111b",
|
||||||
"theme.bar.menus.menu.media.album": "#f5c2e8",
|
"theme.bar.menus.menu.media.album": "#f5c2e8",
|
||||||
"theme.bar.menus.menu.media.artist": "#94e2d6",
|
"theme.bar.menus.menu.media.artist": "#94e2d6",
|
||||||
"theme.bar.menus.menu.media.song": "#b4beff",
|
"theme.bar.menus.menu.media.song": "#b4beff",
|
||||||
"theme.bar.menus.tooltip.text": "#cdd6f4",
|
"theme.bar.menus.tooltip.text": "#cdd6f4",
|
||||||
"theme.bar.menus.tooltip.background": "#11111b",
|
"theme.bar.menus.tooltip.background": "#11111b",
|
||||||
"theme.bar.menus.dropdownmenu.divider": "#1e1e2e",
|
"theme.bar.menus.dropdownmenu.divider": "#1e1e2e",
|
||||||
"theme.bar.menus.dropdownmenu.text": "#cdd6f4",
|
"theme.bar.menus.dropdownmenu.text": "#cdd6f4",
|
||||||
"theme.bar.menus.dropdownmenu.background": "#11111b",
|
"theme.bar.menus.dropdownmenu.background": "#11111b",
|
||||||
"theme.bar.menus.slider.puck": "#6c7086",
|
"theme.bar.menus.slider.puck": "#6c7086",
|
||||||
"theme.bar.menus.slider.backgroundhover": "#45475a",
|
"theme.bar.menus.slider.backgroundhover": "#45475a",
|
||||||
"theme.bar.menus.slider.background": "#585b71",
|
"theme.bar.menus.slider.background": "#585b71",
|
||||||
"theme.bar.menus.slider.primary": "#b4befe",
|
"theme.bar.menus.slider.primary": "#b4befe",
|
||||||
"theme.bar.menus.progressbar.background": "#45475a",
|
"theme.bar.menus.progressbar.background": "#45475a",
|
||||||
"theme.bar.menus.progressbar.foreground": "#b4befe",
|
"theme.bar.menus.progressbar.foreground": "#b4befe",
|
||||||
"theme.bar.menus.iconbuttons.active": "#b4beff",
|
"theme.bar.menus.iconbuttons.active": "#b4beff",
|
||||||
"theme.bar.menus.iconbuttons.passive": "#cdd6f3",
|
"theme.bar.menus.iconbuttons.passive": "#cdd6f3",
|
||||||
"theme.bar.menus.buttons.text": "#181824",
|
"theme.bar.menus.buttons.text": "#181824",
|
||||||
"theme.bar.menus.buttons.disabled": "#585b71",
|
"theme.bar.menus.buttons.disabled": "#585b71",
|
||||||
"theme.bar.menus.buttons.active": "#f5c2e6",
|
"theme.bar.menus.buttons.active": "#f5c2e6",
|
||||||
"theme.bar.menus.buttons.default": "#b4befe",
|
"theme.bar.menus.buttons.default": "#b4befe",
|
||||||
"theme.bar.menus.switch.puck": "#454759",
|
"theme.bar.menus.switch.puck": "#454759",
|
||||||
"theme.bar.menus.switch.disabled": "#313245",
|
"theme.bar.menus.switch.disabled": "#313245",
|
||||||
"theme.bar.menus.switch.enabled": "#b4befe",
|
"theme.bar.menus.switch.enabled": "#b4befe",
|
||||||
"theme.bar.menus.icons.active": "#b4befe",
|
"theme.bar.menus.icons.active": "#b4befe",
|
||||||
"theme.bar.menus.icons.passive": "#585b70",
|
"theme.bar.menus.icons.passive": "#585b70",
|
||||||
"theme.bar.menus.listitems.active": "#b4befd",
|
"theme.bar.menus.listitems.active": "#b4befd",
|
||||||
"theme.bar.menus.listitems.passive": "#cdd6f4",
|
"theme.bar.menus.listitems.passive": "#cdd6f4",
|
||||||
"theme.bar.menus.label": "#b4befe",
|
"theme.bar.menus.label": "#b4befe",
|
||||||
"theme.bar.menus.feinttext": "#313244",
|
"theme.bar.menus.feinttext": "#313244",
|
||||||
"theme.bar.menus.dimtext": "#585b70",
|
"theme.bar.menus.dimtext": "#585b70",
|
||||||
"theme.bar.menus.cards": "#1e1e2e",
|
"theme.bar.menus.cards": "#1e1e2e",
|
||||||
"theme.bar.buttons.notifications.total": "#b4befe",
|
"theme.bar.buttons.notifications.total": "#b4befe",
|
||||||
"theme.bar.buttons.notifications.icon": "#1e1e2e",
|
"theme.bar.buttons.notifications.icon": "#1e1e2e",
|
||||||
"theme.bar.buttons.notifications.hover": "#45475a",
|
"theme.bar.buttons.notifications.hover": "#45475a",
|
||||||
"theme.bar.buttons.notifications.background": "#242438",
|
"theme.bar.buttons.notifications.background": "#242438",
|
||||||
"theme.bar.buttons.clock.icon": "#232338",
|
"theme.bar.buttons.clock.icon": "#232338",
|
||||||
"theme.bar.buttons.clock.text": "#f5c2e7",
|
"theme.bar.buttons.clock.text": "#f5c2e7",
|
||||||
"theme.bar.buttons.clock.hover": "#45475a",
|
"theme.bar.buttons.clock.hover": "#45475a",
|
||||||
"theme.bar.buttons.clock.background": "#242438",
|
"theme.bar.buttons.clock.background": "#242438",
|
||||||
"theme.bar.buttons.battery.icon": "#242438",
|
"theme.bar.buttons.battery.icon": "#242438",
|
||||||
"theme.bar.buttons.battery.text": "#f9e2af",
|
"theme.bar.buttons.battery.text": "#f9e2af",
|
||||||
"theme.bar.buttons.battery.hover": "#45475a",
|
"theme.bar.buttons.battery.hover": "#45475a",
|
||||||
"theme.bar.buttons.battery.background": "#242438",
|
"theme.bar.buttons.battery.background": "#242438",
|
||||||
"theme.bar.buttons.systray.hover": "#45475a",
|
"theme.bar.buttons.systray.hover": "#45475a",
|
||||||
"theme.bar.buttons.systray.background": "#242438",
|
"theme.bar.buttons.systray.background": "#242438",
|
||||||
"theme.bar.buttons.bluetooth.icon": "#1e1e2e",
|
"theme.bar.buttons.bluetooth.icon": "#1e1e2e",
|
||||||
"theme.bar.buttons.bluetooth.text": "#89dceb",
|
"theme.bar.buttons.bluetooth.text": "#89dceb",
|
||||||
"theme.bar.buttons.bluetooth.hover": "#45475a",
|
"theme.bar.buttons.bluetooth.hover": "#45475a",
|
||||||
"theme.bar.buttons.bluetooth.background": "#242438",
|
"theme.bar.buttons.bluetooth.background": "#242438",
|
||||||
"theme.bar.buttons.network.icon": "#242438",
|
"theme.bar.buttons.network.icon": "#242438",
|
||||||
"theme.bar.buttons.network.text": "#cba6f7",
|
"theme.bar.buttons.network.text": "#cba6f7",
|
||||||
"theme.bar.buttons.network.hover": "#45475a",
|
"theme.bar.buttons.network.hover": "#45475a",
|
||||||
"theme.bar.buttons.network.background": "#242438",
|
"theme.bar.buttons.network.background": "#242438",
|
||||||
"theme.bar.buttons.volume.icon": "#242438",
|
"theme.bar.buttons.volume.icon": "#242438",
|
||||||
"theme.bar.buttons.volume.text": "#eba0ac",
|
"theme.bar.buttons.volume.text": "#eba0ac",
|
||||||
"theme.bar.buttons.volume.hover": "#45475a",
|
"theme.bar.buttons.volume.hover": "#45475a",
|
||||||
"theme.bar.buttons.volume.background": "#242438",
|
"theme.bar.buttons.volume.background": "#242438",
|
||||||
"theme.bar.buttons.media.hover": "#45475a",
|
"theme.bar.buttons.media.hover": "#45475a",
|
||||||
"theme.bar.buttons.windowtitle.icon": "#1e1e2e",
|
"theme.bar.buttons.windowtitle.icon": "#1e1e2e",
|
||||||
"theme.bar.buttons.windowtitle.text": "#f5c2e7",
|
"theme.bar.buttons.windowtitle.text": "#f5c2e7",
|
||||||
"theme.bar.buttons.windowtitle.hover": "#45475a",
|
"theme.bar.buttons.windowtitle.hover": "#45475a",
|
||||||
"theme.bar.buttons.windowtitle.background": "#242438",
|
"theme.bar.buttons.windowtitle.background": "#242438",
|
||||||
"theme.bar.buttons.workspaces.numbered_active_text_color": "#181825",
|
"theme.bar.buttons.workspaces.numbered_active_text_color": "#181825",
|
||||||
"theme.bar.buttons.workspaces.active": "#f5c2e7",
|
"theme.bar.buttons.workspaces.active": "#f5c2e7",
|
||||||
"theme.bar.buttons.workspaces.occupied": "#f2cdcd",
|
"theme.bar.buttons.workspaces.occupied": "#f2cdcd",
|
||||||
"theme.bar.buttons.workspaces.available": "#89dceb",
|
"theme.bar.buttons.workspaces.available": "#89dceb",
|
||||||
"theme.bar.buttons.workspaces.hover": "#f5c2e7",
|
"theme.bar.buttons.workspaces.hover": "#f5c2e7",
|
||||||
"theme.bar.buttons.workspaces.background": "#242438",
|
"theme.bar.buttons.workspaces.background": "#242438",
|
||||||
"theme.bar.buttons.dashboard.icon": "#1e1e2e",
|
"theme.bar.buttons.dashboard.icon": "#1e1e2e",
|
||||||
"theme.bar.buttons.dashboard.hover": "#45475a",
|
"theme.bar.buttons.dashboard.hover": "#45475a",
|
||||||
"theme.bar.buttons.dashboard.background": "#f9e2af",
|
"theme.bar.buttons.dashboard.background": "#f9e2af",
|
||||||
"theme.osd.label": "#b4beff",
|
"theme.osd.label": "#b4beff",
|
||||||
"theme.osd.icon": "#11111b",
|
"theme.osd.icon": "#11111b",
|
||||||
"theme.osd.bar_overflow_color": "#f38ba7",
|
"theme.osd.bar_overflow_color": "#f38ba7",
|
||||||
"theme.osd.bar_empty_color": "#313244",
|
"theme.osd.bar_empty_color": "#313244",
|
||||||
"theme.osd.bar_color": "#b4beff",
|
"theme.osd.bar_color": "#b4beff",
|
||||||
"theme.osd.icon_container": "#b4beff",
|
"theme.osd.icon_container": "#b4beff",
|
||||||
"theme.osd.bar_container": "#11111b",
|
"theme.osd.bar_container": "#11111b",
|
||||||
"theme.notification.close_button.label": "#11111b",
|
"theme.notification.close_button.label": "#11111b",
|
||||||
"theme.notification.close_button.background": "#f38ba7",
|
"theme.notification.close_button.background": "#f38ba7",
|
||||||
"theme.notification.labelicon": "#b4befe",
|
"theme.notification.labelicon": "#b4befe",
|
||||||
"theme.notification.text": "#cdd6f4",
|
"theme.notification.text": "#cdd6f4",
|
||||||
"theme.notification.time": "#7f849b",
|
"theme.notification.time": "#7f849b",
|
||||||
"theme.notification.border": "#313243",
|
"theme.notification.border": "#313243",
|
||||||
"theme.notification.label": "#b4befe",
|
"theme.notification.label": "#b4befe",
|
||||||
"theme.notification.actions.text": "#181825",
|
"theme.notification.actions.text": "#181825",
|
||||||
"theme.notification.actions.background": "#b4befd",
|
"theme.notification.actions.background": "#b4befd",
|
||||||
"theme.notification.background": "#181826",
|
"theme.notification.background": "#181826",
|
||||||
"theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#181825",
|
"theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#181825",
|
||||||
"theme.bar.buttons.workspaces.numbered_active_underline_color": "#f5c2e7",
|
"theme.bar.buttons.workspaces.numbered_active_underline_color": "#f5c2e7",
|
||||||
"theme.bar.menus.menu.media.card.color": "#1e1e2e",
|
"theme.bar.menus.menu.media.card.color": "#1e1e2e",
|
||||||
"theme.bar.menus.check_radio_button.background": "#45475a",
|
"theme.bar.menus.check_radio_button.background": "#45475a",
|
||||||
"theme.bar.menus.check_radio_button.active": "#b4beff",
|
"theme.bar.menus.check_radio_button.active": "#b4beff",
|
||||||
"theme.bar.buttons.style": "split",
|
"theme.bar.buttons.style": "split",
|
||||||
"theme.bar.buttons.icon_background": "#242438",
|
"theme.bar.buttons.icon_background": "#242438",
|
||||||
"theme.bar.buttons.volume.icon_background": "#eba0ac",
|
"theme.bar.buttons.volume.icon_background": "#eba0ac",
|
||||||
"theme.bar.buttons.network.icon_background": "#caa6f7",
|
"theme.bar.buttons.network.icon_background": "#caa6f7",
|
||||||
"theme.bar.buttons.bluetooth.icon_background": "#89dbeb",
|
"theme.bar.buttons.bluetooth.icon_background": "#89dbeb",
|
||||||
"theme.bar.buttons.windowtitle.icon_background": "#f5c2e7",
|
"theme.bar.buttons.windowtitle.icon_background": "#f5c2e7",
|
||||||
"theme.bar.buttons.media.icon_background": "#b4befe",
|
"theme.bar.buttons.media.icon_background": "#b4befe",
|
||||||
"theme.bar.buttons.notifications.icon_background": "#b4befe",
|
"theme.bar.buttons.notifications.icon_background": "#b4befe",
|
||||||
"theme.bar.buttons.battery.icon_background": "#f9e2af",
|
"theme.bar.buttons.battery.icon_background": "#f9e2af",
|
||||||
"theme.bar.buttons.clock.icon_background": "#f5c2e7"
|
"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"
|
||||||
}
|
}
|
||||||
@@ -262,12 +262,8 @@
|
|||||||
"theme.bar.menus.check_radio_button.background": "#000000",
|
"theme.bar.menus.check_radio_button.background": "#000000",
|
||||||
"theme.bar.menus.check_radio_button.active": "#ffffff",
|
"theme.bar.menus.check_radio_button.active": "#ffffff",
|
||||||
"theme.bar.buttons.style": "default",
|
"theme.bar.buttons.style": "default",
|
||||||
"theme.bar.buttons.icon_background": "#242438",
|
"theme.bar.menus.menu.notifications.pager.button": "#FFD700",
|
||||||
"theme.bar.buttons.volume.icon_background": "#ee999f",
|
"theme.bar.menus.menu.notifications.scrollbar.color": "#FFD700",
|
||||||
"theme.bar.buttons.network.icon_background": "#c5a0f6",
|
"theme.bar.menus.menu.notifications.pager.label": "#9399B2",
|
||||||
"theme.bar.buttons.bluetooth.icon_background": "#91d7e3",
|
"theme.bar.menus.menu.notifications.pager.background": "#0A0A0A"
|
||||||
"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"
|
|
||||||
}
|
}
|
||||||
@@ -270,5 +270,9 @@
|
|||||||
"theme.bar.buttons.media.icon_background": "#00ffff",
|
"theme.bar.buttons.media.icon_background": "#00ffff",
|
||||||
"theme.bar.buttons.notifications.icon_background": "#f7d04b",
|
"theme.bar.buttons.notifications.icon_background": "#f7d04b",
|
||||||
"theme.bar.buttons.battery.icon_background": "#f7d04b",
|
"theme.bar.buttons.battery.icon_background": "#f7d04b",
|
||||||
"theme.bar.buttons.clock.icon_background": "#5bafff"
|
"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"
|
||||||
}
|
}
|
||||||
@@ -1,273 +1,269 @@
|
|||||||
{
|
{
|
||||||
"theme.bar.menus.background": "#6272a4",
|
"theme.bar.menus.background": "#6272a4",
|
||||||
"theme.bar.background": "#282a36",
|
"theme.bar.background": "#282a36",
|
||||||
"theme.bar.buttons.media.icon": "#bd93f9",
|
"theme.bar.buttons.media.icon": "#bd93f9",
|
||||||
"theme.bar.buttons.media.text": "#bd93f9",
|
"theme.bar.buttons.media.text": "#bd93f9",
|
||||||
"theme.bar.buttons.icon": "#bd93f9",
|
"theme.bar.buttons.icon": "#bd93f9",
|
||||||
"theme.bar.buttons.text": "#bd93f9",
|
"theme.bar.buttons.text": "#bd93f9",
|
||||||
"theme.bar.buttons.hover": "#44475a",
|
"theme.bar.buttons.hover": "#44475a",
|
||||||
"theme.bar.buttons.background": "#282936",
|
"theme.bar.buttons.background": "#282936",
|
||||||
"theme.bar.menus.text": "#f8f8f2",
|
"theme.bar.menus.text": "#f8f8f2",
|
||||||
"theme.bar.menus.border.color": "#44475a",
|
"theme.bar.menus.border.color": "#44475a",
|
||||||
"theme.bar.buttons.media.background": "#44475a",
|
"theme.bar.buttons.media.background": "#44475a",
|
||||||
"theme.bar.menus.menu.volume.text": "#f8f8f2",
|
"theme.bar.menus.menu.volume.text": "#f8f8f2",
|
||||||
"theme.bar.menus.menu.volume.card.color": "#44475a",
|
"theme.bar.menus.menu.volume.card.color": "#44475a",
|
||||||
"theme.bar.menus.menu.volume.label.color": "#ffb86c",
|
"theme.bar.menus.menu.volume.label.color": "#ffb86c",
|
||||||
"theme.bar.menus.popover.text": "#bd93f9",
|
"theme.bar.menus.popover.text": "#bd93f9",
|
||||||
"theme.bar.menus.popover.background": "#282a36",
|
"theme.bar.menus.popover.background": "#282a36",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.shutdown": "#ff5555",
|
"theme.bar.menus.menu.dashboard.powermenu.shutdown": "#ff5555",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#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.confirm": "#50fa7b",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#282a36",
|
"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.body": "#f8f8f2",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#bd93f9",
|
"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.border": "#44475a",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#282a36",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#282a36",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#44475a",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#44475a",
|
||||||
"theme.bar.menus.menu.notifications.switch.puck": "#44475a",
|
"theme.bar.menus.menu.notifications.switch.puck": "#44475a",
|
||||||
"theme.bar.menus.menu.notifications.switch.disabled": "#44475a",
|
"theme.bar.menus.menu.notifications.switch.disabled": "#44475a",
|
||||||
"theme.bar.menus.menu.notifications.switch.enabled": "#bd93f9",
|
"theme.bar.menus.menu.notifications.switch.enabled": "#bd93f9",
|
||||||
"theme.bar.menus.menu.notifications.clear": "#bd93f9",
|
"theme.bar.menus.menu.notifications.clear": "#bd93f9",
|
||||||
"theme.bar.menus.menu.notifications.switch_divider": "#44475a",
|
"theme.bar.menus.menu.notifications.switch_divider": "#44475a",
|
||||||
"theme.bar.menus.menu.notifications.border": "#44475a",
|
"theme.bar.menus.menu.notifications.border": "#44475a",
|
||||||
"theme.bar.menus.menu.notifications.card": "#44475a",
|
"theme.bar.menus.menu.notifications.card": "#44475a",
|
||||||
"theme.bar.menus.menu.notifications.background": "#282a36",
|
"theme.bar.menus.menu.notifications.background": "#282a36",
|
||||||
"theme.bar.menus.menu.notifications.no_notifications_label": "#44475a",
|
"theme.bar.menus.menu.notifications.no_notifications_label": "#44475a",
|
||||||
"theme.bar.menus.menu.notifications.label": "#bd93f9",
|
"theme.bar.menus.menu.notifications.label": "#bd93f9",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.disk.label": "#ff79c6",
|
"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.bar": "#ff79c6",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.disk.icon": "#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.label": "#50fa7b",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#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.gpu.icon": "#50fa7b",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.ram.label": "#f1fa8c",
|
"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.bar": "#f1fa8c",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.ram.icon": "#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.label": "#ffb86c",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#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.cpu.icon": "#ffb86c",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.bar_background": "#6272a4",
|
"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.bottom.color": "#ffb86c",
|
||||||
"theme.bar.menus.menu.dashboard.directories.right.middle.color": "#bd93f9",
|
"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.right.top.color": "#8be9fd",
|
||||||
"theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#ff5555",
|
"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.middle.color": "#f1fa8c",
|
||||||
"theme.bar.menus.menu.dashboard.directories.left.top.color": "#ff79c6",
|
"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.text": "#282a36",
|
||||||
"theme.bar.menus.menu.dashboard.controls.input.background": "#ff79c6",
|
"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.text": "#282a36",
|
||||||
"theme.bar.menus.menu.dashboard.controls.volume.background": "#ffb86c",
|
"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.text": "#282a36",
|
||||||
"theme.bar.menus.menu.dashboard.controls.notifications.background": "#f1fa8c",
|
"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.text": "#282a36",
|
||||||
"theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#8be9fd",
|
"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.text": "#282a36",
|
||||||
"theme.bar.menus.menu.dashboard.controls.wifi.background": "#bd93f9",
|
"theme.bar.menus.menu.dashboard.controls.wifi.background": "#bd93f9",
|
||||||
"theme.bar.menus.menu.dashboard.controls.disabled": "#44475a",
|
"theme.bar.menus.menu.dashboard.controls.disabled": "#44475a",
|
||||||
"theme.bar.menus.menu.dashboard.shortcuts.recording": "#50fa7b",
|
"theme.bar.menus.menu.dashboard.shortcuts.recording": "#50fa7b",
|
||||||
"theme.bar.menus.menu.dashboard.shortcuts.text": "#282a36",
|
"theme.bar.menus.menu.dashboard.shortcuts.text": "#282a36",
|
||||||
"theme.bar.menus.menu.dashboard.shortcuts.background": "#bd93f9",
|
"theme.bar.menus.menu.dashboard.shortcuts.background": "#bd93f9",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.sleep": "#8be9fd",
|
"theme.bar.menus.menu.dashboard.powermenu.sleep": "#8be9fd",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.logout": "#50fa7b",
|
"theme.bar.menus.menu.dashboard.powermenu.logout": "#50fa7b",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.restart": "#ffb86c",
|
"theme.bar.menus.menu.dashboard.powermenu.restart": "#ffb86c",
|
||||||
"theme.bar.menus.menu.dashboard.profile.name": "#ff79c6",
|
"theme.bar.menus.menu.dashboard.profile.name": "#ff79c6",
|
||||||
"theme.bar.menus.menu.dashboard.border.color": "#44475a",
|
"theme.bar.menus.menu.dashboard.border.color": "#44475a",
|
||||||
"theme.bar.menus.menu.dashboard.background.color": "#282a36",
|
"theme.bar.menus.menu.dashboard.background.color": "#282a36",
|
||||||
"theme.bar.menus.menu.dashboard.card.color": "#44475a",
|
"theme.bar.menus.menu.dashboard.card.color": "#44475a",
|
||||||
"theme.bar.menus.menu.clock.weather.hourly.temperature": "#ff79c6",
|
"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.icon": "#ff79c6",
|
||||||
"theme.bar.menus.menu.clock.weather.hourly.time": "#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.extremelycold": "#8be9fd",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.cold": "#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.moderate": "#bd93f9",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.hot": "#ffb86c",
|
"theme.bar.menus.menu.clock.weather.thermometer.hot": "#ffb86c",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#ff5555",
|
"theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#ff5555",
|
||||||
"theme.bar.menus.menu.clock.weather.stats": "#ff79c6",
|
"theme.bar.menus.menu.clock.weather.stats": "#ff79c6",
|
||||||
"theme.bar.menus.menu.clock.weather.status": "#8be9fd",
|
"theme.bar.menus.menu.clock.weather.status": "#8be9fd",
|
||||||
"theme.bar.menus.menu.clock.weather.temperature": "#f8f8f2",
|
"theme.bar.menus.menu.clock.weather.temperature": "#f8f8f2",
|
||||||
"theme.bar.menus.menu.clock.weather.icon": "#ff79c6",
|
"theme.bar.menus.menu.clock.weather.icon": "#ff79c6",
|
||||||
"theme.bar.menus.menu.clock.calendar.contextdays": "#44475a",
|
"theme.bar.menus.menu.clock.calendar.contextdays": "#44475a",
|
||||||
"theme.bar.menus.menu.clock.calendar.days": "#f8f8f2",
|
"theme.bar.menus.menu.clock.calendar.days": "#f8f8f2",
|
||||||
"theme.bar.menus.menu.clock.calendar.currentday": "#ff79c6",
|
"theme.bar.menus.menu.clock.calendar.currentday": "#ff79c6",
|
||||||
"theme.bar.menus.menu.clock.calendar.paginator": "#ff79c6",
|
"theme.bar.menus.menu.clock.calendar.paginator": "#ff79c6",
|
||||||
"theme.bar.menus.menu.clock.calendar.weekdays": "#ff79c6",
|
"theme.bar.menus.menu.clock.calendar.weekdays": "#ff79c6",
|
||||||
"theme.bar.menus.menu.clock.calendar.yearmonth": "#8be9fd",
|
"theme.bar.menus.menu.clock.calendar.yearmonth": "#8be9fd",
|
||||||
"theme.bar.menus.menu.clock.time.timeperiod": "#8be9fd",
|
"theme.bar.menus.menu.clock.time.timeperiod": "#8be9fd",
|
||||||
"theme.bar.menus.menu.clock.time.time": "#ff79c6",
|
"theme.bar.menus.menu.clock.time.time": "#ff79c6",
|
||||||
"theme.bar.menus.menu.clock.text": "#f8f8f2",
|
"theme.bar.menus.menu.clock.text": "#f8f8f2",
|
||||||
"theme.bar.menus.menu.clock.border.color": "#44475a",
|
"theme.bar.menus.menu.clock.border.color": "#44475a",
|
||||||
"theme.bar.menus.menu.clock.background.color": "#282a36",
|
"theme.bar.menus.menu.clock.background.color": "#282a36",
|
||||||
"theme.bar.menus.menu.clock.card.color": "#44475a",
|
"theme.bar.menus.menu.clock.card.color": "#44475a",
|
||||||
"theme.bar.menus.menu.battery.slider.puck": "#282936",
|
"theme.bar.menus.menu.battery.slider.puck": "#282936",
|
||||||
"theme.bar.menus.menu.battery.slider.backgroundhover": "#6272a4",
|
"theme.bar.menus.menu.battery.slider.backgroundhover": "#6272a4",
|
||||||
"theme.bar.menus.menu.battery.slider.background": "#6272a4",
|
"theme.bar.menus.menu.battery.slider.background": "#6272a4",
|
||||||
"theme.bar.menus.menu.battery.slider.primary": "#f1fa8c",
|
"theme.bar.menus.menu.battery.slider.primary": "#f1fa8c",
|
||||||
"theme.bar.menus.menu.battery.icons.active": "#f1fa8c",
|
"theme.bar.menus.menu.battery.icons.active": "#f1fa8c",
|
||||||
"theme.bar.menus.menu.battery.icons.passive": "#6272a4",
|
"theme.bar.menus.menu.battery.icons.passive": "#6272a4",
|
||||||
"theme.bar.menus.menu.battery.listitems.active": "#f1fa8c",
|
"theme.bar.menus.menu.battery.listitems.active": "#f1fa8c",
|
||||||
"theme.bar.menus.menu.battery.listitems.passive": "#f8f8f2",
|
"theme.bar.menus.menu.battery.listitems.passive": "#f8f8f2",
|
||||||
"theme.bar.menus.menu.battery.text": "#f8f8f2",
|
"theme.bar.menus.menu.battery.text": "#f8f8f2",
|
||||||
"theme.bar.menus.menu.battery.label.color": "#f1fa8c",
|
"theme.bar.menus.menu.battery.label.color": "#f1fa8c",
|
||||||
"theme.bar.menus.menu.battery.border.color": "#44475a",
|
"theme.bar.menus.menu.battery.border.color": "#44475a",
|
||||||
"theme.bar.menus.menu.battery.background.color": "#282a36",
|
"theme.bar.menus.menu.battery.background.color": "#282a36",
|
||||||
"theme.bar.menus.menu.battery.card.color": "#44475a",
|
"theme.bar.menus.menu.battery.card.color": "#44475a",
|
||||||
"theme.bar.menus.menu.systray.dropdownmenu.divider": "#44475a",
|
"theme.bar.menus.menu.systray.dropdownmenu.divider": "#44475a",
|
||||||
"theme.bar.menus.menu.systray.dropdownmenu.text": "#f8f8f2",
|
"theme.bar.menus.menu.systray.dropdownmenu.text": "#f8f8f2",
|
||||||
"theme.bar.menus.menu.systray.dropdownmenu.background": "#282a36",
|
"theme.bar.menus.menu.systray.dropdownmenu.background": "#282a36",
|
||||||
"theme.bar.menus.menu.bluetooth.iconbutton.active": "#8be9fd",
|
"theme.bar.menus.menu.bluetooth.iconbutton.active": "#8be9fd",
|
||||||
"theme.bar.menus.menu.bluetooth.iconbutton.passive": "#f8f8f2",
|
"theme.bar.menus.menu.bluetooth.iconbutton.passive": "#f8f8f2",
|
||||||
"theme.bar.menus.menu.bluetooth.icons.active": "#8be9fd",
|
"theme.bar.menus.menu.bluetooth.icons.active": "#8be9fd",
|
||||||
"theme.bar.menus.menu.bluetooth.icons.passive": "#6272a4",
|
"theme.bar.menus.menu.bluetooth.icons.passive": "#6272a4",
|
||||||
"theme.bar.menus.menu.bluetooth.listitems.active": "#8be9fd",
|
"theme.bar.menus.menu.bluetooth.listitems.active": "#8be9fd",
|
||||||
"theme.bar.menus.menu.bluetooth.listitems.passive": "#f8f8f2",
|
"theme.bar.menus.menu.bluetooth.listitems.passive": "#f8f8f2",
|
||||||
"theme.bar.menus.menu.bluetooth.switch.puck": "#44475a",
|
"theme.bar.menus.menu.bluetooth.switch.puck": "#44475a",
|
||||||
"theme.bar.menus.menu.bluetooth.switch.disabled": "#44475a",
|
"theme.bar.menus.menu.bluetooth.switch.disabled": "#44475a",
|
||||||
"theme.bar.menus.menu.bluetooth.switch.enabled": "#8be9fd",
|
"theme.bar.menus.menu.bluetooth.switch.enabled": "#8be9fd",
|
||||||
"theme.bar.menus.menu.bluetooth.switch_divider": "#44475a",
|
"theme.bar.menus.menu.bluetooth.switch_divider": "#44475a",
|
||||||
"theme.bar.menus.menu.bluetooth.status": "#44475a",
|
"theme.bar.menus.menu.bluetooth.status": "#44475a",
|
||||||
"theme.bar.menus.menu.bluetooth.text": "#f8f8f2",
|
"theme.bar.menus.menu.bluetooth.text": "#f8f8f2",
|
||||||
"theme.bar.menus.menu.bluetooth.label.color": "#8be9fd",
|
"theme.bar.menus.menu.bluetooth.label.color": "#8be9fd",
|
||||||
"theme.bar.menus.menu.bluetooth.border.color": "#44475a",
|
"theme.bar.menus.menu.bluetooth.border.color": "#44475a",
|
||||||
"theme.bar.menus.menu.bluetooth.background.color": "#282a36",
|
"theme.bar.menus.menu.bluetooth.background.color": "#282a36",
|
||||||
"theme.bar.menus.menu.bluetooth.card.color": "#44475a",
|
"theme.bar.menus.menu.bluetooth.card.color": "#44475a",
|
||||||
"theme.bar.menus.menu.network.iconbuttons.active": "#bd93f9",
|
"theme.bar.menus.menu.network.iconbuttons.active": "#bd93f9",
|
||||||
"theme.bar.menus.menu.network.iconbuttons.passive": "#f8f8f2",
|
"theme.bar.menus.menu.network.iconbuttons.passive": "#f8f8f2",
|
||||||
"theme.bar.menus.menu.network.icons.active": "#bd93f9",
|
"theme.bar.menus.menu.network.icons.active": "#bd93f9",
|
||||||
"theme.bar.menus.menu.network.icons.passive": "#6272a4",
|
"theme.bar.menus.menu.network.icons.passive": "#6272a4",
|
||||||
"theme.bar.menus.menu.network.listitems.active": "#bd93f9",
|
"theme.bar.menus.menu.network.listitems.active": "#bd93f9",
|
||||||
"theme.bar.menus.menu.network.listitems.passive": "#f8f8f2",
|
"theme.bar.menus.menu.network.listitems.passive": "#f8f8f2",
|
||||||
"theme.bar.menus.menu.network.status.color": "#44475a",
|
"theme.bar.menus.menu.network.status.color": "#44475a",
|
||||||
"theme.bar.menus.menu.network.text": "#f8f8f2",
|
"theme.bar.menus.menu.network.text": "#f8f8f2",
|
||||||
"theme.bar.menus.menu.network.label.color": "#bd93f9",
|
"theme.bar.menus.menu.network.label.color": "#bd93f9",
|
||||||
"theme.bar.menus.menu.network.border.color": "#44475a",
|
"theme.bar.menus.menu.network.border.color": "#44475a",
|
||||||
"theme.bar.menus.menu.network.background.color": "#282a36",
|
"theme.bar.menus.menu.network.background.color": "#282a36",
|
||||||
"theme.bar.menus.menu.network.card.color": "#44475a",
|
"theme.bar.menus.menu.network.card.color": "#44475a",
|
||||||
"theme.bar.menus.menu.volume.input_slider.puck": "#282936",
|
"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.backgroundhover": "#6272a4",
|
||||||
"theme.bar.menus.menu.volume.input_slider.background": "#6272a4",
|
"theme.bar.menus.menu.volume.input_slider.background": "#6272a4",
|
||||||
"theme.bar.menus.menu.volume.input_slider.primary": "#ffb86c",
|
"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.puck": "#282936",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#6272a4",
|
"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.background": "#6272a4",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.primary": "#ffb86c",
|
"theme.bar.menus.menu.volume.audio_slider.primary": "#ffb86c",
|
||||||
"theme.bar.menus.menu.volume.icons.active": "#ffb86c",
|
"theme.bar.menus.menu.volume.icons.active": "#ffb86c",
|
||||||
"theme.bar.menus.menu.volume.icons.passive": "#6272a4",
|
"theme.bar.menus.menu.volume.icons.passive": "#6272a4",
|
||||||
"theme.bar.menus.menu.volume.iconbutton.active": "#ffb86c",
|
"theme.bar.menus.menu.volume.iconbutton.active": "#ffb86c",
|
||||||
"theme.bar.menus.menu.volume.iconbutton.passive": "#f8f8f2",
|
"theme.bar.menus.menu.volume.iconbutton.passive": "#f8f8f2",
|
||||||
"theme.bar.menus.menu.volume.listitems.active": "#ffb86c",
|
"theme.bar.menus.menu.volume.listitems.active": "#ffb86c",
|
||||||
"theme.bar.menus.menu.volume.listitems.passive": "#f8f8f2",
|
"theme.bar.menus.menu.volume.listitems.passive": "#f8f8f2",
|
||||||
"theme.bar.menus.menu.volume.border.color": "#44475a",
|
"theme.bar.menus.menu.volume.border.color": "#44475a",
|
||||||
"theme.bar.menus.menu.volume.background.color": "#282a36",
|
"theme.bar.menus.menu.volume.background.color": "#282a36",
|
||||||
"theme.bar.menus.menu.media.slider.puck": "#282936",
|
"theme.bar.menus.menu.media.slider.puck": "#282936",
|
||||||
"theme.bar.menus.menu.media.slider.backgroundhover": "#6272a4",
|
"theme.bar.menus.menu.media.slider.backgroundhover": "#6272a4",
|
||||||
"theme.bar.menus.menu.media.slider.background": "#6272a4",
|
"theme.bar.menus.menu.media.slider.background": "#6272a4",
|
||||||
"theme.bar.menus.menu.media.slider.primary": "#ff79c6",
|
"theme.bar.menus.menu.media.slider.primary": "#ff79c6",
|
||||||
"theme.bar.menus.menu.media.buttons.text": "#282a36",
|
"theme.bar.menus.menu.media.buttons.text": "#282a36",
|
||||||
"theme.bar.menus.menu.media.buttons.background": "#bd93f9",
|
"theme.bar.menus.menu.media.buttons.background": "#bd93f9",
|
||||||
"theme.bar.menus.menu.media.buttons.enabled": "#8be9fd",
|
"theme.bar.menus.menu.media.buttons.enabled": "#8be9fd",
|
||||||
"theme.bar.menus.menu.media.buttons.inactive": "#44475a",
|
"theme.bar.menus.menu.media.buttons.inactive": "#44475a",
|
||||||
"theme.bar.menus.menu.media.border.color": "#44475a",
|
"theme.bar.menus.menu.media.border.color": "#44475a",
|
||||||
"theme.bar.menus.menu.media.background.color": "#282a36",
|
"theme.bar.menus.menu.media.background.color": "#282a36",
|
||||||
"theme.bar.menus.menu.media.album": "#ff79c6",
|
"theme.bar.menus.menu.media.album": "#ff79c6",
|
||||||
"theme.bar.menus.menu.media.artist": "#8be9fd",
|
"theme.bar.menus.menu.media.artist": "#8be9fd",
|
||||||
"theme.bar.menus.menu.media.song": "#bd93f9",
|
"theme.bar.menus.menu.media.song": "#bd93f9",
|
||||||
"theme.bar.menus.tooltip.text": "#f8f8f2",
|
"theme.bar.menus.tooltip.text": "#f8f8f2",
|
||||||
"theme.bar.menus.tooltip.background": "#282a36",
|
"theme.bar.menus.tooltip.background": "#282a36",
|
||||||
"theme.bar.menus.dropdownmenu.divider": "#44475a",
|
"theme.bar.menus.dropdownmenu.divider": "#44475a",
|
||||||
"theme.bar.menus.dropdownmenu.text": "#f8f8f2",
|
"theme.bar.menus.dropdownmenu.text": "#f8f8f2",
|
||||||
"theme.bar.menus.dropdownmenu.background": "#282a36",
|
"theme.bar.menus.dropdownmenu.background": "#282a36",
|
||||||
"theme.bar.menus.slider.puck": "#44475a",
|
"theme.bar.menus.slider.puck": "#44475a",
|
||||||
"theme.bar.menus.slider.backgroundhover": "#44475a",
|
"theme.bar.menus.slider.backgroundhover": "#44475a",
|
||||||
"theme.bar.menus.slider.background": "#44475a",
|
"theme.bar.menus.slider.background": "#44475a",
|
||||||
"theme.bar.menus.slider.primary": "#bd93f9",
|
"theme.bar.menus.slider.primary": "#bd93f9",
|
||||||
"theme.bar.menus.progressbar.background": "#44475a",
|
"theme.bar.menus.progressbar.background": "#44475a",
|
||||||
"theme.bar.menus.progressbar.foreground": "#bd93f9",
|
"theme.bar.menus.progressbar.foreground": "#bd93f9",
|
||||||
"theme.bar.menus.iconbuttons.active": "#bd93f9",
|
"theme.bar.menus.iconbuttons.active": "#bd93f9",
|
||||||
"theme.bar.menus.iconbuttons.passive": "#f8f8f2",
|
"theme.bar.menus.iconbuttons.passive": "#f8f8f2",
|
||||||
"theme.bar.menus.buttons.text": "#282a36",
|
"theme.bar.menus.buttons.text": "#282a36",
|
||||||
"theme.bar.menus.buttons.disabled": "#44475a",
|
"theme.bar.menus.buttons.disabled": "#44475a",
|
||||||
"theme.bar.menus.buttons.active": "#ff79c6",
|
"theme.bar.menus.buttons.active": "#ff79c6",
|
||||||
"theme.bar.menus.buttons.default": "#bd93f9",
|
"theme.bar.menus.buttons.default": "#bd93f9",
|
||||||
"theme.bar.menus.switch.puck": "#44475a",
|
"theme.bar.menus.switch.puck": "#44475a",
|
||||||
"theme.bar.menus.switch.disabled": "#44475a",
|
"theme.bar.menus.switch.disabled": "#44475a",
|
||||||
"theme.bar.menus.switch.enabled": "#bd93f9",
|
"theme.bar.menus.switch.enabled": "#bd93f9",
|
||||||
"theme.bar.menus.icons.active": "#bd93f9",
|
"theme.bar.menus.icons.active": "#bd93f9",
|
||||||
"theme.bar.menus.icons.passive": "#44475a",
|
"theme.bar.menus.icons.passive": "#44475a",
|
||||||
"theme.bar.menus.listitems.active": "#bd93f9",
|
"theme.bar.menus.listitems.active": "#bd93f9",
|
||||||
"theme.bar.menus.listitems.passive": "#f8f8f2",
|
"theme.bar.menus.listitems.passive": "#f8f8f2",
|
||||||
"theme.bar.menus.label": "#bd93f9",
|
"theme.bar.menus.label": "#bd93f9",
|
||||||
"theme.bar.menus.feinttext": "#44475a",
|
"theme.bar.menus.feinttext": "#44475a",
|
||||||
"theme.bar.menus.dimtext": "#6272a4",
|
"theme.bar.menus.dimtext": "#6272a4",
|
||||||
"theme.bar.menus.cards": "#44475a",
|
"theme.bar.menus.cards": "#44475a",
|
||||||
"theme.bar.buttons.notifications.total": "#bd93f9",
|
"theme.bar.buttons.notifications.total": "#bd93f9",
|
||||||
"theme.bar.buttons.notifications.icon": "#bd93f9",
|
"theme.bar.buttons.notifications.icon": "#bd93f9",
|
||||||
"theme.bar.buttons.notifications.hover": "#6272a4",
|
"theme.bar.buttons.notifications.hover": "#6272a4",
|
||||||
"theme.bar.buttons.notifications.background": "#44475a",
|
"theme.bar.buttons.notifications.background": "#44475a",
|
||||||
"theme.bar.buttons.clock.icon": "#ff79c6",
|
"theme.bar.buttons.clock.icon": "#ff79c6",
|
||||||
"theme.bar.buttons.clock.text": "#ff79c6",
|
"theme.bar.buttons.clock.text": "#ff79c6",
|
||||||
"theme.bar.buttons.clock.hover": "#6272a4",
|
"theme.bar.buttons.clock.hover": "#6272a4",
|
||||||
"theme.bar.buttons.clock.background": "#44475a",
|
"theme.bar.buttons.clock.background": "#44475a",
|
||||||
"theme.bar.buttons.battery.icon": "#f1fa8c",
|
"theme.bar.buttons.battery.icon": "#f1fa8c",
|
||||||
"theme.bar.buttons.battery.text": "#f1fa8c",
|
"theme.bar.buttons.battery.text": "#f1fa8c",
|
||||||
"theme.bar.buttons.battery.hover": "#6272a4",
|
"theme.bar.buttons.battery.hover": "#6272a4",
|
||||||
"theme.bar.buttons.battery.background": "#44475a",
|
"theme.bar.buttons.battery.background": "#44475a",
|
||||||
"theme.bar.buttons.systray.hover": "#6272a4",
|
"theme.bar.buttons.systray.hover": "#6272a4",
|
||||||
"theme.bar.buttons.systray.background": "#44475a",
|
"theme.bar.buttons.systray.background": "#44475a",
|
||||||
"theme.bar.buttons.bluetooth.icon": "#8be9fd",
|
"theme.bar.buttons.bluetooth.icon": "#8be9fd",
|
||||||
"theme.bar.buttons.bluetooth.text": "#8be9fd",
|
"theme.bar.buttons.bluetooth.text": "#8be9fd",
|
||||||
"theme.bar.buttons.bluetooth.hover": "#6272a4",
|
"theme.bar.buttons.bluetooth.hover": "#6272a4",
|
||||||
"theme.bar.buttons.bluetooth.background": "#44475a",
|
"theme.bar.buttons.bluetooth.background": "#44475a",
|
||||||
"theme.bar.buttons.network.icon": "#bd93f9",
|
"theme.bar.buttons.network.icon": "#bd93f9",
|
||||||
"theme.bar.buttons.network.text": "#bd93f9",
|
"theme.bar.buttons.network.text": "#bd93f9",
|
||||||
"theme.bar.buttons.network.hover": "#6272a4",
|
"theme.bar.buttons.network.hover": "#6272a4",
|
||||||
"theme.bar.buttons.network.background": "#44475a",
|
"theme.bar.buttons.network.background": "#44475a",
|
||||||
"theme.bar.buttons.volume.icon": "#ffb86c",
|
"theme.bar.buttons.volume.icon": "#ffb86c",
|
||||||
"theme.bar.buttons.volume.text": "#ffb86c",
|
"theme.bar.buttons.volume.text": "#ffb86c",
|
||||||
"theme.bar.buttons.volume.hover": "#6272a4",
|
"theme.bar.buttons.volume.hover": "#6272a4",
|
||||||
"theme.bar.buttons.volume.background": "#44475a",
|
"theme.bar.buttons.volume.background": "#44475a",
|
||||||
"theme.bar.buttons.media.hover": "#6272a4",
|
"theme.bar.buttons.media.hover": "#6272a4",
|
||||||
"theme.bar.buttons.windowtitle.icon": "#f1fa8c",
|
"theme.bar.buttons.windowtitle.icon": "#f1fa8c",
|
||||||
"theme.bar.buttons.windowtitle.text": "#f1fa8c",
|
"theme.bar.buttons.windowtitle.text": "#f1fa8c",
|
||||||
"theme.bar.buttons.windowtitle.hover": "#6272a4",
|
"theme.bar.buttons.windowtitle.hover": "#6272a4",
|
||||||
"theme.bar.buttons.windowtitle.background": "#44475a",
|
"theme.bar.buttons.windowtitle.background": "#44475a",
|
||||||
"theme.bar.buttons.workspaces.numbered_active_text_color": "#282a36",
|
"theme.bar.buttons.workspaces.numbered_active_text_color": "#282a36",
|
||||||
"theme.bar.buttons.workspaces.active": "#ff79c6",
|
"theme.bar.buttons.workspaces.active": "#ff79c6",
|
||||||
"theme.bar.buttons.workspaces.occupied": "#ffb86c",
|
"theme.bar.buttons.workspaces.occupied": "#ffb86c",
|
||||||
"theme.bar.buttons.workspaces.available": "#8be9fd",
|
"theme.bar.buttons.workspaces.available": "#8be9fd",
|
||||||
"theme.bar.buttons.workspaces.hover": "#44475a",
|
"theme.bar.buttons.workspaces.hover": "#44475a",
|
||||||
"theme.bar.buttons.workspaces.background": "#44475a",
|
"theme.bar.buttons.workspaces.background": "#44475a",
|
||||||
"theme.bar.buttons.dashboard.icon": "#8be8fd",
|
"theme.bar.buttons.dashboard.icon": "#8be8fd",
|
||||||
"theme.bar.buttons.dashboard.hover": "#6272a4",
|
"theme.bar.buttons.dashboard.hover": "#6272a4",
|
||||||
"theme.bar.buttons.dashboard.background": "#44475a",
|
"theme.bar.buttons.dashboard.background": "#44475a",
|
||||||
"theme.osd.label": "#bd93f9",
|
"theme.osd.label": "#bd93f9",
|
||||||
"theme.osd.icon": "#282a36",
|
"theme.osd.icon": "#282a36",
|
||||||
"theme.osd.bar_overflow_color": "#ff5555",
|
"theme.osd.bar_overflow_color": "#ff5555",
|
||||||
"theme.osd.bar_empty_color": "#44475a",
|
"theme.osd.bar_empty_color": "#44475a",
|
||||||
"theme.osd.bar_color": "#bd93f9",
|
"theme.osd.bar_color": "#bd93f9",
|
||||||
"theme.osd.icon_container": "#bd93f9",
|
"theme.osd.icon_container": "#bd93f9",
|
||||||
"theme.osd.bar_container": "#282a36",
|
"theme.osd.bar_container": "#282a36",
|
||||||
"theme.notification.close_button.label": "#282a36",
|
"theme.notification.close_button.label": "#282a36",
|
||||||
"theme.notification.close_button.background": "#bd93f9",
|
"theme.notification.close_button.background": "#bd93f9",
|
||||||
"theme.notification.labelicon": "#bd93f9",
|
"theme.notification.labelicon": "#bd93f9",
|
||||||
"theme.notification.text": "#f8f8f2",
|
"theme.notification.text": "#f8f8f2",
|
||||||
"theme.notification.time": "#6272a4",
|
"theme.notification.time": "#6272a4",
|
||||||
"theme.notification.border": "#44475a",
|
"theme.notification.border": "#44475a",
|
||||||
"theme.notification.label": "#bd93f9",
|
"theme.notification.label": "#bd93f9",
|
||||||
"theme.notification.actions.text": "#282a36",
|
"theme.notification.actions.text": "#282a36",
|
||||||
"theme.notification.actions.background": "#bd93f9",
|
"theme.notification.actions.background": "#bd93f9",
|
||||||
"theme.notification.background": "#282a36",
|
"theme.notification.background": "#282a36",
|
||||||
"theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#21252b",
|
"theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#21252b",
|
||||||
"theme.bar.buttons.workspaces.numbered_active_underline_color": "#e23ee2",
|
"theme.bar.buttons.workspaces.numbered_active_underline_color": "#e23ee2",
|
||||||
"theme.bar.menus.menu.media.card.color": "#44475a",
|
"theme.bar.menus.menu.media.card.color": "#44475a",
|
||||||
"theme.bar.menus.check_radio_button.background": "#282936",
|
"theme.bar.menus.check_radio_button.background": "#282936",
|
||||||
"theme.bar.menus.check_radio_button.active": "#bd93f9",
|
"theme.bar.menus.check_radio_button.active": "#bd93f9",
|
||||||
"theme.bar.buttons.style": "default",
|
"theme.bar.buttons.style": "default",
|
||||||
"theme.bar.buttons.icon_background": "#242438",
|
"theme.bar.menus.menu.notifications.pager.button": "#bd93f9",
|
||||||
"theme.bar.buttons.volume.icon_background": "#ee999f",
|
"theme.bar.menus.menu.notifications.scrollbar.color": "#bd93f9",
|
||||||
"theme.bar.buttons.network.icon_background": "#c5a0f6",
|
"theme.bar.menus.menu.notifications.pager.label": "#6272a4",
|
||||||
"theme.bar.buttons.bluetooth.icon_background": "#91d7e3",
|
"theme.bar.menus.menu.notifications.pager.background": "#282936"
|
||||||
"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"
|
|
||||||
}
|
}
|
||||||
@@ -1,274 +1,278 @@
|
|||||||
{
|
{
|
||||||
"theme.bar.menus.background": "#6272a4",
|
"theme.bar.menus.background": "#6272a4",
|
||||||
"theme.bar.background": "#282a36",
|
"theme.bar.background": "#282a36",
|
||||||
"theme.bar.buttons.media.icon": "#44475a",
|
"theme.bar.buttons.media.icon": "#44475a",
|
||||||
"theme.bar.buttons.media.text": "#bd93f9",
|
"theme.bar.buttons.media.text": "#bd93f9",
|
||||||
"theme.bar.buttons.icon": "#bd93f9",
|
"theme.bar.buttons.icon": "#bd93f9",
|
||||||
"theme.bar.buttons.text": "#bd93f9",
|
"theme.bar.buttons.text": "#bd93f9",
|
||||||
"theme.bar.buttons.hover": "#44475a",
|
"theme.bar.buttons.hover": "#44475a",
|
||||||
"theme.bar.buttons.background": "#282936",
|
"theme.bar.buttons.background": "#282936",
|
||||||
"theme.bar.menus.text": "#f8f8f2",
|
"theme.bar.menus.text": "#f8f8f2",
|
||||||
"theme.bar.menus.border.color": "#44475a",
|
"theme.bar.menus.border.color": "#44475a",
|
||||||
"theme.bar.buttons.media.background": "#44475a",
|
"theme.bar.buttons.media.background": "#44475a",
|
||||||
"theme.bar.menus.menu.volume.text": "#f8f8f2",
|
"theme.bar.menus.menu.volume.text": "#f8f8f2",
|
||||||
"theme.bar.menus.menu.volume.card.color": "#44475a",
|
"theme.bar.menus.menu.volume.card.color": "#44475a",
|
||||||
"theme.bar.menus.menu.volume.label.color": "#ffb86c",
|
"theme.bar.menus.menu.volume.label.color": "#ffb86c",
|
||||||
"theme.bar.menus.popover.text": "#bd93f9",
|
"theme.bar.menus.popover.text": "#bd93f9",
|
||||||
"theme.bar.menus.popover.background": "#282a36",
|
"theme.bar.menus.popover.background": "#282a36",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.shutdown": "#ff5555",
|
"theme.bar.menus.menu.dashboard.powermenu.shutdown": "#ff5555",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#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.confirm": "#50fa7b",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#282a36",
|
"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.body": "#f8f8f2",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#bd93f9",
|
"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.border": "#44475a",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#282a36",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#282a36",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#44475a",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#44475a",
|
||||||
"theme.bar.menus.menu.notifications.switch.puck": "#44475a",
|
"theme.bar.menus.menu.notifications.switch.puck": "#44475a",
|
||||||
"theme.bar.menus.menu.notifications.switch.disabled": "#44475a",
|
"theme.bar.menus.menu.notifications.switch.disabled": "#44475a",
|
||||||
"theme.bar.menus.menu.notifications.switch.enabled": "#bd93f9",
|
"theme.bar.menus.menu.notifications.switch.enabled": "#bd93f9",
|
||||||
"theme.bar.menus.menu.notifications.clear": "#bd93f9",
|
"theme.bar.menus.menu.notifications.clear": "#bd93f9",
|
||||||
"theme.bar.menus.menu.notifications.switch_divider": "#44475a",
|
"theme.bar.menus.menu.notifications.switch_divider": "#44475a",
|
||||||
"theme.bar.menus.menu.notifications.border": "#44475a",
|
"theme.bar.menus.menu.notifications.border": "#44475a",
|
||||||
"theme.bar.menus.menu.notifications.card": "#44475a",
|
"theme.bar.menus.menu.notifications.card": "#44475a",
|
||||||
"theme.bar.menus.menu.notifications.background": "#282a36",
|
"theme.bar.menus.menu.notifications.background": "#282a36",
|
||||||
"theme.bar.menus.menu.notifications.no_notifications_label": "#44475a",
|
"theme.bar.menus.menu.notifications.no_notifications_label": "#44475a",
|
||||||
"theme.bar.menus.menu.notifications.label": "#bd93f9",
|
"theme.bar.menus.menu.notifications.label": "#bd93f9",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.disk.label": "#ff79c6",
|
"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.bar": "#ff79c6",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.disk.icon": "#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.label": "#50fa7b",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#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.gpu.icon": "#50fa7b",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.ram.label": "#f1fa8c",
|
"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.bar": "#f1fa8c",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.ram.icon": "#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.label": "#ffb86c",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#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.cpu.icon": "#ffb86c",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.bar_background": "#6272a4",
|
"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.bottom.color": "#ffb86c",
|
||||||
"theme.bar.menus.menu.dashboard.directories.right.middle.color": "#bd93f9",
|
"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.right.top.color": "#8be9fd",
|
||||||
"theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#ff5555",
|
"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.middle.color": "#f1fa8c",
|
||||||
"theme.bar.menus.menu.dashboard.directories.left.top.color": "#ff79c6",
|
"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.text": "#282a36",
|
||||||
"theme.bar.menus.menu.dashboard.controls.input.background": "#ff79c6",
|
"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.text": "#282a36",
|
||||||
"theme.bar.menus.menu.dashboard.controls.volume.background": "#ffb86c",
|
"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.text": "#282a36",
|
||||||
"theme.bar.menus.menu.dashboard.controls.notifications.background": "#f1fa8c",
|
"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.text": "#282a36",
|
||||||
"theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#8be9fd",
|
"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.text": "#282a36",
|
||||||
"theme.bar.menus.menu.dashboard.controls.wifi.background": "#bd93f9",
|
"theme.bar.menus.menu.dashboard.controls.wifi.background": "#bd93f9",
|
||||||
"theme.bar.menus.menu.dashboard.controls.disabled": "#44475a",
|
"theme.bar.menus.menu.dashboard.controls.disabled": "#44475a",
|
||||||
"theme.bar.menus.menu.dashboard.shortcuts.recording": "#50fa7b",
|
"theme.bar.menus.menu.dashboard.shortcuts.recording": "#50fa7b",
|
||||||
"theme.bar.menus.menu.dashboard.shortcuts.text": "#282a36",
|
"theme.bar.menus.menu.dashboard.shortcuts.text": "#282a36",
|
||||||
"theme.bar.menus.menu.dashboard.shortcuts.background": "#bd93f9",
|
"theme.bar.menus.menu.dashboard.shortcuts.background": "#bd93f9",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.sleep": "#8be9fd",
|
"theme.bar.menus.menu.dashboard.powermenu.sleep": "#8be9fd",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.logout": "#50fa7b",
|
"theme.bar.menus.menu.dashboard.powermenu.logout": "#50fa7b",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.restart": "#ffb86c",
|
"theme.bar.menus.menu.dashboard.powermenu.restart": "#ffb86c",
|
||||||
"theme.bar.menus.menu.dashboard.profile.name": "#ff79c6",
|
"theme.bar.menus.menu.dashboard.profile.name": "#ff79c6",
|
||||||
"theme.bar.menus.menu.dashboard.border.color": "#44475a",
|
"theme.bar.menus.menu.dashboard.border.color": "#44475a",
|
||||||
"theme.bar.menus.menu.dashboard.background.color": "#282a36",
|
"theme.bar.menus.menu.dashboard.background.color": "#282a36",
|
||||||
"theme.bar.menus.menu.dashboard.card.color": "#44475a",
|
"theme.bar.menus.menu.dashboard.card.color": "#44475a",
|
||||||
"theme.bar.menus.menu.clock.weather.hourly.temperature": "#ff79c6",
|
"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.icon": "#ff79c6",
|
||||||
"theme.bar.menus.menu.clock.weather.hourly.time": "#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.extremelycold": "#8be9fd",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.cold": "#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.moderate": "#bd93f9",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.hot": "#ffb86c",
|
"theme.bar.menus.menu.clock.weather.thermometer.hot": "#ffb86c",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#ff5555",
|
"theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#ff5555",
|
||||||
"theme.bar.menus.menu.clock.weather.stats": "#ff79c6",
|
"theme.bar.menus.menu.clock.weather.stats": "#ff79c6",
|
||||||
"theme.bar.menus.menu.clock.weather.status": "#8be9fd",
|
"theme.bar.menus.menu.clock.weather.status": "#8be9fd",
|
||||||
"theme.bar.menus.menu.clock.weather.temperature": "#f8f8f2",
|
"theme.bar.menus.menu.clock.weather.temperature": "#f8f8f2",
|
||||||
"theme.bar.menus.menu.clock.weather.icon": "#ff79c6",
|
"theme.bar.menus.menu.clock.weather.icon": "#ff79c6",
|
||||||
"theme.bar.menus.menu.clock.calendar.contextdays": "#44475a",
|
"theme.bar.menus.menu.clock.calendar.contextdays": "#44475a",
|
||||||
"theme.bar.menus.menu.clock.calendar.days": "#f8f8f2",
|
"theme.bar.menus.menu.clock.calendar.days": "#f8f8f2",
|
||||||
"theme.bar.menus.menu.clock.calendar.currentday": "#ff79c6",
|
"theme.bar.menus.menu.clock.calendar.currentday": "#ff79c6",
|
||||||
"theme.bar.menus.menu.clock.calendar.paginator": "#ff79c6",
|
"theme.bar.menus.menu.clock.calendar.paginator": "#ff79c6",
|
||||||
"theme.bar.menus.menu.clock.calendar.weekdays": "#ff79c6",
|
"theme.bar.menus.menu.clock.calendar.weekdays": "#ff79c6",
|
||||||
"theme.bar.menus.menu.clock.calendar.yearmonth": "#8be9fd",
|
"theme.bar.menus.menu.clock.calendar.yearmonth": "#8be9fd",
|
||||||
"theme.bar.menus.menu.clock.time.timeperiod": "#8be9fd",
|
"theme.bar.menus.menu.clock.time.timeperiod": "#8be9fd",
|
||||||
"theme.bar.menus.menu.clock.time.time": "#ff79c6",
|
"theme.bar.menus.menu.clock.time.time": "#ff79c6",
|
||||||
"theme.bar.menus.menu.clock.text": "#f8f8f2",
|
"theme.bar.menus.menu.clock.text": "#f8f8f2",
|
||||||
"theme.bar.menus.menu.clock.border.color": "#44475a",
|
"theme.bar.menus.menu.clock.border.color": "#44475a",
|
||||||
"theme.bar.menus.menu.clock.background.color": "#282a36",
|
"theme.bar.menus.menu.clock.background.color": "#282a36",
|
||||||
"theme.bar.menus.menu.clock.card.color": "#44475a",
|
"theme.bar.menus.menu.clock.card.color": "#44475a",
|
||||||
"theme.bar.menus.menu.battery.slider.puck": "#282936",
|
"theme.bar.menus.menu.battery.slider.puck": "#282936",
|
||||||
"theme.bar.menus.menu.battery.slider.backgroundhover": "#6272a4",
|
"theme.bar.menus.menu.battery.slider.backgroundhover": "#6272a4",
|
||||||
"theme.bar.menus.menu.battery.slider.background": "#6272a4",
|
"theme.bar.menus.menu.battery.slider.background": "#6272a4",
|
||||||
"theme.bar.menus.menu.battery.slider.primary": "#f1fa8c",
|
"theme.bar.menus.menu.battery.slider.primary": "#f1fa8c",
|
||||||
"theme.bar.menus.menu.battery.icons.active": "#f1fa8c",
|
"theme.bar.menus.menu.battery.icons.active": "#f1fa8c",
|
||||||
"theme.bar.menus.menu.battery.icons.passive": "#6272a4",
|
"theme.bar.menus.menu.battery.icons.passive": "#6272a4",
|
||||||
"theme.bar.menus.menu.battery.listitems.active": "#f1fa8c",
|
"theme.bar.menus.menu.battery.listitems.active": "#f1fa8c",
|
||||||
"theme.bar.menus.menu.battery.listitems.passive": "#f8f8f2",
|
"theme.bar.menus.menu.battery.listitems.passive": "#f8f8f2",
|
||||||
"theme.bar.menus.menu.battery.text": "#f8f8f2",
|
"theme.bar.menus.menu.battery.text": "#f8f8f2",
|
||||||
"theme.bar.menus.menu.battery.label.color": "#f1fa8c",
|
"theme.bar.menus.menu.battery.label.color": "#f1fa8c",
|
||||||
"theme.bar.menus.menu.battery.border.color": "#44475a",
|
"theme.bar.menus.menu.battery.border.color": "#44475a",
|
||||||
"theme.bar.menus.menu.battery.background.color": "#282a36",
|
"theme.bar.menus.menu.battery.background.color": "#282a36",
|
||||||
"theme.bar.menus.menu.battery.card.color": "#44475a",
|
"theme.bar.menus.menu.battery.card.color": "#44475a",
|
||||||
"theme.bar.menus.menu.systray.dropdownmenu.divider": "#44475a",
|
"theme.bar.menus.menu.systray.dropdownmenu.divider": "#44475a",
|
||||||
"theme.bar.menus.menu.systray.dropdownmenu.text": "#f8f8f2",
|
"theme.bar.menus.menu.systray.dropdownmenu.text": "#f8f8f2",
|
||||||
"theme.bar.menus.menu.systray.dropdownmenu.background": "#282a36",
|
"theme.bar.menus.menu.systray.dropdownmenu.background": "#282a36",
|
||||||
"theme.bar.menus.menu.bluetooth.iconbutton.active": "#8be9fd",
|
"theme.bar.menus.menu.bluetooth.iconbutton.active": "#8be9fd",
|
||||||
"theme.bar.menus.menu.bluetooth.iconbutton.passive": "#f8f8f2",
|
"theme.bar.menus.menu.bluetooth.iconbutton.passive": "#f8f8f2",
|
||||||
"theme.bar.menus.menu.bluetooth.icons.active": "#8be9fd",
|
"theme.bar.menus.menu.bluetooth.icons.active": "#8be9fd",
|
||||||
"theme.bar.menus.menu.bluetooth.icons.passive": "#6272a4",
|
"theme.bar.menus.menu.bluetooth.icons.passive": "#6272a4",
|
||||||
"theme.bar.menus.menu.bluetooth.listitems.active": "#8be9fd",
|
"theme.bar.menus.menu.bluetooth.listitems.active": "#8be9fd",
|
||||||
"theme.bar.menus.menu.bluetooth.listitems.passive": "#f8f8f2",
|
"theme.bar.menus.menu.bluetooth.listitems.passive": "#f8f8f2",
|
||||||
"theme.bar.menus.menu.bluetooth.switch.puck": "#44475a",
|
"theme.bar.menus.menu.bluetooth.switch.puck": "#44475a",
|
||||||
"theme.bar.menus.menu.bluetooth.switch.disabled": "#44475a",
|
"theme.bar.menus.menu.bluetooth.switch.disabled": "#44475a",
|
||||||
"theme.bar.menus.menu.bluetooth.switch.enabled": "#8be9fd",
|
"theme.bar.menus.menu.bluetooth.switch.enabled": "#8be9fd",
|
||||||
"theme.bar.menus.menu.bluetooth.switch_divider": "#44475a",
|
"theme.bar.menus.menu.bluetooth.switch_divider": "#44475a",
|
||||||
"theme.bar.menus.menu.bluetooth.status": "#44475a",
|
"theme.bar.menus.menu.bluetooth.status": "#44475a",
|
||||||
"theme.bar.menus.menu.bluetooth.text": "#f8f8f2",
|
"theme.bar.menus.menu.bluetooth.text": "#f8f8f2",
|
||||||
"theme.bar.menus.menu.bluetooth.label.color": "#8be9fd",
|
"theme.bar.menus.menu.bluetooth.label.color": "#8be9fd",
|
||||||
"theme.bar.menus.menu.bluetooth.border.color": "#44475a",
|
"theme.bar.menus.menu.bluetooth.border.color": "#44475a",
|
||||||
"theme.bar.menus.menu.bluetooth.background.color": "#282a36",
|
"theme.bar.menus.menu.bluetooth.background.color": "#282a36",
|
||||||
"theme.bar.menus.menu.bluetooth.card.color": "#44475a",
|
"theme.bar.menus.menu.bluetooth.card.color": "#44475a",
|
||||||
"theme.bar.menus.menu.network.iconbuttons.active": "#bd93f9",
|
"theme.bar.menus.menu.network.iconbuttons.active": "#bd93f9",
|
||||||
"theme.bar.menus.menu.network.iconbuttons.passive": "#f8f8f2",
|
"theme.bar.menus.menu.network.iconbuttons.passive": "#f8f8f2",
|
||||||
"theme.bar.menus.menu.network.icons.active": "#bd93f9",
|
"theme.bar.menus.menu.network.icons.active": "#bd93f9",
|
||||||
"theme.bar.menus.menu.network.icons.passive": "#6272a4",
|
"theme.bar.menus.menu.network.icons.passive": "#6272a4",
|
||||||
"theme.bar.menus.menu.network.listitems.active": "#bd93f9",
|
"theme.bar.menus.menu.network.listitems.active": "#bd93f9",
|
||||||
"theme.bar.menus.menu.network.listitems.passive": "#f8f8f2",
|
"theme.bar.menus.menu.network.listitems.passive": "#f8f8f2",
|
||||||
"theme.bar.menus.menu.network.status.color": "#44475a",
|
"theme.bar.menus.menu.network.status.color": "#44475a",
|
||||||
"theme.bar.menus.menu.network.text": "#f8f8f2",
|
"theme.bar.menus.menu.network.text": "#f8f8f2",
|
||||||
"theme.bar.menus.menu.network.label.color": "#bd93f9",
|
"theme.bar.menus.menu.network.label.color": "#bd93f9",
|
||||||
"theme.bar.menus.menu.network.border.color": "#44475a",
|
"theme.bar.menus.menu.network.border.color": "#44475a",
|
||||||
"theme.bar.menus.menu.network.background.color": "#282a36",
|
"theme.bar.menus.menu.network.background.color": "#282a36",
|
||||||
"theme.bar.menus.menu.network.card.color": "#44475a",
|
"theme.bar.menus.menu.network.card.color": "#44475a",
|
||||||
"theme.bar.menus.menu.volume.input_slider.puck": "#282936",
|
"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.backgroundhover": "#6272a4",
|
||||||
"theme.bar.menus.menu.volume.input_slider.background": "#6272a4",
|
"theme.bar.menus.menu.volume.input_slider.background": "#6272a4",
|
||||||
"theme.bar.menus.menu.volume.input_slider.primary": "#ffb86c",
|
"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.puck": "#282936",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#6272a4",
|
"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.background": "#6272a4",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.primary": "#ffb86c",
|
"theme.bar.menus.menu.volume.audio_slider.primary": "#ffb86c",
|
||||||
"theme.bar.menus.menu.volume.icons.active": "#ffb86c",
|
"theme.bar.menus.menu.volume.icons.active": "#ffb86c",
|
||||||
"theme.bar.menus.menu.volume.icons.passive": "#6272a4",
|
"theme.bar.menus.menu.volume.icons.passive": "#6272a4",
|
||||||
"theme.bar.menus.menu.volume.iconbutton.active": "#ffb86c",
|
"theme.bar.menus.menu.volume.iconbutton.active": "#ffb86c",
|
||||||
"theme.bar.menus.menu.volume.iconbutton.passive": "#f8f8f2",
|
"theme.bar.menus.menu.volume.iconbutton.passive": "#f8f8f2",
|
||||||
"theme.bar.menus.menu.volume.listitems.active": "#ffb86c",
|
"theme.bar.menus.menu.volume.listitems.active": "#ffb86c",
|
||||||
"theme.bar.menus.menu.volume.listitems.passive": "#f8f8f2",
|
"theme.bar.menus.menu.volume.listitems.passive": "#f8f8f2",
|
||||||
"theme.bar.menus.menu.volume.border.color": "#44475a",
|
"theme.bar.menus.menu.volume.border.color": "#44475a",
|
||||||
"theme.bar.menus.menu.volume.background.color": "#282a36",
|
"theme.bar.menus.menu.volume.background.color": "#282a36",
|
||||||
"theme.bar.menus.menu.media.slider.puck": "#282936",
|
"theme.bar.menus.menu.media.slider.puck": "#282936",
|
||||||
"theme.bar.menus.menu.media.slider.backgroundhover": "#6272a4",
|
"theme.bar.menus.menu.media.slider.backgroundhover": "#6272a4",
|
||||||
"theme.bar.menus.menu.media.slider.background": "#6272a4",
|
"theme.bar.menus.menu.media.slider.background": "#6272a4",
|
||||||
"theme.bar.menus.menu.media.slider.primary": "#ff79c6",
|
"theme.bar.menus.menu.media.slider.primary": "#ff79c6",
|
||||||
"theme.bar.menus.menu.media.buttons.text": "#282a36",
|
"theme.bar.menus.menu.media.buttons.text": "#282a36",
|
||||||
"theme.bar.menus.menu.media.buttons.background": "#bd93f9",
|
"theme.bar.menus.menu.media.buttons.background": "#bd93f9",
|
||||||
"theme.bar.menus.menu.media.buttons.enabled": "#8be9fd",
|
"theme.bar.menus.menu.media.buttons.enabled": "#8be9fd",
|
||||||
"theme.bar.menus.menu.media.buttons.inactive": "#44475a",
|
"theme.bar.menus.menu.media.buttons.inactive": "#44475a",
|
||||||
"theme.bar.menus.menu.media.border.color": "#44475a",
|
"theme.bar.menus.menu.media.border.color": "#44475a",
|
||||||
"theme.bar.menus.menu.media.background.color": "#282a36",
|
"theme.bar.menus.menu.media.background.color": "#282a36",
|
||||||
"theme.bar.menus.menu.media.album": "#ff79c6",
|
"theme.bar.menus.menu.media.album": "#ff79c6",
|
||||||
"theme.bar.menus.menu.media.artist": "#8be9fd",
|
"theme.bar.menus.menu.media.artist": "#8be9fd",
|
||||||
"theme.bar.menus.menu.media.song": "#bd93f9",
|
"theme.bar.menus.menu.media.song": "#bd93f9",
|
||||||
"theme.bar.menus.tooltip.text": "#f8f8f2",
|
"theme.bar.menus.tooltip.text": "#f8f8f2",
|
||||||
"theme.bar.menus.tooltip.background": "#282a36",
|
"theme.bar.menus.tooltip.background": "#282a36",
|
||||||
"theme.bar.menus.dropdownmenu.divider": "#44475a",
|
"theme.bar.menus.dropdownmenu.divider": "#44475a",
|
||||||
"theme.bar.menus.dropdownmenu.text": "#f8f8f2",
|
"theme.bar.menus.dropdownmenu.text": "#f8f8f2",
|
||||||
"theme.bar.menus.dropdownmenu.background": "#282a36",
|
"theme.bar.menus.dropdownmenu.background": "#282a36",
|
||||||
"theme.bar.menus.slider.puck": "#44475a",
|
"theme.bar.menus.slider.puck": "#44475a",
|
||||||
"theme.bar.menus.slider.backgroundhover": "#44475a",
|
"theme.bar.menus.slider.backgroundhover": "#44475a",
|
||||||
"theme.bar.menus.slider.background": "#44475a",
|
"theme.bar.menus.slider.background": "#44475a",
|
||||||
"theme.bar.menus.slider.primary": "#bd93f9",
|
"theme.bar.menus.slider.primary": "#bd93f9",
|
||||||
"theme.bar.menus.progressbar.background": "#44475a",
|
"theme.bar.menus.progressbar.background": "#44475a",
|
||||||
"theme.bar.menus.progressbar.foreground": "#bd93f9",
|
"theme.bar.menus.progressbar.foreground": "#bd93f9",
|
||||||
"theme.bar.menus.iconbuttons.active": "#bd93f9",
|
"theme.bar.menus.iconbuttons.active": "#bd93f9",
|
||||||
"theme.bar.menus.iconbuttons.passive": "#f8f8f2",
|
"theme.bar.menus.iconbuttons.passive": "#f8f8f2",
|
||||||
"theme.bar.menus.buttons.text": "#282a36",
|
"theme.bar.menus.buttons.text": "#282a36",
|
||||||
"theme.bar.menus.buttons.disabled": "#44475a",
|
"theme.bar.menus.buttons.disabled": "#44475a",
|
||||||
"theme.bar.menus.buttons.active": "#ff79c6",
|
"theme.bar.menus.buttons.active": "#ff79c6",
|
||||||
"theme.bar.menus.buttons.default": "#bd93f9",
|
"theme.bar.menus.buttons.default": "#bd93f9",
|
||||||
"theme.bar.menus.switch.puck": "#44475a",
|
"theme.bar.menus.switch.puck": "#44475a",
|
||||||
"theme.bar.menus.switch.disabled": "#44475a",
|
"theme.bar.menus.switch.disabled": "#44475a",
|
||||||
"theme.bar.menus.switch.enabled": "#bd93f9",
|
"theme.bar.menus.switch.enabled": "#bd93f9",
|
||||||
"theme.bar.menus.icons.active": "#bd93f9",
|
"theme.bar.menus.icons.active": "#bd93f9",
|
||||||
"theme.bar.menus.icons.passive": "#44475a",
|
"theme.bar.menus.icons.passive": "#44475a",
|
||||||
"theme.bar.menus.listitems.active": "#bd93f9",
|
"theme.bar.menus.listitems.active": "#bd93f9",
|
||||||
"theme.bar.menus.listitems.passive": "#f8f8f2",
|
"theme.bar.menus.listitems.passive": "#f8f8f2",
|
||||||
"theme.bar.menus.label": "#bd93f9",
|
"theme.bar.menus.label": "#bd93f9",
|
||||||
"theme.bar.menus.feinttext": "#44475a",
|
"theme.bar.menus.feinttext": "#44475a",
|
||||||
"theme.bar.menus.dimtext": "#6272a4",
|
"theme.bar.menus.dimtext": "#6272a4",
|
||||||
"theme.bar.menus.cards": "#44475a",
|
"theme.bar.menus.cards": "#44475a",
|
||||||
"theme.bar.buttons.notifications.total": "#bd93f9",
|
"theme.bar.buttons.notifications.total": "#bd93f9",
|
||||||
"theme.bar.buttons.notifications.icon": "#44475a",
|
"theme.bar.buttons.notifications.icon": "#44475a",
|
||||||
"theme.bar.buttons.notifications.hover": "#6272a4",
|
"theme.bar.buttons.notifications.hover": "#6272a4",
|
||||||
"theme.bar.buttons.notifications.background": "#44475a",
|
"theme.bar.buttons.notifications.background": "#44475a",
|
||||||
"theme.bar.buttons.clock.icon": "#44475a",
|
"theme.bar.buttons.clock.icon": "#44475a",
|
||||||
"theme.bar.buttons.clock.text": "#ff79c6",
|
"theme.bar.buttons.clock.text": "#ff79c6",
|
||||||
"theme.bar.buttons.clock.hover": "#6272a4",
|
"theme.bar.buttons.clock.hover": "#6272a4",
|
||||||
"theme.bar.buttons.clock.background": "#44475a",
|
"theme.bar.buttons.clock.background": "#44475a",
|
||||||
"theme.bar.buttons.battery.icon": "#44475a",
|
"theme.bar.buttons.battery.icon": "#44475a",
|
||||||
"theme.bar.buttons.battery.text": "#f1fa8c",
|
"theme.bar.buttons.battery.text": "#f1fa8c",
|
||||||
"theme.bar.buttons.battery.hover": "#6272a4",
|
"theme.bar.buttons.battery.hover": "#6272a4",
|
||||||
"theme.bar.buttons.battery.background": "#44475a",
|
"theme.bar.buttons.battery.background": "#44475a",
|
||||||
"theme.bar.buttons.systray.hover": "#6272a4",
|
"theme.bar.buttons.systray.hover": "#6272a4",
|
||||||
"theme.bar.buttons.systray.background": "#44475a",
|
"theme.bar.buttons.systray.background": "#44475a",
|
||||||
"theme.bar.buttons.bluetooth.icon": "#44475a",
|
"theme.bar.buttons.bluetooth.icon": "#44475a",
|
||||||
"theme.bar.buttons.bluetooth.text": "#8be9fd",
|
"theme.bar.buttons.bluetooth.text": "#8be9fd",
|
||||||
"theme.bar.buttons.bluetooth.hover": "#6272a4",
|
"theme.bar.buttons.bluetooth.hover": "#6272a4",
|
||||||
"theme.bar.buttons.bluetooth.background": "#44475a",
|
"theme.bar.buttons.bluetooth.background": "#44475a",
|
||||||
"theme.bar.buttons.network.icon": "#44475a",
|
"theme.bar.buttons.network.icon": "#44475a",
|
||||||
"theme.bar.buttons.network.text": "#bd93f9",
|
"theme.bar.buttons.network.text": "#bd93f9",
|
||||||
"theme.bar.buttons.network.hover": "#6272a4",
|
"theme.bar.buttons.network.hover": "#6272a4",
|
||||||
"theme.bar.buttons.network.background": "#44475a",
|
"theme.bar.buttons.network.background": "#44475a",
|
||||||
"theme.bar.buttons.volume.icon": "#44475a",
|
"theme.bar.buttons.volume.icon": "#44475a",
|
||||||
"theme.bar.buttons.volume.text": "#ffb86c",
|
"theme.bar.buttons.volume.text": "#ffb86c",
|
||||||
"theme.bar.buttons.volume.hover": "#6272a4",
|
"theme.bar.buttons.volume.hover": "#6272a4",
|
||||||
"theme.bar.buttons.volume.background": "#44475a",
|
"theme.bar.buttons.volume.background": "#44475a",
|
||||||
"theme.bar.buttons.media.hover": "#6272a4",
|
"theme.bar.buttons.media.hover": "#6272a4",
|
||||||
"theme.bar.buttons.windowtitle.icon": "#44475a",
|
"theme.bar.buttons.windowtitle.icon": "#44475a",
|
||||||
"theme.bar.buttons.windowtitle.text": "#f1fa8c",
|
"theme.bar.buttons.windowtitle.text": "#f1fa8c",
|
||||||
"theme.bar.buttons.windowtitle.hover": "#6272a4",
|
"theme.bar.buttons.windowtitle.hover": "#6272a4",
|
||||||
"theme.bar.buttons.windowtitle.background": "#44475a",
|
"theme.bar.buttons.windowtitle.background": "#44475a",
|
||||||
"theme.bar.buttons.workspaces.numbered_active_text_color": "#282a36",
|
"theme.bar.buttons.workspaces.numbered_active_text_color": "#282a36",
|
||||||
"theme.bar.buttons.workspaces.active": "#ff79c6",
|
"theme.bar.buttons.workspaces.active": "#ff79c6",
|
||||||
"theme.bar.buttons.workspaces.occupied": "#ffb86c",
|
"theme.bar.buttons.workspaces.occupied": "#ffb86c",
|
||||||
"theme.bar.buttons.workspaces.available": "#8be9fd",
|
"theme.bar.buttons.workspaces.available": "#8be9fd",
|
||||||
"theme.bar.buttons.workspaces.hover": "#ff79c6",
|
"theme.bar.buttons.workspaces.hover": "#ff79c6",
|
||||||
"theme.bar.buttons.workspaces.background": "#44475a",
|
"theme.bar.buttons.workspaces.background": "#44475a",
|
||||||
"theme.bar.buttons.dashboard.icon": "#44475a",
|
"theme.bar.buttons.dashboard.icon": "#44475a",
|
||||||
"theme.bar.buttons.dashboard.hover": "#6272a4",
|
"theme.bar.buttons.dashboard.hover": "#6272a4",
|
||||||
"theme.bar.buttons.dashboard.background": "#8be8fd",
|
"theme.bar.buttons.dashboard.background": "#8be8fd",
|
||||||
"theme.osd.label": "#bd93f9",
|
"theme.osd.label": "#bd93f9",
|
||||||
"theme.osd.icon": "#282a36",
|
"theme.osd.icon": "#282a36",
|
||||||
"theme.osd.bar_overflow_color": "#ff5555",
|
"theme.osd.bar_overflow_color": "#ff5555",
|
||||||
"theme.osd.bar_empty_color": "#44475a",
|
"theme.osd.bar_empty_color": "#44475a",
|
||||||
"theme.osd.bar_color": "#bd93f9",
|
"theme.osd.bar_color": "#bd93f9",
|
||||||
"theme.osd.icon_container": "#bd93f9",
|
"theme.osd.icon_container": "#bd93f9",
|
||||||
"theme.osd.bar_container": "#282a36",
|
"theme.osd.bar_container": "#282a36",
|
||||||
"theme.notification.close_button.label": "#282a36",
|
"theme.notification.close_button.label": "#282a36",
|
||||||
"theme.notification.close_button.background": "#bd93f9",
|
"theme.notification.close_button.background": "#bd93f9",
|
||||||
"theme.notification.labelicon": "#bd93f9",
|
"theme.notification.labelicon": "#bd93f9",
|
||||||
"theme.notification.text": "#f8f8f2",
|
"theme.notification.text": "#f8f8f2",
|
||||||
"theme.notification.time": "#6272a4",
|
"theme.notification.time": "#6272a4",
|
||||||
"theme.notification.border": "#44475a",
|
"theme.notification.border": "#44475a",
|
||||||
"theme.notification.label": "#bd93f9",
|
"theme.notification.label": "#bd93f9",
|
||||||
"theme.notification.actions.text": "#282a36",
|
"theme.notification.actions.text": "#282a36",
|
||||||
"theme.notification.actions.background": "#bd93f9",
|
"theme.notification.actions.background": "#bd93f9",
|
||||||
"theme.notification.background": "#44475a",
|
"theme.notification.background": "#44475a",
|
||||||
"theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#ff79c6",
|
"theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#ff79c6",
|
||||||
"theme.bar.buttons.workspaces.numbered_active_underline_color": "#ff79c6",
|
"theme.bar.buttons.workspaces.numbered_active_underline_color": "#ff79c6",
|
||||||
"theme.bar.menus.menu.media.card.color": "#44475a",
|
"theme.bar.menus.menu.media.card.color": "#44475a",
|
||||||
"theme.bar.menus.check_radio_button.background": "#282936",
|
"theme.bar.menus.check_radio_button.background": "#282936",
|
||||||
"theme.bar.menus.check_radio_button.active": "#bd93f9",
|
"theme.bar.menus.check_radio_button.active": "#bd93f9",
|
||||||
"theme.bar.buttons.style": "split",
|
"theme.bar.buttons.style": "split",
|
||||||
"theme.bar.buttons.icon_background": "#242438",
|
"theme.bar.buttons.icon_background": "#242438",
|
||||||
"theme.bar.buttons.volume.icon_background": "#ffb86c",
|
"theme.bar.buttons.volume.icon_background": "#ffb86c",
|
||||||
"theme.bar.buttons.network.icon_background": "#bd93f9",
|
"theme.bar.buttons.network.icon_background": "#bd93f9",
|
||||||
"theme.bar.buttons.bluetooth.icon_background": "#8be9fd",
|
"theme.bar.buttons.bluetooth.icon_background": "#8be9fd",
|
||||||
"theme.bar.buttons.windowtitle.icon_background": "#f1fa8c",
|
"theme.bar.buttons.windowtitle.icon_background": "#f1fa8c",
|
||||||
"theme.bar.buttons.media.icon_background": "#bd93f9",
|
"theme.bar.buttons.media.icon_background": "#bd93f9",
|
||||||
"theme.bar.buttons.notifications.icon_background": "#bd93f9",
|
"theme.bar.buttons.notifications.icon_background": "#bd93f9",
|
||||||
"theme.bar.buttons.battery.icon_background": "#f1fa8c",
|
"theme.bar.buttons.battery.icon_background": "#f1fa8c",
|
||||||
"theme.bar.buttons.clock.icon_background": "#ff79c6"
|
"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"
|
||||||
}
|
}
|
||||||
@@ -262,12 +262,8 @@
|
|||||||
"theme.bar.menus.check_radio_button.background": "#000000",
|
"theme.bar.menus.check_radio_button.background": "#000000",
|
||||||
"theme.bar.menus.check_radio_button.active": "#ffffff",
|
"theme.bar.menus.check_radio_button.active": "#ffffff",
|
||||||
"theme.bar.buttons.style": "default",
|
"theme.bar.buttons.style": "default",
|
||||||
"theme.bar.buttons.icon_background": "#242438",
|
"theme.bar.menus.menu.notifications.pager.button": "#a7c080",
|
||||||
"theme.bar.buttons.volume.icon_background": "#ee999f",
|
"theme.bar.menus.menu.notifications.scrollbar.color": "#a7c080",
|
||||||
"theme.bar.buttons.network.icon_background": "#c5a0f6",
|
"theme.bar.menus.menu.notifications.pager.label": "#7a8478",
|
||||||
"theme.bar.buttons.bluetooth.icon_background": "#91d7e3",
|
"theme.bar.menus.menu.notifications.pager.background": "#2b3339"
|
||||||
"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"
|
|
||||||
}
|
}
|
||||||
@@ -270,5 +270,9 @@
|
|||||||
"theme.bar.buttons.media.icon_background": "#a7c080",
|
"theme.bar.buttons.media.icon_background": "#a7c080",
|
||||||
"theme.bar.buttons.notifications.icon_background": "#83c092",
|
"theme.bar.buttons.notifications.icon_background": "#83c092",
|
||||||
"theme.bar.buttons.battery.icon_background": "#e69875",
|
"theme.bar.buttons.battery.icon_background": "#e69875",
|
||||||
"theme.bar.buttons.clock.icon_background": "#dbbc7f"
|
"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"
|
||||||
}
|
}
|
||||||
@@ -262,12 +262,8 @@
|
|||||||
"theme.bar.menus.check_radio_button.background": "#3c3836",
|
"theme.bar.menus.check_radio_button.background": "#3c3836",
|
||||||
"theme.bar.menus.check_radio_button.active": "#83a598",
|
"theme.bar.menus.check_radio_button.active": "#83a598",
|
||||||
"theme.bar.buttons.style": "default",
|
"theme.bar.buttons.style": "default",
|
||||||
"theme.bar.buttons.icon_background": "#242438",
|
"theme.bar.menus.menu.notifications.pager.button": "#83a598",
|
||||||
"theme.bar.buttons.volume.icon_background": "#ee999f",
|
"theme.bar.menus.menu.notifications.scrollbar.color": "#83a598",
|
||||||
"theme.bar.buttons.network.icon_background": "#c5a0f6",
|
"theme.bar.menus.menu.notifications.pager.label": "#a89984",
|
||||||
"theme.bar.buttons.bluetooth.icon_background": "#91d7e3",
|
"theme.bar.menus.menu.notifications.pager.background": "#1d2021"
|
||||||
"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"
|
|
||||||
}
|
}
|
||||||
@@ -270,5 +270,9 @@
|
|||||||
"theme.bar.buttons.media.icon_background": "#83a598",
|
"theme.bar.buttons.media.icon_background": "#83a598",
|
||||||
"theme.bar.buttons.notifications.icon_background": "#83a598",
|
"theme.bar.buttons.notifications.icon_background": "#83a598",
|
||||||
"theme.bar.buttons.battery.icon_background": "#fabd2f",
|
"theme.bar.buttons.battery.icon_background": "#fabd2f",
|
||||||
"theme.bar.buttons.clock.icon_background": "#d3869b"
|
"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"
|
||||||
}
|
}
|
||||||
@@ -262,12 +262,8 @@
|
|||||||
"theme.bar.menus.check_radio_button.background": "#000000",
|
"theme.bar.menus.check_radio_button.background": "#000000",
|
||||||
"theme.bar.menus.check_radio_button.active": "#ffffff",
|
"theme.bar.menus.check_radio_button.active": "#ffffff",
|
||||||
"theme.bar.buttons.style": "default",
|
"theme.bar.buttons.style": "default",
|
||||||
"theme.bar.buttons.icon_background": "#242438",
|
"theme.bar.menus.menu.notifications.pager.button": "#FFFFFF",
|
||||||
"theme.bar.buttons.volume.icon_background": "#ee999f",
|
"theme.bar.menus.menu.notifications.scrollbar.color": "#FFFFFF",
|
||||||
"theme.bar.buttons.network.icon_background": "#c5a0f6",
|
"theme.bar.menus.menu.notifications.pager.label": "#9a9996",
|
||||||
"theme.bar.buttons.bluetooth.icon_background": "#91d7e3",
|
"theme.bar.menus.menu.notifications.pager.background": "#000000"
|
||||||
"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"
|
|
||||||
}
|
}
|
||||||
@@ -270,5 +270,9 @@
|
|||||||
"theme.bar.buttons.media.icon_background": "#ffffff",
|
"theme.bar.buttons.media.icon_background": "#ffffff",
|
||||||
"theme.bar.buttons.notifications.icon_background": "#ffffff",
|
"theme.bar.buttons.notifications.icon_background": "#ffffff",
|
||||||
"theme.bar.buttons.battery.icon_background": "#ffffff",
|
"theme.bar.buttons.battery.icon_background": "#ffffff",
|
||||||
"theme.bar.buttons.clock.icon_background": "#ffffff"
|
"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"
|
||||||
}
|
}
|
||||||
@@ -262,12 +262,8 @@
|
|||||||
"theme.bar.menus.check_radio_button.background": "#2e3440",
|
"theme.bar.menus.check_radio_button.background": "#2e3440",
|
||||||
"theme.bar.menus.check_radio_button.active": "#88c0d0",
|
"theme.bar.menus.check_radio_button.active": "#88c0d0",
|
||||||
"theme.bar.buttons.style": "default",
|
"theme.bar.buttons.style": "default",
|
||||||
"theme.bar.buttons.icon_background": "#242438",
|
"theme.bar.menus.menu.notifications.pager.button": "#88c0d0",
|
||||||
"theme.bar.buttons.volume.icon_background": "#fe8018",
|
"theme.bar.menus.menu.notifications.scrollbar.color": "#88c0d0",
|
||||||
"theme.bar.buttons.network.icon_background": "#b16286",
|
"theme.bar.menus.menu.notifications.pager.label": "#5e81ac",
|
||||||
"theme.bar.buttons.bluetooth.icon_background": "#83a598",
|
"theme.bar.menus.menu.notifications.pager.background": "#2e3440"
|
||||||
"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"
|
|
||||||
}
|
}
|
||||||
@@ -270,5 +270,9 @@
|
|||||||
"theme.bar.buttons.media.icon_background": "#88c0d0",
|
"theme.bar.buttons.media.icon_background": "#88c0d0",
|
||||||
"theme.bar.buttons.notifications.icon_background": "#88c0d0",
|
"theme.bar.buttons.notifications.icon_background": "#88c0d0",
|
||||||
"theme.bar.buttons.battery.icon_background": "#81a1c1",
|
"theme.bar.buttons.battery.icon_background": "#81a1c1",
|
||||||
"theme.bar.buttons.clock.icon_background": "#8fbcbb"
|
"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"
|
||||||
}
|
}
|
||||||
@@ -262,12 +262,8 @@
|
|||||||
"theme.bar.menus.check_radio_button.background": "#2e3440",
|
"theme.bar.menus.check_radio_button.background": "#2e3440",
|
||||||
"theme.bar.menus.check_radio_button.active": "#88c0d0",
|
"theme.bar.menus.check_radio_button.active": "#88c0d0",
|
||||||
"theme.bar.buttons.style": "default",
|
"theme.bar.buttons.style": "default",
|
||||||
"theme.bar.buttons.icon_background": "#242438",
|
"theme.bar.menus.menu.notifications.pager.button": "#61afef",
|
||||||
"theme.bar.buttons.volume.icon_background": "#ee999f",
|
"theme.bar.menus.menu.notifications.scrollbar.color": "#61afef",
|
||||||
"theme.bar.buttons.network.icon_background": "#c5a0f6",
|
"theme.bar.menus.menu.notifications.pager.label": "#828997",
|
||||||
"theme.bar.buttons.bluetooth.icon_background": "#91d7e3",
|
"theme.bar.menus.menu.notifications.pager.background": "#282c34"
|
||||||
"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"
|
|
||||||
}
|
}
|
||||||
@@ -270,5 +270,9 @@
|
|||||||
"theme.bar.buttons.media.icon_background": "#61afef",
|
"theme.bar.buttons.media.icon_background": "#61afef",
|
||||||
"theme.bar.buttons.notifications.icon_background": "#61afef",
|
"theme.bar.buttons.notifications.icon_background": "#61afef",
|
||||||
"theme.bar.buttons.battery.icon_background": "#e5c07b",
|
"theme.bar.buttons.battery.icon_background": "#e5c07b",
|
||||||
"theme.bar.buttons.clock.icon_background": "#98c379"
|
"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"
|
||||||
}
|
}
|
||||||
@@ -262,12 +262,8 @@
|
|||||||
"theme.bar.menus.check_radio_button.background": "#393452",
|
"theme.bar.menus.check_radio_button.background": "#393452",
|
||||||
"theme.bar.menus.check_radio_button.active": "#c4a7e7",
|
"theme.bar.menus.check_radio_button.active": "#c4a7e7",
|
||||||
"theme.bar.buttons.style": "default",
|
"theme.bar.buttons.style": "default",
|
||||||
"theme.bar.buttons.icon_background": "#242438",
|
"theme.bar.menus.menu.notifications.pager.button": "#c4a7e7",
|
||||||
"theme.bar.buttons.volume.icon_background": "#ee999f",
|
"theme.bar.menus.menu.notifications.scrollbar.color": "#c4a7e7",
|
||||||
"theme.bar.buttons.network.icon_background": "#c5a0f6",
|
"theme.bar.menus.menu.notifications.pager.label": "#524f67",
|
||||||
"theme.bar.buttons.bluetooth.icon_background": "#91d7e3",
|
"theme.bar.menus.menu.notifications.pager.background": "#191724"
|
||||||
"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"
|
|
||||||
}
|
}
|
||||||
@@ -262,12 +262,8 @@
|
|||||||
"theme.bar.menus.check_radio_button.background": "#393452",
|
"theme.bar.menus.check_radio_button.background": "#393452",
|
||||||
"theme.bar.menus.check_radio_button.active": "#c4a7e7",
|
"theme.bar.menus.check_radio_button.active": "#c4a7e7",
|
||||||
"theme.bar.buttons.style": "default",
|
"theme.bar.buttons.style": "default",
|
||||||
"theme.bar.buttons.icon_background": "#242438",
|
"theme.bar.menus.menu.notifications.pager.button": "#c4a7e7",
|
||||||
"theme.bar.buttons.volume.icon_background": "#ee999f",
|
"theme.bar.menus.menu.notifications.scrollbar.color": "#c4a7e7",
|
||||||
"theme.bar.buttons.network.icon_background": "#c5a0f6",
|
"theme.bar.menus.menu.notifications.pager.label": "#56526e",
|
||||||
"theme.bar.buttons.bluetooth.icon_background": "#91d7e3",
|
"theme.bar.menus.menu.notifications.pager.background": "#232136"
|
||||||
"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"
|
|
||||||
}
|
}
|
||||||
@@ -270,5 +270,9 @@
|
|||||||
"theme.bar.buttons.media.icon_background": "#c4a7e7",
|
"theme.bar.buttons.media.icon_background": "#c4a7e7",
|
||||||
"theme.bar.buttons.notifications.icon_background": "#c4a7e7",
|
"theme.bar.buttons.notifications.icon_background": "#c4a7e7",
|
||||||
"theme.bar.buttons.battery.icon_background": "#f6c177",
|
"theme.bar.buttons.battery.icon_background": "#f6c177",
|
||||||
"theme.bar.buttons.clock.icon_background": "#c4a7e7"
|
"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"
|
||||||
}
|
}
|
||||||
@@ -270,5 +270,9 @@
|
|||||||
"theme.bar.buttons.media.icon_background": "#c4a7e7",
|
"theme.bar.buttons.media.icon_background": "#c4a7e7",
|
||||||
"theme.bar.buttons.notifications.icon_background": "#c4a7e7",
|
"theme.bar.buttons.notifications.icon_background": "#c4a7e7",
|
||||||
"theme.bar.buttons.battery.icon_background": "#f6c177",
|
"theme.bar.buttons.battery.icon_background": "#f6c177",
|
||||||
"theme.bar.buttons.clock.icon_background": "#c4a7e7"
|
"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"
|
||||||
}
|
}
|
||||||
@@ -262,12 +262,8 @@
|
|||||||
"theme.bar.menus.check_radio_button.background": "#3b4261",
|
"theme.bar.menus.check_radio_button.background": "#3b4261",
|
||||||
"theme.bar.menus.check_radio_button.active": "#bb9af7",
|
"theme.bar.menus.check_radio_button.active": "#bb9af7",
|
||||||
"theme.bar.buttons.style": "default",
|
"theme.bar.buttons.style": "default",
|
||||||
"theme.bar.buttons.icon_background": "#242438",
|
"theme.bar.menus.menu.notifications.pager.button": "#bb9af7",
|
||||||
"theme.bar.buttons.volume.icon_background": "#ee999f",
|
"theme.bar.menus.menu.notifications.scrollbar.color": "#bb9af7",
|
||||||
"theme.bar.buttons.network.icon_background": "#c5a0f6",
|
"theme.bar.menus.menu.notifications.pager.label": "#565f89",
|
||||||
"theme.bar.buttons.bluetooth.icon_background": "#91d7e3",
|
"theme.bar.menus.menu.notifications.pager.background": "#1a1b26"
|
||||||
"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"
|
|
||||||
}
|
}
|
||||||
@@ -270,5 +270,9 @@
|
|||||||
"theme.bar.buttons.media.icon_background": "#bb9af7",
|
"theme.bar.buttons.media.icon_background": "#bb9af7",
|
||||||
"theme.bar.buttons.notifications.icon_background": "#bb9af7",
|
"theme.bar.buttons.notifications.icon_background": "#bb9af7",
|
||||||
"theme.bar.buttons.battery.icon_background": "#e0af68",
|
"theme.bar.buttons.battery.icon_background": "#e0af68",
|
||||||
"theme.bar.buttons.clock.icon_background": "#f7768e"
|
"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"
|
||||||
}
|
}
|
||||||
@@ -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.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.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' }),
|
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' }),
|
||||||
]
|
]
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -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.disabled, title: 'Disabled', type: 'color' }),
|
||||||
Option({ opt: options.theme.bar.menus.menu.notifications.switch.puck, title: 'Puck', 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' }),
|
||||||
]
|
]
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user