Added a scrollbar to the network and bluetooth menu. (#593)
* Added a scrollbar to the network and bluetooth menu. * Update themes * Adjust height of network menu scroller.
This commit is contained in:
@@ -13,7 +13,7 @@
|
|||||||
* If no themes_directory is provided, it defaults to '~/.config/ags/themes'.
|
* If no themes_directory is provided, it defaults to '~/.config/ags/themes'.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const fs = require('fs');
|
const fs = require('fs').promises;
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const os = require('os');
|
const os = require('os');
|
||||||
|
|
||||||
@@ -48,14 +48,14 @@ const COLORS = {
|
|||||||
const formatMessage = (color, message) => `${color}${message}${COLORS.RESET}`;
|
const formatMessage = (color, message) => `${color}${message}${COLORS.RESET}`;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Loads and parses a JSON file.
|
* Loads and parses a JSON file asynchronously.
|
||||||
*
|
*
|
||||||
* @param {string} filePath - The path to the JSON file.
|
* @param {string} filePath - The path to the JSON file.
|
||||||
* @returns {Object} The parsed JSON object.
|
* @returns {Promise<Object>} The parsed JSON object.
|
||||||
*/
|
*/
|
||||||
const loadJSON = (filePath) => {
|
const loadJSON = async (filePath) => {
|
||||||
try {
|
try {
|
||||||
const data = fs.readFileSync(filePath, 'utf8');
|
const data = await fs.readFile(filePath, 'utf8');
|
||||||
return JSON.parse(data);
|
return JSON.parse(data);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error(formatMessage(COLORS.FG_RED, `Error reading or parsing '${filePath}': ${error.message}`));
|
console.error(formatMessage(COLORS.FG_RED, `Error reading or parsing '${filePath}': ${error.message}`));
|
||||||
@@ -64,15 +64,15 @@ const loadJSON = (filePath) => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Saves a JSON object to a file with indentation.
|
* Saves a JSON object to a file with indentation asynchronously.
|
||||||
*
|
*
|
||||||
* @param {string} filePath - The path to the JSON file.
|
* @param {string} filePath - The path to the JSON file.
|
||||||
* @param {Object} data - The JSON data to save.
|
* @param {Object} data - The JSON data to save.
|
||||||
*/
|
*/
|
||||||
const saveJSON = (filePath, data) => {
|
const saveJSON = async (filePath, data) => {
|
||||||
try {
|
try {
|
||||||
const jsonString = JSON.stringify(data, null, 2);
|
const jsonString = JSON.stringify(data, null, 2);
|
||||||
fs.writeFileSync(filePath, jsonString, 'utf8');
|
await fs.writeFile(filePath, jsonString, 'utf8');
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error(formatMessage(COLORS.FG_RED, `Error writing to '${filePath}': ${error.message}`));
|
console.error(formatMessage(COLORS.FG_RED, `Error writing to '${filePath}': ${error.message}`));
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
@@ -123,9 +123,7 @@ const findMissingKeys = (baseJSON, targetJSON) => {
|
|||||||
* @returns {boolean} True if the key is excluded, otherwise false.
|
* @returns {boolean} True if the key is excluded, otherwise false.
|
||||||
*/
|
*/
|
||||||
const isExcludedKey = (key) => {
|
const isExcludedKey = (key) => {
|
||||||
const excludedPatterns = [
|
const excludedPatterns = [];
|
||||||
// Add any regex patterns for keys to exclude here
|
|
||||||
];
|
|
||||||
|
|
||||||
return excludedPatterns.some((pattern) => pattern.test(key));
|
return excludedPatterns.some((pattern) => pattern.test(key));
|
||||||
};
|
};
|
||||||
@@ -175,14 +173,18 @@ const collectBorderColors = (baseJSON) => {
|
|||||||
* @param {Object} targetJSON - The target JSON object.
|
* @param {Object} targetJSON - The target JSON object.
|
||||||
* @param {Object} specialKeyMappings - A map of special keys to their source keys.
|
* @param {Object} specialKeyMappings - A map of special keys to their source keys.
|
||||||
* @param {string} currentKey - The key currently being processed.
|
* @param {string} currentKey - The key currently being processed.
|
||||||
|
* @param {Object} baseTheme - The base theme JSON object.
|
||||||
* @returns {*} The best matching value or null if a random selection is needed.
|
* @returns {*} The best matching value or null if a random selection is needed.
|
||||||
*/
|
*/
|
||||||
const determineBestMatchValue = (baseValue, valueToKeysMap, targetJSON, specialKeyMappings, currentKey) => {
|
const determineBestMatchValue = (baseValue, valueToKeysMap, targetJSON, specialKeyMappings, currentKey, baseTheme) => {
|
||||||
// Check if the current key is in special mappings
|
|
||||||
if (specialKeyMappings.hasOwnProperty(currentKey)) {
|
if (specialKeyMappings.hasOwnProperty(currentKey)) {
|
||||||
const sourceKey = specialKeyMappings[currentKey];
|
const sourceKey = specialKeyMappings[currentKey];
|
||||||
if (targetJSON.hasOwnProperty(sourceKey)) {
|
if (targetJSON.hasOwnProperty(sourceKey)) {
|
||||||
|
console.log(formatMessage(COLORS.FG_CYAN, `🔍 Found source key '${sourceKey}' in target JSON.`));
|
||||||
return targetJSON[sourceKey];
|
return targetJSON[sourceKey];
|
||||||
|
} else if (baseTheme && baseTheme.hasOwnProperty(sourceKey)) {
|
||||||
|
console.log(formatMessage(COLORS.FG_CYAN, `🔍 Found source key '${sourceKey}' in base theme.`));
|
||||||
|
return baseTheme[sourceKey];
|
||||||
} else {
|
} else {
|
||||||
console.warn(
|
console.warn(
|
||||||
formatMessage(
|
formatMessage(
|
||||||
@@ -229,14 +231,16 @@ const findExtraKeys = (baseTheme, targetJSON) => {
|
|||||||
*
|
*
|
||||||
* @param {string} themePath - The path to the theme file.
|
* @param {string} themePath - The path to the theme file.
|
||||||
*/
|
*/
|
||||||
const backupTheme = (themePath) => {
|
const backupTheme = async (themePath) => {
|
||||||
const backupDir = path.join(path.dirname(themePath), 'backup');
|
try {
|
||||||
if (!fs.existsSync(backupDir)) {
|
const backupDir = path.join(path.dirname(themePath), 'backup');
|
||||||
fs.mkdirSync(backupDir);
|
await fs.mkdir(backupDir, { recursive: true });
|
||||||
|
const backupPath = path.join(backupDir, path.basename(themePath));
|
||||||
|
await fs.copyFile(themePath, backupPath);
|
||||||
|
console.log(formatMessage(COLORS.FG_CYAN, `Backup created at '${backupPath}'.`));
|
||||||
|
} catch (error) {
|
||||||
|
console.error(formatMessage(COLORS.FG_RED, `❌ Error creating backup for '${themePath}': ${error.message}`));
|
||||||
}
|
}
|
||||||
const backupPath = path.join(backupDir, path.basename(themePath));
|
|
||||||
fs.copyFileSync(themePath, backupPath);
|
|
||||||
console.log(formatMessage(COLORS.FG_CYAN, `Backup created at '${backupPath}'.`));
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -246,9 +250,10 @@ const backupTheme = (themePath) => {
|
|||||||
* @param {Object} baseTheme - The base JSON object.
|
* @param {Object} baseTheme - The base JSON object.
|
||||||
* @param {boolean} dryRun - If true, no changes will be written to files.
|
* @param {boolean} dryRun - If true, no changes will be written to files.
|
||||||
* @param {Object} specialKeyMappings - A map of special keys to their source keys.
|
* @param {Object} specialKeyMappings - A map of special keys to their source keys.
|
||||||
|
* @returns {Promise<void>}
|
||||||
*/
|
*/
|
||||||
const processTheme = (themePath, baseTheme, dryRun, specialKeyMappings = {}) => {
|
const processTheme = async (themePath, baseTheme, dryRun, specialKeyMappings = {}) => {
|
||||||
const themeJSON = loadJSON(themePath);
|
const themeJSON = await loadJSON(themePath);
|
||||||
const missingKeys = findMissingKeys(baseTheme, themeJSON);
|
const missingKeys = findMissingKeys(baseTheme, themeJSON);
|
||||||
|
|
||||||
let hasChanges = false;
|
let hasChanges = false;
|
||||||
@@ -266,14 +271,21 @@ const processTheme = (themePath, baseTheme, dryRun, specialKeyMappings = {}) =>
|
|||||||
const valueToKeysMap = buildValueToKeysMap(baseTheme);
|
const valueToKeysMap = buildValueToKeysMap(baseTheme);
|
||||||
const borderColors = collectBorderColors(baseTheme);
|
const borderColors = collectBorderColors(baseTheme);
|
||||||
|
|
||||||
missingKeys.forEach((key) => {
|
for (const key of missingKeys) {
|
||||||
if (isExcludedKey(key)) {
|
if (isExcludedKey(key)) {
|
||||||
console.log(formatMessage(COLORS.FG_MAGENTA, `❗ Excluded key from addition: "${key}"`));
|
console.log(formatMessage(COLORS.FG_MAGENTA, `❗ Excluded key from addition: "${key}"`));
|
||||||
return;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
const baseValue = baseTheme[key];
|
const baseValue = baseTheme[key];
|
||||||
const bestValue = determineBestMatchValue(baseValue, valueToKeysMap, themeJSON, specialKeyMappings, key);
|
const bestValue = determineBestMatchValue(
|
||||||
|
baseValue,
|
||||||
|
valueToKeysMap,
|
||||||
|
themeJSON,
|
||||||
|
specialKeyMappings,
|
||||||
|
key,
|
||||||
|
baseTheme,
|
||||||
|
);
|
||||||
|
|
||||||
if (bestValue !== null) {
|
if (bestValue !== null) {
|
||||||
themeJSON[key] = bestValue;
|
themeJSON[key] = bestValue;
|
||||||
@@ -281,7 +293,7 @@ const processTheme = (themePath, baseTheme, dryRun, specialKeyMappings = {}) =>
|
|||||||
} else {
|
} else {
|
||||||
if (borderColors.length === 0) {
|
if (borderColors.length === 0) {
|
||||||
console.error(formatMessage(COLORS.FG_RED, '❌ Error: No border colors available to assign.'));
|
console.error(formatMessage(COLORS.FG_RED, '❌ Error: No border colors available to assign.'));
|
||||||
return;
|
continue;
|
||||||
}
|
}
|
||||||
const randomColor = borderColors[Math.floor(Math.random() * borderColors.length)];
|
const randomColor = borderColors[Math.floor(Math.random() * borderColors.length)];
|
||||||
themeJSON[key] = randomColor;
|
themeJSON[key] = randomColor;
|
||||||
@@ -294,7 +306,7 @@ const processTheme = (themePath, baseTheme, dryRun, specialKeyMappings = {}) =>
|
|||||||
}
|
}
|
||||||
|
|
||||||
hasChanges = true;
|
hasChanges = true;
|
||||||
});
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const extraKeys = findExtraKeys(baseTheme, themeJSON);
|
const extraKeys = findExtraKeys(baseTheme, themeJSON);
|
||||||
@@ -309,11 +321,11 @@ const processTheme = (themePath, baseTheme, dryRun, specialKeyMappings = {}) =>
|
|||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
||||||
extraKeys.forEach((key) => {
|
for (const key of extraKeys) {
|
||||||
delete themeJSON[key];
|
delete themeJSON[key];
|
||||||
console.log(formatMessage(COLORS.FG_RED, `➖ Removed key: "${key}"`));
|
console.log(formatMessage(COLORS.FG_RED, `➖ Removed key: "${key}"`));
|
||||||
hasChanges = true;
|
hasChanges = true;
|
||||||
});
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (hasChanges) {
|
if (hasChanges) {
|
||||||
@@ -325,8 +337,8 @@ const processTheme = (themePath, baseTheme, dryRun, specialKeyMappings = {}) =>
|
|||||||
),
|
),
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
backupTheme(themePath);
|
await backupTheme(themePath);
|
||||||
saveJSON(themePath, themeJSON);
|
await saveJSON(themePath, themeJSON);
|
||||||
console.log(
|
console.log(
|
||||||
formatMessage(COLORS.FG_GREEN, `✅ Updated '${path.basename(themePath)}' with missing and extra keys.`),
|
formatMessage(COLORS.FG_GREEN, `✅ Updated '${path.basename(themePath)}' with missing and extra keys.`),
|
||||||
);
|
);
|
||||||
@@ -339,7 +351,7 @@ const processTheme = (themePath, baseTheme, dryRun, specialKeyMappings = {}) =>
|
|||||||
/**
|
/**
|
||||||
* The main function that orchestrates the theme comparison and updating.
|
* The main function that orchestrates the theme comparison and updating.
|
||||||
*/
|
*/
|
||||||
const main = () => {
|
const main = async () => {
|
||||||
const args = process.argv.slice(2);
|
const args = process.argv.slice(2);
|
||||||
const dryRunIndex = args.indexOf('--dry-run');
|
const dryRunIndex = args.indexOf('--dry-run');
|
||||||
const dryRun = dryRunIndex !== -1;
|
const dryRun = dryRunIndex !== -1;
|
||||||
@@ -350,7 +362,9 @@ const main = () => {
|
|||||||
|
|
||||||
const themesDir = args[0] || path.join(os.homedir(), '.config', 'ags', 'themes');
|
const themesDir = args[0] || path.join(os.homedir(), '.config', 'ags', 'themes');
|
||||||
|
|
||||||
if (!fs.existsSync(themesDir)) {
|
try {
|
||||||
|
await fs.access(themesDir);
|
||||||
|
} catch (error) {
|
||||||
console.error(formatMessage(COLORS.FG_RED, `❌ Error: Themes directory '${themesDir}' does not exist.`));
|
console.error(formatMessage(COLORS.FG_RED, `❌ Error: Themes directory '${themesDir}' does not exist.`));
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
}
|
}
|
||||||
@@ -362,72 +376,68 @@ const main = () => {
|
|||||||
const baseThemeSplitPath = path.join(themesDir, baseThemeSplitFile);
|
const baseThemeSplitPath = path.join(themesDir, baseThemeSplitFile);
|
||||||
const baseThemeVividPath = path.join(themesDir, baseThemeVividFile);
|
const baseThemeVividPath = path.join(themesDir, baseThemeVividFile);
|
||||||
|
|
||||||
if (!fs.existsSync(baseThemePath)) {
|
const baseThemes = [
|
||||||
console.error(
|
{ file: baseThemeFile, path: baseThemePath },
|
||||||
formatMessage(COLORS.FG_RED, `❌ Error: Base theme '${baseThemeFile}' does not exist in '${themesDir}'.`),
|
{ file: baseThemeSplitFile, path: baseThemeSplitPath },
|
||||||
);
|
{ file: baseThemeVividFile, path: baseThemeVividPath },
|
||||||
process.exit(1);
|
];
|
||||||
|
|
||||||
|
for (const theme of baseThemes) {
|
||||||
|
try {
|
||||||
|
await fs.access(theme.path);
|
||||||
|
} catch (error) {
|
||||||
|
console.error(
|
||||||
|
formatMessage(COLORS.FG_RED, `❌ Error: Base theme '${theme.file}' does not exist in '${themesDir}'.`),
|
||||||
|
);
|
||||||
|
process.exit(1);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!fs.existsSync(baseThemeSplitPath)) {
|
const [baseTheme, baseThemeSplit, baseThemeVivid] = await Promise.all([
|
||||||
console.error(
|
loadJSON(baseThemePath),
|
||||||
formatMessage(
|
loadJSON(baseThemeSplitPath),
|
||||||
COLORS.FG_RED,
|
loadJSON(baseThemeVividPath),
|
||||||
`❌ Error: Base split theme '${baseThemeSplitFile}' does not exist in '${themesDir}'.`,
|
]);
|
||||||
),
|
|
||||||
);
|
|
||||||
process.exit(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!fs.existsSync(baseThemeVividPath)) {
|
const themeFiles = (await fs.readdir(themesDir)).filter((file) => file.endsWith('.json'));
|
||||||
console.error(
|
|
||||||
formatMessage(
|
|
||||||
COLORS.FG_RED,
|
|
||||||
`❌ Error: Base vivid theme '${baseThemeVividFile}' does not exist in '${themesDir}'.`,
|
|
||||||
),
|
|
||||||
);
|
|
||||||
process.exit(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
const baseTheme = loadJSON(baseThemePath);
|
|
||||||
const baseThemeSplit = loadJSON(baseThemeSplitPath);
|
|
||||||
const baseThemeVivid = loadJSON(baseThemeVividPath);
|
|
||||||
|
|
||||||
const themeFiles = fs.readdirSync(themesDir).filter((file) => file.endsWith('.json'));
|
|
||||||
|
|
||||||
// Define special key mappings
|
|
||||||
// Format: "target_key": "source_key"
|
|
||||||
const specialKeyMappings = {
|
const specialKeyMappings = {
|
||||||
'theme.bar.buttons.modules.hypridle.icon': 'theme.bar.buttons.modules.storage.icon',
|
'theme.bar.menus.menu.bluetooth.scroller.color': 'theme.bar.menus.menu.bluetooth.label.color',
|
||||||
'theme.bar.buttons.modules.hypridle.background': 'theme.bar.buttons.modules.storage.background',
|
'theme.bar.menus.menu.network.scroller.color': 'theme.bar.menus.menu.network.label.color',
|
||||||
'theme.bar.buttons.modules.hypridle.icon_background': 'theme.bar.buttons.modules.storage.icon_background',
|
|
||||||
'theme.bar.buttons.modules.hypridle.text': 'theme.bar.buttons.modules.storage.text',
|
|
||||||
'theme.bar.buttons.modules.hypridle.border': 'theme.bar.buttons.modules.storage.border',
|
|
||||||
// Add more special mappings here if needed
|
|
||||||
};
|
};
|
||||||
|
|
||||||
themeFiles.forEach((file) => {
|
const queue = [...themeFiles].filter(
|
||||||
if (file === baseThemeFile || file === baseThemeSplitFile || file === baseThemeVividFile) {
|
(file) =>
|
||||||
return;
|
!['catppuccin_mocha.json', 'catppuccin_mocha_split.json', 'catppuccin_mocha_vivid.json'].includes(file),
|
||||||
}
|
);
|
||||||
|
|
||||||
const themePath = path.join(themesDir, file);
|
const processQueue = async () => {
|
||||||
let correspondingBaseTheme;
|
while (queue.length > 0) {
|
||||||
|
const promises = [];
|
||||||
|
for (let i = 0; i < concurrencyLimit && queue.length > 0; i++) {
|
||||||
|
const file = queue.shift();
|
||||||
|
const themePath = path.join(themesDir, file);
|
||||||
|
let correspondingBaseTheme;
|
||||||
|
|
||||||
if (file.endsWith('_split.json')) {
|
if (file.endsWith('_split.json')) {
|
||||||
correspondingBaseTheme = baseThemeSplit;
|
correspondingBaseTheme = baseThemeSplit;
|
||||||
} else if (file.endsWith('_vivid.json')) {
|
} else if (file.endsWith('_vivid.json')) {
|
||||||
correspondingBaseTheme = baseThemeVivid;
|
correspondingBaseTheme = baseThemeVivid;
|
||||||
} else {
|
} else {
|
||||||
correspondingBaseTheme = baseTheme;
|
correspondingBaseTheme = baseTheme;
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
promises.push(
|
||||||
processTheme(themePath, correspondingBaseTheme, dryRun, specialKeyMappings);
|
processTheme(themePath, correspondingBaseTheme, dryRun, specialKeyMappings).catch((error) => {
|
||||||
} catch (error) {
|
console.error(formatMessage(COLORS.FG_RED, `❌ Error processing '${file}': ${error.message}`));
|
||||||
console.error(formatMessage(COLORS.FG_RED, `❌ Error processing '${file}': ${error.message}`));
|
}),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
await Promise.all(promises);
|
||||||
}
|
}
|
||||||
});
|
};
|
||||||
|
|
||||||
|
await processQueue();
|
||||||
|
|
||||||
console.log(formatMessage(COLORS.FG_GREEN, '\n🎉 All themes have been processed.'));
|
console.log(formatMessage(COLORS.FG_GREEN, '\n🎉 All themes have been processed.'));
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -33,9 +33,11 @@ export const BluetoothDevices = (): JSX.Element => {
|
|||||||
deviceListBinding.drop();
|
deviceListBinding.drop();
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<box className={'menu-content'} vertical>
|
<scrollable className={'menu-scroller bluetooth'}>
|
||||||
{deviceListBinding()}
|
<box className={'menu-content'} vertical>
|
||||||
</box>
|
{deviceListBinding()}
|
||||||
|
</box>
|
||||||
|
</scrollable>
|
||||||
</box>
|
</box>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -15,33 +15,35 @@ export const WirelessAPs = (): JSX.Element => {
|
|||||||
if (filteredWAPs.length <= 0 && staging.get() === undefined) {
|
if (filteredWAPs.length <= 0 && staging.get() === undefined) {
|
||||||
return (
|
return (
|
||||||
<label
|
<label
|
||||||
className="waps-not-found dim"
|
className={'waps-not-found dim'}
|
||||||
expand
|
expand
|
||||||
halign={Gtk.Align.CENTER}
|
halign={Gtk.Align.CENTER}
|
||||||
valign={Gtk.Align.CENTER}
|
valign={Gtk.Align.CENTER}
|
||||||
label="No Wi-Fi Networks Found"
|
label={'No Wi-Fi Networks Found'}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<box className="available-waps-list" vertical>
|
<scrollable className={'menu-scroller wap'}>
|
||||||
{filteredWAPs.map((ap: AstalNetwork.AccessPoint) => {
|
<box className={'available-waps-list'} vertical>
|
||||||
return (
|
{filteredWAPs.map((ap: AstalNetwork.AccessPoint) => {
|
||||||
<box className="network-element-item">
|
return (
|
||||||
<AccessPoint connecting={connecting} accessPoint={ap} />
|
<box className={'network-element-item'}>
|
||||||
<Controls connecting={connecting} accessPoint={ap} />
|
<AccessPoint connecting={connecting} accessPoint={ap} />
|
||||||
</box>
|
<Controls connecting={connecting} accessPoint={ap} />
|
||||||
);
|
</box>
|
||||||
})}
|
);
|
||||||
</box>
|
})}
|
||||||
|
</box>
|
||||||
|
</scrollable>
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<box
|
<box
|
||||||
className="available-waps"
|
className={'available-waps'}
|
||||||
vertical
|
vertical
|
||||||
onDestroy={() => {
|
onDestroy={() => {
|
||||||
wapBinding.drop();
|
wapBinding.drop();
|
||||||
|
|||||||
@@ -57,6 +57,10 @@ export const BluetoothMenuTheme = (): JSX.Element => {
|
|||||||
<Option opt={options.theme.bar.menus.menu.bluetooth.iconbutton.active} title="Active" type="color" />
|
<Option opt={options.theme.bar.menus.menu.bluetooth.iconbutton.active} title="Active" type="color" />
|
||||||
<Option opt={options.theme.bar.menus.menu.bluetooth.iconbutton.passive} title="Passive" type="color" />
|
<Option opt={options.theme.bar.menus.menu.bluetooth.iconbutton.passive} title="Passive" type="color" />
|
||||||
|
|
||||||
|
{/* Scroller Section */}
|
||||||
|
<Header title="Scroller" />
|
||||||
|
<Option opt={options.theme.bar.menus.menu.bluetooth.scroller.color} title="Color" type="color" />
|
||||||
|
|
||||||
{/* Switch Section */}
|
{/* Switch Section */}
|
||||||
<Header title="Switch" />
|
<Header title="Switch" />
|
||||||
<Option opt={options.theme.bar.menus.menu.bluetooth.switch.enabled} title="Enabled" type="color" />
|
<Option opt={options.theme.bar.menus.menu.bluetooth.switch.enabled} title="Enabled" type="color" />
|
||||||
|
|||||||
@@ -139,6 +139,11 @@ export const MenuTheme = (): JSX.Element => {
|
|||||||
/>
|
/>
|
||||||
<Option opt={options.theme.bar.menus.slider.puck} title="Puck" type="color" />
|
<Option opt={options.theme.bar.menus.slider.puck} title="Puck" type="color" />
|
||||||
|
|
||||||
|
{/* Scroller Section */}
|
||||||
|
<Header title="Scroller" />
|
||||||
|
<Option opt={options.theme.bar.menus.scroller.radius} title="Radius" type="string" />
|
||||||
|
<Option opt={options.theme.bar.menus.scroller.width} title="Width" type="string" />
|
||||||
|
|
||||||
{/* Dropdown Menu Section */}
|
{/* Dropdown Menu Section */}
|
||||||
<Header title="Dropdown Menu" />
|
<Header title="Dropdown Menu" />
|
||||||
<Option opt={options.theme.bar.menus.dropdownmenu.background} title="Background" type="color" />
|
<Option opt={options.theme.bar.menus.dropdownmenu.background} title="Background" type="color" />
|
||||||
|
|||||||
@@ -58,6 +58,10 @@ export const NetworkMenuTheme = (): JSX.Element => {
|
|||||||
<Option opt={options.theme.bar.menus.menu.network.icons.active} title="Active" type="color" />
|
<Option opt={options.theme.bar.menus.menu.network.icons.active} title="Active" type="color" />
|
||||||
<Option opt={options.theme.bar.menus.menu.network.icons.passive} title="Passive" type="color" />
|
<Option opt={options.theme.bar.menus.menu.network.icons.passive} title="Passive" type="color" />
|
||||||
|
|
||||||
|
{/* Scroller Section */}
|
||||||
|
<Header title="Scroller" />
|
||||||
|
<Option opt={options.theme.bar.menus.menu.network.scroller.color} title="Color" type="color" />
|
||||||
|
|
||||||
{/* Icon Buttons Section */}
|
{/* Icon Buttons Section */}
|
||||||
<Header title="Icon Buttons" />
|
<Header title="Icon Buttons" />
|
||||||
<Option opt={options.theme.bar.menus.menu.network.iconbuttons.active} title="Active" type="color" />
|
<Option opt={options.theme.bar.menus.menu.network.iconbuttons.active} title="Active" type="color" />
|
||||||
|
|||||||
@@ -468,6 +468,10 @@ const options = mkOptions(CONFIG, {
|
|||||||
slider_radius: opt('0.3rem'),
|
slider_radius: opt('0.3rem'),
|
||||||
progress_radius: opt('0.3rem'),
|
progress_radius: opt('0.3rem'),
|
||||||
},
|
},
|
||||||
|
scroller: {
|
||||||
|
radius: opt('0.7em'),
|
||||||
|
width: opt('0.25em'),
|
||||||
|
},
|
||||||
dropdownmenu: {
|
dropdownmenu: {
|
||||||
background: opt(colors.crust),
|
background: opt(colors.crust),
|
||||||
text: opt(colors.text),
|
text: opt(colors.text),
|
||||||
@@ -562,6 +566,9 @@ const options = mkOptions(CONFIG, {
|
|||||||
label: {
|
label: {
|
||||||
color: opt(colors.mauve),
|
color: opt(colors.mauve),
|
||||||
},
|
},
|
||||||
|
scroller: {
|
||||||
|
color: opt(colors.mauve),
|
||||||
|
},
|
||||||
text: opt(colors.text),
|
text: opt(colors.text),
|
||||||
status: {
|
status: {
|
||||||
color: opt(colors.overlay0),
|
color: opt(colors.overlay0),
|
||||||
@@ -598,6 +605,9 @@ const options = mkOptions(CONFIG, {
|
|||||||
label: {
|
label: {
|
||||||
color: opt(colors.sky),
|
color: opt(colors.sky),
|
||||||
},
|
},
|
||||||
|
scroller: {
|
||||||
|
color: opt(colors.sky),
|
||||||
|
},
|
||||||
text: opt(colors.text),
|
text: opt(colors.text),
|
||||||
status: opt(colors.overlay0),
|
status: opt(colors.overlay0),
|
||||||
switch_divider: opt(colors.surface1),
|
switch_divider: opt(colors.surface1),
|
||||||
|
|||||||
@@ -194,4 +194,16 @@
|
|||||||
.connection-status.txt-icon {
|
.connection-status.txt-icon {
|
||||||
margin-left: 0.2em;
|
margin-left: 0.2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.bluetooth-controls {
|
||||||
|
margin-right: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu-scroller.bluetooth {
|
||||||
|
min-height: 18em;
|
||||||
|
|
||||||
|
slider {
|
||||||
|
background: $bar-menus-menu-bluetooth-scroller-color;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -254,3 +254,14 @@
|
|||||||
animation-timing-function: linear;
|
animation-timing-function: linear;
|
||||||
animation-iteration-count: infinite;
|
animation-iteration-count: infinite;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.menu-scroller {
|
||||||
|
margin-right: 0em;
|
||||||
|
min-width: 0.35em;
|
||||||
|
|
||||||
|
slider {
|
||||||
|
min-width: $bar-menus-scroller-width;
|
||||||
|
border-radius: $bar-menus-scroller-radius;
|
||||||
|
background: $bar-menus-text;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -181,4 +181,16 @@
|
|||||||
background: if($bar-menus-monochrome, $bar-menus-switch-enabled, $bar-menus-menu-network-switch-enabled);
|
background: if($bar-menus-monochrome, $bar-menus-switch-enabled, $bar-menus-menu-network-switch-enabled);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.menu-scroller.wap {
|
||||||
|
min-height: 16em;
|
||||||
|
|
||||||
|
slider {
|
||||||
|
background: $bar-menus-menu-network-scroller-color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.network-element-controls-container {
|
||||||
|
margin-right: 0.7em;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -354,5 +354,7 @@
|
|||||||
"theme.bar.buttons.modules.hypridle.background": "#303446",
|
"theme.bar.buttons.modules.hypridle.background": "#303446",
|
||||||
"theme.bar.buttons.modules.hypridle.icon_background": "#e78284",
|
"theme.bar.buttons.modules.hypridle.icon_background": "#e78284",
|
||||||
"theme.bar.buttons.modules.hypridle.text": "#e78284",
|
"theme.bar.buttons.modules.hypridle.text": "#e78284",
|
||||||
"theme.bar.buttons.modules.hypridle.border": "#e78284"
|
"theme.bar.buttons.modules.hypridle.border": "#e78284",
|
||||||
|
"theme.bar.menus.menu.network.scroller.color": "#ca9ee6",
|
||||||
|
"theme.bar.menus.menu.bluetooth.scroller.color": "#99d1db"
|
||||||
}
|
}
|
||||||
@@ -354,5 +354,7 @@
|
|||||||
"theme.bar.buttons.modules.hypridle.background": "#303446",
|
"theme.bar.buttons.modules.hypridle.background": "#303446",
|
||||||
"theme.bar.buttons.modules.hypridle.icon_background": "#e78284",
|
"theme.bar.buttons.modules.hypridle.icon_background": "#e78284",
|
||||||
"theme.bar.buttons.modules.hypridle.text": "#e78284",
|
"theme.bar.buttons.modules.hypridle.text": "#e78284",
|
||||||
"theme.bar.buttons.modules.hypridle.border": "#e78284"
|
"theme.bar.buttons.modules.hypridle.border": "#e78284",
|
||||||
|
"theme.bar.menus.menu.network.scroller.color": "#ca9ee6",
|
||||||
|
"theme.bar.menus.menu.bluetooth.scroller.color": "#99d1db"
|
||||||
}
|
}
|
||||||
@@ -354,5 +354,7 @@
|
|||||||
"theme.bar.buttons.modules.hypridle.background": "#e78284",
|
"theme.bar.buttons.modules.hypridle.background": "#e78284",
|
||||||
"theme.bar.buttons.modules.hypridle.icon_background": "#e78284",
|
"theme.bar.buttons.modules.hypridle.icon_background": "#e78284",
|
||||||
"theme.bar.buttons.modules.hypridle.text": "#303446",
|
"theme.bar.buttons.modules.hypridle.text": "#303446",
|
||||||
"theme.bar.buttons.modules.hypridle.border": "#e78284"
|
"theme.bar.buttons.modules.hypridle.border": "#e78284",
|
||||||
|
"theme.bar.menus.menu.network.scroller.color": "#ca9ee6",
|
||||||
|
"theme.bar.menus.menu.bluetooth.scroller.color": "#99d1db"
|
||||||
}
|
}
|
||||||
@@ -354,5 +354,7 @@
|
|||||||
"theme.bar.buttons.modules.hypridle.background": "#dcdfe8",
|
"theme.bar.buttons.modules.hypridle.background": "#dcdfe8",
|
||||||
"theme.bar.buttons.modules.hypridle.icon_background": "#d20f39",
|
"theme.bar.buttons.modules.hypridle.icon_background": "#d20f39",
|
||||||
"theme.bar.buttons.modules.hypridle.text": "#d20f39",
|
"theme.bar.buttons.modules.hypridle.text": "#d20f39",
|
||||||
"theme.bar.buttons.modules.hypridle.border": "#d20f39"
|
"theme.bar.buttons.modules.hypridle.border": "#d20f39",
|
||||||
|
"theme.bar.menus.menu.network.scroller.color": "#8839ef",
|
||||||
|
"theme.bar.menus.menu.bluetooth.scroller.color": "#04a5e5"
|
||||||
}
|
}
|
||||||
@@ -354,5 +354,7 @@
|
|||||||
"theme.bar.buttons.modules.hypridle.background": "#dcdfe8",
|
"theme.bar.buttons.modules.hypridle.background": "#dcdfe8",
|
||||||
"theme.bar.buttons.modules.hypridle.icon_background": "#d20f39",
|
"theme.bar.buttons.modules.hypridle.icon_background": "#d20f39",
|
||||||
"theme.bar.buttons.modules.hypridle.text": "#d20f39",
|
"theme.bar.buttons.modules.hypridle.text": "#d20f39",
|
||||||
"theme.bar.buttons.modules.hypridle.border": "#d20f39"
|
"theme.bar.buttons.modules.hypridle.border": "#d20f39",
|
||||||
|
"theme.bar.menus.menu.network.scroller.color": "#8839ef",
|
||||||
|
"theme.bar.menus.menu.bluetooth.scroller.color": "#04a5e5"
|
||||||
}
|
}
|
||||||
@@ -354,5 +354,7 @@
|
|||||||
"theme.bar.buttons.modules.hypridle.background": "#d20f39",
|
"theme.bar.buttons.modules.hypridle.background": "#d20f39",
|
||||||
"theme.bar.buttons.modules.hypridle.icon_background": "#d20f39",
|
"theme.bar.buttons.modules.hypridle.icon_background": "#d20f39",
|
||||||
"theme.bar.buttons.modules.hypridle.text": "#dcdfe8",
|
"theme.bar.buttons.modules.hypridle.text": "#dcdfe8",
|
||||||
"theme.bar.buttons.modules.hypridle.border": "#d20f39"
|
"theme.bar.buttons.modules.hypridle.border": "#d20f39",
|
||||||
|
"theme.bar.menus.menu.network.scroller.color": "#8839ef",
|
||||||
|
"theme.bar.menus.menu.bluetooth.scroller.color": "#04a5e5"
|
||||||
}
|
}
|
||||||
@@ -354,5 +354,7 @@
|
|||||||
"theme.bar.buttons.modules.hypridle.background": "#24273a",
|
"theme.bar.buttons.modules.hypridle.background": "#24273a",
|
||||||
"theme.bar.buttons.modules.hypridle.icon_background": "#ed8796",
|
"theme.bar.buttons.modules.hypridle.icon_background": "#ed8796",
|
||||||
"theme.bar.buttons.modules.hypridle.text": "#ed8796",
|
"theme.bar.buttons.modules.hypridle.text": "#ed8796",
|
||||||
"theme.bar.buttons.modules.hypridle.border": "#ed8796"
|
"theme.bar.buttons.modules.hypridle.border": "#ed8796",
|
||||||
|
"theme.bar.menus.menu.network.scroller.color": "#c6a0f6",
|
||||||
|
"theme.bar.menus.menu.bluetooth.scroller.color": "#91d7e3"
|
||||||
}
|
}
|
||||||
@@ -354,5 +354,7 @@
|
|||||||
"theme.bar.buttons.modules.hypridle.background": "#24273a",
|
"theme.bar.buttons.modules.hypridle.background": "#24273a",
|
||||||
"theme.bar.buttons.modules.hypridle.icon_background": "#ed8796",
|
"theme.bar.buttons.modules.hypridle.icon_background": "#ed8796",
|
||||||
"theme.bar.buttons.modules.hypridle.text": "#ed8796",
|
"theme.bar.buttons.modules.hypridle.text": "#ed8796",
|
||||||
"theme.bar.buttons.modules.hypridle.border": "#ed8796"
|
"theme.bar.buttons.modules.hypridle.border": "#ed8796",
|
||||||
|
"theme.bar.menus.menu.network.scroller.color": "#c6a0f6",
|
||||||
|
"theme.bar.menus.menu.bluetooth.scroller.color": "#91d7e3"
|
||||||
}
|
}
|
||||||
@@ -354,5 +354,7 @@
|
|||||||
"theme.bar.buttons.modules.hypridle.background": "#ed8796",
|
"theme.bar.buttons.modules.hypridle.background": "#ed8796",
|
||||||
"theme.bar.buttons.modules.hypridle.icon_background": "#ed8796",
|
"theme.bar.buttons.modules.hypridle.icon_background": "#ed8796",
|
||||||
"theme.bar.buttons.modules.hypridle.text": "#24273a",
|
"theme.bar.buttons.modules.hypridle.text": "#24273a",
|
||||||
"theme.bar.buttons.modules.hypridle.border": "#ed8796"
|
"theme.bar.buttons.modules.hypridle.border": "#ed8796",
|
||||||
|
"theme.bar.menus.menu.network.scroller.color": "#c6a0f6",
|
||||||
|
"theme.bar.menus.menu.bluetooth.scroller.color": "#91d7e3"
|
||||||
}
|
}
|
||||||
@@ -133,6 +133,7 @@
|
|||||||
"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.scroller.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",
|
||||||
@@ -145,6 +146,7 @@
|
|||||||
"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.scroller.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",
|
||||||
|
|||||||
@@ -128,6 +128,7 @@
|
|||||||
"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.scroller.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",
|
||||||
@@ -140,6 +141,7 @@
|
|||||||
"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.scroller.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",
|
||||||
|
|||||||
@@ -1,358 +1,360 @@
|
|||||||
{
|
{
|
||||||
"theme.bar.menus.menu.notifications.scrollbar.color": "#b4befe",
|
"theme.bar.menus.menu.notifications.scrollbar.color": "#b4befe",
|
||||||
"theme.bar.menus.menu.notifications.pager.label": "#9399b2",
|
"theme.bar.menus.menu.notifications.pager.label": "#9399b2",
|
||||||
"theme.bar.menus.menu.notifications.pager.button": "#b4befe",
|
"theme.bar.menus.menu.notifications.pager.button": "#b4befe",
|
||||||
"theme.bar.menus.menu.notifications.pager.background": "#11111b",
|
"theme.bar.menus.menu.notifications.pager.background": "#11111b",
|
||||||
"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.power.buttons.sleep.icon": "#181824",
|
"theme.bar.menus.menu.power.buttons.sleep.icon": "#181824",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.text": "#89dceb",
|
"theme.bar.menus.menu.power.buttons.sleep.text": "#89dceb",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.icon_background": "#89dceb",
|
"theme.bar.menus.menu.power.buttons.sleep.icon_background": "#89dceb",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.background": "#1e1e2e",
|
"theme.bar.menus.menu.power.buttons.sleep.background": "#1e1e2e",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.icon": "#181824",
|
"theme.bar.menus.menu.power.buttons.logout.icon": "#181824",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.text": "#a6e3a1",
|
"theme.bar.menus.menu.power.buttons.logout.text": "#a6e3a1",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.icon_background": "#a6e3a1",
|
"theme.bar.menus.menu.power.buttons.logout.icon_background": "#a6e3a1",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.background": "#1e1e2e",
|
"theme.bar.menus.menu.power.buttons.logout.background": "#1e1e2e",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.icon": "#181824",
|
"theme.bar.menus.menu.power.buttons.restart.icon": "#181824",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.text": "#fab387",
|
"theme.bar.menus.menu.power.buttons.restart.text": "#fab387",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.icon_background": "#fab387",
|
"theme.bar.menus.menu.power.buttons.restart.icon_background": "#fab387",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.background": "#1e1e2e",
|
"theme.bar.menus.menu.power.buttons.restart.background": "#1e1e2e",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.icon": "#181824",
|
"theme.bar.menus.menu.power.buttons.shutdown.icon": "#181824",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.text": "#f38ba8",
|
"theme.bar.menus.menu.power.buttons.shutdown.text": "#f38ba8",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.icon_background": "#f38ba7",
|
"theme.bar.menus.menu.power.buttons.shutdown.icon_background": "#f38ba7",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.background": "#1e1e2e",
|
"theme.bar.menus.menu.power.buttons.shutdown.background": "#1e1e2e",
|
||||||
"theme.bar.menus.menu.power.border.color": "#313244",
|
"theme.bar.menus.menu.power.border.color": "#313244",
|
||||||
"theme.bar.menus.menu.power.background.color": "#11111b",
|
"theme.bar.menus.menu.power.background.color": "#11111b",
|
||||||
"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.confirmation.button_text": "#11111a",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#11111a",
|
||||||
"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.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.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.powermenu.shutdown": "#f38ba8",
|
"theme.bar.menus.menu.dashboard.powermenu.shutdown": "#f38ba8",
|
||||||
"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.scroller.color": "#89dceb",
|
||||||
"theme.bar.menus.menu.bluetooth.background.color": "#11111b",
|
"theme.bar.menus.menu.bluetooth.border.color": "#313244",
|
||||||
"theme.bar.menus.menu.bluetooth.card.color": "#1e1e2e",
|
"theme.bar.menus.menu.bluetooth.background.color": "#11111b",
|
||||||
"theme.bar.menus.menu.network.switch.puck": "#454759",
|
"theme.bar.menus.menu.bluetooth.card.color": "#1e1e2e",
|
||||||
"theme.bar.menus.menu.network.switch.disabled": "#313245",
|
"theme.bar.menus.menu.network.switch.puck": "#454759",
|
||||||
"theme.bar.menus.menu.network.switch.enabled": "#cba6f7",
|
"theme.bar.menus.menu.network.switch.disabled": "#313245",
|
||||||
"theme.bar.menus.menu.network.iconbuttons.active": "#cba6f7",
|
"theme.bar.menus.menu.network.switch.enabled": "#cba6f7",
|
||||||
"theme.bar.menus.menu.network.iconbuttons.passive": "#cdd6f4",
|
"theme.bar.menus.menu.network.iconbuttons.active": "#cba6f7",
|
||||||
"theme.bar.menus.menu.network.icons.active": "#cba6f7",
|
"theme.bar.menus.menu.network.iconbuttons.passive": "#cdd6f4",
|
||||||
"theme.bar.menus.menu.network.icons.passive": "#9399b2",
|
"theme.bar.menus.menu.network.icons.active": "#cba6f7",
|
||||||
"theme.bar.menus.menu.network.listitems.active": "#cba6f6",
|
"theme.bar.menus.menu.network.icons.passive": "#9399b2",
|
||||||
"theme.bar.menus.menu.network.listitems.passive": "#cdd6f4",
|
"theme.bar.menus.menu.network.listitems.active": "#cba6f6",
|
||||||
"theme.bar.menus.menu.network.status.color": "#6c7086",
|
"theme.bar.menus.menu.network.listitems.passive": "#cdd6f4",
|
||||||
"theme.bar.menus.menu.network.text": "#cdd6f4",
|
"theme.bar.menus.menu.network.status.color": "#6c7086",
|
||||||
"theme.bar.menus.menu.network.label.color": "#cba6f7",
|
"theme.bar.menus.menu.network.text": "#cdd6f4",
|
||||||
"theme.bar.menus.menu.network.border.color": "#313244",
|
"theme.bar.menus.menu.network.label.color": "#cba6f7",
|
||||||
"theme.bar.menus.menu.network.background.color": "#11111b",
|
"theme.bar.menus.menu.network.scroller.color": "#cba6f7",
|
||||||
"theme.bar.menus.menu.network.card.color": "#1e1e2e",
|
"theme.bar.menus.menu.network.border.color": "#313244",
|
||||||
"theme.bar.menus.menu.volume.input_slider.puck": "#585b70",
|
"theme.bar.menus.menu.network.background.color": "#11111b",
|
||||||
"theme.bar.menus.menu.volume.input_slider.backgroundhover": "#45475a",
|
"theme.bar.menus.menu.network.card.color": "#1e1e2e",
|
||||||
"theme.bar.menus.menu.volume.input_slider.background": "#585b71",
|
"theme.bar.menus.menu.volume.input_slider.puck": "#585b70",
|
||||||
"theme.bar.menus.menu.volume.input_slider.primary": "#eba0ac",
|
"theme.bar.menus.menu.volume.input_slider.backgroundhover": "#45475a",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.puck": "#585b70",
|
"theme.bar.menus.menu.volume.input_slider.background": "#585b71",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#45475a",
|
"theme.bar.menus.menu.volume.input_slider.primary": "#eba0ac",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.background": "#585b71",
|
"theme.bar.menus.menu.volume.audio_slider.puck": "#585b70",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.primary": "#eba0ac",
|
"theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#45475a",
|
||||||
"theme.bar.menus.menu.volume.icons.active": "#eba0ac",
|
"theme.bar.menus.menu.volume.audio_slider.background": "#585b71",
|
||||||
"theme.bar.menus.menu.volume.icons.passive": "#9399b2",
|
"theme.bar.menus.menu.volume.audio_slider.primary": "#eba0ac",
|
||||||
"theme.bar.menus.menu.volume.iconbutton.active": "#eba0ac",
|
"theme.bar.menus.menu.volume.icons.active": "#eba0ac",
|
||||||
"theme.bar.menus.menu.volume.iconbutton.passive": "#cdd6f4",
|
"theme.bar.menus.menu.volume.icons.passive": "#9399b2",
|
||||||
"theme.bar.menus.menu.volume.listitems.active": "#eba0ab",
|
"theme.bar.menus.menu.volume.iconbutton.active": "#eba0ac",
|
||||||
"theme.bar.menus.menu.volume.listitems.passive": "#cdd6f4",
|
"theme.bar.menus.menu.volume.iconbutton.passive": "#cdd6f4",
|
||||||
"theme.bar.menus.menu.volume.text": "#cdd6f4",
|
"theme.bar.menus.menu.volume.listitems.active": "#eba0ab",
|
||||||
"theme.bar.menus.menu.volume.label.color": "#eba0ac",
|
"theme.bar.menus.menu.volume.listitems.passive": "#cdd6f4",
|
||||||
"theme.bar.menus.menu.volume.border.color": "#313244",
|
"theme.bar.menus.menu.volume.text": "#cdd6f4",
|
||||||
"theme.bar.menus.menu.volume.background.color": "#11111b",
|
"theme.bar.menus.menu.volume.label.color": "#eba0ac",
|
||||||
"theme.bar.menus.menu.volume.card.color": "#1e1e2e",
|
"theme.bar.menus.menu.volume.border.color": "#313244",
|
||||||
"theme.bar.menus.menu.media.slider.puck": "#6c7086",
|
"theme.bar.menus.menu.volume.background.color": "#11111b",
|
||||||
"theme.bar.menus.menu.media.slider.backgroundhover": "#45475a",
|
"theme.bar.menus.menu.volume.card.color": "#1e1e2e",
|
||||||
"theme.bar.menus.menu.media.slider.background": "#585b71",
|
"theme.bar.menus.menu.media.slider.puck": "#6c7086",
|
||||||
"theme.bar.menus.menu.media.slider.primary": "#f5c2e7",
|
"theme.bar.menus.menu.media.slider.backgroundhover": "#45475a",
|
||||||
"theme.bar.menus.menu.media.buttons.text": "#11111b",
|
"theme.bar.menus.menu.media.slider.background": "#585b71",
|
||||||
"theme.bar.menus.menu.media.buttons.background": "#b4beff",
|
"theme.bar.menus.menu.media.slider.primary": "#f5c2e7",
|
||||||
"theme.bar.menus.menu.media.buttons.enabled": "#94e2d4",
|
"theme.bar.menus.menu.media.buttons.text": "#11111b",
|
||||||
"theme.bar.menus.menu.media.buttons.inactive": "#585b70",
|
"theme.bar.menus.menu.media.buttons.background": "#b4beff",
|
||||||
"theme.bar.menus.menu.media.border.color": "#313244",
|
"theme.bar.menus.menu.media.buttons.enabled": "#94e2d4",
|
||||||
"theme.bar.menus.menu.media.card.color": "#1e1e2e",
|
"theme.bar.menus.menu.media.buttons.inactive": "#585b70",
|
||||||
"theme.bar.menus.menu.media.background.color": "#11111b",
|
"theme.bar.menus.menu.media.border.color": "#313244",
|
||||||
"theme.bar.menus.menu.media.album": "#f5c2e8",
|
"theme.bar.menus.menu.media.card.color": "#1e1e2e",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#cdd6f4",
|
"theme.bar.menus.menu.media.background.color": "#11111b",
|
||||||
"theme.bar.menus.menu.media.artist": "#94e2d6",
|
"theme.bar.menus.menu.media.album": "#f5c2e8",
|
||||||
"theme.bar.menus.menu.media.song": "#b4beff",
|
"theme.bar.menus.menu.media.timestamp": "#cdd6f4",
|
||||||
"theme.bar.menus.tooltip.text": "#cdd6f4",
|
"theme.bar.menus.menu.media.artist": "#94e2d6",
|
||||||
"theme.bar.menus.tooltip.background": "#11111b",
|
"theme.bar.menus.menu.media.song": "#b4beff",
|
||||||
"theme.bar.menus.dropdownmenu.divider": "#1e1e2e",
|
"theme.bar.menus.tooltip.text": "#cdd6f4",
|
||||||
"theme.bar.menus.dropdownmenu.text": "#cdd6f4",
|
"theme.bar.menus.tooltip.background": "#11111b",
|
||||||
"theme.bar.menus.dropdownmenu.background": "#11111b",
|
"theme.bar.menus.dropdownmenu.divider": "#1e1e2e",
|
||||||
"theme.bar.menus.slider.puck": "#6c7086",
|
"theme.bar.menus.dropdownmenu.text": "#cdd6f4",
|
||||||
"theme.bar.menus.slider.backgroundhover": "#45475a",
|
"theme.bar.menus.dropdownmenu.background": "#11111b",
|
||||||
"theme.bar.menus.slider.background": "#585b71",
|
"theme.bar.menus.slider.puck": "#6c7086",
|
||||||
"theme.bar.menus.slider.primary": "#b4befe",
|
"theme.bar.menus.slider.backgroundhover": "#45475a",
|
||||||
"theme.bar.menus.progressbar.background": "#45475a",
|
"theme.bar.menus.slider.background": "#585b71",
|
||||||
"theme.bar.menus.progressbar.foreground": "#b4befe",
|
"theme.bar.menus.slider.primary": "#b4befe",
|
||||||
"theme.bar.menus.iconbuttons.active": "#b4beff",
|
"theme.bar.menus.progressbar.background": "#45475a",
|
||||||
"theme.bar.menus.iconbuttons.passive": "#cdd6f3",
|
"theme.bar.menus.progressbar.foreground": "#b4befe",
|
||||||
"theme.bar.menus.buttons.text": "#181824",
|
"theme.bar.menus.iconbuttons.active": "#b4beff",
|
||||||
"theme.bar.menus.buttons.disabled": "#585b71",
|
"theme.bar.menus.iconbuttons.passive": "#cdd6f3",
|
||||||
"theme.bar.menus.buttons.active": "#f5c2e6",
|
"theme.bar.menus.buttons.text": "#181824",
|
||||||
"theme.bar.menus.buttons.default": "#b4befe",
|
"theme.bar.menus.buttons.disabled": "#585b71",
|
||||||
"theme.bar.menus.check_radio_button.active": "#b4beff",
|
"theme.bar.menus.buttons.active": "#f5c2e6",
|
||||||
"theme.bar.menus.check_radio_button.background": "#45475a",
|
"theme.bar.menus.buttons.default": "#b4befe",
|
||||||
"theme.bar.menus.switch.puck": "#454759",
|
"theme.bar.menus.check_radio_button.active": "#b4beff",
|
||||||
"theme.bar.menus.switch.disabled": "#313245",
|
"theme.bar.menus.check_radio_button.background": "#45475a",
|
||||||
"theme.bar.menus.switch.enabled": "#b4befe",
|
"theme.bar.menus.switch.puck": "#454759",
|
||||||
"theme.bar.menus.icons.active": "#b4befe",
|
"theme.bar.menus.switch.disabled": "#313245",
|
||||||
"theme.bar.menus.icons.passive": "#585b70",
|
"theme.bar.menus.switch.enabled": "#b4befe",
|
||||||
"theme.bar.menus.listitems.active": "#b4befd",
|
"theme.bar.menus.icons.active": "#b4befe",
|
||||||
"theme.bar.menus.listitems.passive": "#cdd6f4",
|
"theme.bar.menus.icons.passive": "#585b70",
|
||||||
"theme.bar.menus.popover.border": "#181824",
|
"theme.bar.menus.listitems.active": "#b4befd",
|
||||||
"theme.bar.menus.popover.background": "#181824",
|
"theme.bar.menus.listitems.passive": "#cdd6f4",
|
||||||
"theme.bar.menus.popover.text": "#b4befe",
|
"theme.bar.menus.popover.border": "#181824",
|
||||||
"theme.bar.menus.label": "#b4befe",
|
"theme.bar.menus.popover.background": "#181824",
|
||||||
"theme.bar.menus.feinttext": "#313244",
|
"theme.bar.menus.popover.text": "#b4befe",
|
||||||
"theme.bar.menus.dimtext": "#585b70",
|
"theme.bar.menus.label": "#b4befe",
|
||||||
"theme.bar.menus.text": "#cdd6f4",
|
"theme.bar.menus.feinttext": "#313244",
|
||||||
"theme.bar.menus.border.color": "#313244",
|
"theme.bar.menus.dimtext": "#585b70",
|
||||||
"theme.bar.menus.cards": "#1e1e2e",
|
"theme.bar.menus.text": "#cdd6f4",
|
||||||
"theme.bar.menus.background": "#11111b",
|
"theme.bar.menus.border.color": "#313244",
|
||||||
"theme.bar.buttons.modules.submap.icon_background": "#94e2d5",
|
"theme.bar.menus.cards": "#1e1e2e",
|
||||||
"theme.bar.buttons.modules.submap.icon": "#232338",
|
"theme.bar.menus.background": "#11111b",
|
||||||
"theme.bar.buttons.modules.submap.text": "#242438",
|
"theme.bar.buttons.modules.submap.icon_background": "#94e2d5",
|
||||||
"theme.bar.buttons.modules.submap.background": "#94e2d5",
|
"theme.bar.buttons.modules.submap.icon": "#232338",
|
||||||
"theme.bar.buttons.modules.submap.border": "#94e2d5",
|
"theme.bar.buttons.modules.submap.text": "#242438",
|
||||||
"theme.bar.buttons.modules.power.icon_background": "#f38ba8",
|
"theme.bar.buttons.modules.submap.background": "#94e2d5",
|
||||||
"theme.bar.buttons.modules.power.icon": "#242438",
|
"theme.bar.buttons.modules.submap.border": "#94e2d5",
|
||||||
"theme.bar.buttons.modules.power.background": "#f38ba8",
|
"theme.bar.buttons.modules.power.icon_background": "#f38ba8",
|
||||||
"theme.bar.buttons.modules.power.border": "#f38ba8",
|
"theme.bar.buttons.modules.power.icon": "#242438",
|
||||||
"theme.bar.buttons.modules.weather.icon_background": "#b4befe",
|
"theme.bar.buttons.modules.power.background": "#f38ba8",
|
||||||
"theme.bar.buttons.modules.weather.icon": "#242438",
|
"theme.bar.buttons.modules.power.border": "#f38ba8",
|
||||||
"theme.bar.buttons.modules.weather.text": "#232338",
|
"theme.bar.buttons.modules.weather.icon_background": "#b4befe",
|
||||||
"theme.bar.buttons.modules.weather.background": "#b4befe",
|
"theme.bar.buttons.modules.weather.icon": "#242438",
|
||||||
"theme.bar.buttons.modules.weather.border": "#b4befe",
|
"theme.bar.buttons.modules.weather.text": "#232338",
|
||||||
"theme.bar.buttons.modules.updates.icon_background": "#cba6f7",
|
"theme.bar.buttons.modules.weather.background": "#b4befe",
|
||||||
"theme.bar.buttons.modules.updates.icon": "#242438",
|
"theme.bar.buttons.modules.weather.border": "#b4befe",
|
||||||
"theme.bar.buttons.modules.updates.text": "#242438",
|
"theme.bar.buttons.modules.updates.icon_background": "#cba6f7",
|
||||||
"theme.bar.buttons.modules.updates.background": "#cba6f7",
|
"theme.bar.buttons.modules.updates.icon": "#242438",
|
||||||
"theme.bar.buttons.modules.updates.border": "#cba6f7",
|
"theme.bar.buttons.modules.updates.text": "#242438",
|
||||||
"theme.bar.buttons.modules.kbLayout.icon_background": "#89dceb",
|
"theme.bar.buttons.modules.updates.background": "#cba6f7",
|
||||||
"theme.bar.buttons.modules.kbLayout.icon": "#242438",
|
"theme.bar.buttons.modules.updates.border": "#cba6f7",
|
||||||
"theme.bar.buttons.modules.kbLayout.text": "#242438",
|
"theme.bar.buttons.modules.kbLayout.icon_background": "#89dceb",
|
||||||
"theme.bar.buttons.modules.kbLayout.background": "#89dceb",
|
"theme.bar.buttons.modules.kbLayout.icon": "#242438",
|
||||||
"theme.bar.buttons.modules.kbLayout.border": "#89dceb",
|
"theme.bar.buttons.modules.kbLayout.text": "#242438",
|
||||||
"theme.bar.buttons.modules.netstat.icon_background": "#a6e3a1",
|
"theme.bar.buttons.modules.kbLayout.background": "#89dceb",
|
||||||
"theme.bar.buttons.modules.netstat.icon": "#242438",
|
"theme.bar.buttons.modules.kbLayout.border": "#89dceb",
|
||||||
"theme.bar.buttons.modules.netstat.text": "#242438",
|
"theme.bar.buttons.modules.netstat.icon_background": "#a6e3a1",
|
||||||
"theme.bar.buttons.modules.netstat.background": "#a6e3a1",
|
"theme.bar.buttons.modules.netstat.icon": "#242438",
|
||||||
"theme.bar.buttons.modules.netstat.border": "#a6e3a1",
|
"theme.bar.buttons.modules.netstat.text": "#242438",
|
||||||
"theme.bar.buttons.modules.storage.icon_background": "#f5c2e7",
|
"theme.bar.buttons.modules.netstat.background": "#a6e3a1",
|
||||||
"theme.bar.buttons.modules.storage.icon": "#232338",
|
"theme.bar.buttons.modules.netstat.border": "#a6e3a1",
|
||||||
"theme.bar.buttons.modules.storage.text": "#242438",
|
"theme.bar.buttons.modules.storage.icon_background": "#f5c2e7",
|
||||||
"theme.bar.buttons.modules.storage.background": "#f5c2e7",
|
"theme.bar.buttons.modules.storage.icon": "#232338",
|
||||||
"theme.bar.buttons.modules.storage.border": "#f5c2e7",
|
"theme.bar.buttons.modules.storage.text": "#242438",
|
||||||
"theme.bar.buttons.modules.cpu.icon_background": "#f38ba8",
|
"theme.bar.buttons.modules.storage.background": "#f5c2e7",
|
||||||
"theme.bar.buttons.modules.cpu.icon": "#242438",
|
"theme.bar.buttons.modules.storage.border": "#f5c2e7",
|
||||||
"theme.bar.buttons.modules.cpu.text": "#242438",
|
"theme.bar.buttons.modules.cpu.icon_background": "#f38ba8",
|
||||||
"theme.bar.buttons.modules.cpu.background": "#f38ba8",
|
"theme.bar.buttons.modules.cpu.icon": "#242438",
|
||||||
"theme.bar.buttons.modules.cpu.border": "#f38ba8",
|
"theme.bar.buttons.modules.cpu.text": "#242438",
|
||||||
"theme.bar.buttons.modules.ram.icon_background": "#f9e2af",
|
"theme.bar.buttons.modules.cpu.background": "#f38ba8",
|
||||||
"theme.bar.buttons.modules.ram.icon": "#242438",
|
"theme.bar.buttons.modules.cpu.border": "#f38ba8",
|
||||||
"theme.bar.buttons.modules.ram.text": "#242438",
|
"theme.bar.buttons.modules.ram.icon_background": "#f9e2af",
|
||||||
"theme.bar.buttons.modules.ram.background": "#f9e2af",
|
"theme.bar.buttons.modules.ram.icon": "#242438",
|
||||||
"theme.bar.buttons.modules.ram.border": "#f9e2af",
|
"theme.bar.buttons.modules.ram.text": "#242438",
|
||||||
"theme.bar.buttons.notifications.total": "#242438",
|
"theme.bar.buttons.modules.ram.background": "#f9e2af",
|
||||||
"theme.bar.buttons.notifications.icon_background": "#b4befe",
|
"theme.bar.buttons.modules.ram.border": "#f9e2af",
|
||||||
"theme.bar.buttons.notifications.icon": "#242438",
|
"theme.bar.buttons.notifications.total": "#242438",
|
||||||
"theme.bar.buttons.notifications.background": "#b4befe",
|
"theme.bar.buttons.notifications.icon_background": "#b4befe",
|
||||||
"theme.bar.buttons.notifications.border": "#b4befe",
|
"theme.bar.buttons.notifications.icon": "#242438",
|
||||||
"theme.bar.buttons.clock.icon_background": "#f5c2e7",
|
"theme.bar.buttons.notifications.background": "#b4befe",
|
||||||
"theme.bar.buttons.clock.icon": "#242438",
|
"theme.bar.buttons.notifications.border": "#b4befe",
|
||||||
"theme.bar.buttons.clock.text": "#242438",
|
"theme.bar.buttons.clock.icon_background": "#f5c2e7",
|
||||||
"theme.bar.buttons.clock.background": "#f5c2e7",
|
"theme.bar.buttons.clock.icon": "#242438",
|
||||||
"theme.bar.buttons.clock.border": "#f5c2e7",
|
"theme.bar.buttons.clock.text": "#242438",
|
||||||
"theme.bar.buttons.battery.icon_background": "#f9e2af",
|
"theme.bar.buttons.clock.background": "#f5c2e7",
|
||||||
"theme.bar.buttons.battery.icon": "#242438",
|
"theme.bar.buttons.clock.border": "#f5c2e7",
|
||||||
"theme.bar.buttons.battery.text": "#242438",
|
"theme.bar.buttons.battery.icon_background": "#f9e2af",
|
||||||
"theme.bar.buttons.battery.background": "#f9e2af",
|
"theme.bar.buttons.battery.icon": "#242438",
|
||||||
"theme.bar.buttons.battery.border": "#f9e2af",
|
"theme.bar.buttons.battery.text": "#242438",
|
||||||
"theme.bar.buttons.systray.background": "#242438",
|
"theme.bar.buttons.battery.background": "#f9e2af",
|
||||||
"theme.bar.buttons.systray.border": "#b4befe",
|
"theme.bar.buttons.battery.border": "#f9e2af",
|
||||||
"theme.bar.buttons.systray.customIcon": "#cdd6f4",
|
"theme.bar.buttons.systray.background": "#242438",
|
||||||
"theme.bar.buttons.bluetooth.icon_background": "#89dbeb",
|
"theme.bar.buttons.systray.border": "#b4befe",
|
||||||
"theme.bar.buttons.bluetooth.icon": "#242438",
|
"theme.bar.buttons.systray.customIcon": "#cdd6f4",
|
||||||
"theme.bar.buttons.bluetooth.text": "#242438",
|
"theme.bar.buttons.bluetooth.icon_background": "#89dbeb",
|
||||||
"theme.bar.buttons.bluetooth.background": "#89dceb",
|
"theme.bar.buttons.bluetooth.icon": "#242438",
|
||||||
"theme.bar.buttons.bluetooth.border": "#89dceb",
|
"theme.bar.buttons.bluetooth.text": "#242438",
|
||||||
"theme.bar.buttons.network.icon_background": "#caa6f7",
|
"theme.bar.buttons.bluetooth.background": "#89dceb",
|
||||||
"theme.bar.buttons.network.icon": "#242438",
|
"theme.bar.buttons.bluetooth.border": "#89dceb",
|
||||||
"theme.bar.buttons.network.text": "#242438",
|
"theme.bar.buttons.network.icon_background": "#caa6f7",
|
||||||
"theme.bar.buttons.network.background": "#cba6f7",
|
"theme.bar.buttons.network.icon": "#242438",
|
||||||
"theme.bar.buttons.network.border": "#cba6f7",
|
"theme.bar.buttons.network.text": "#242438",
|
||||||
"theme.bar.buttons.volume.icon_background": "#eba0ac",
|
"theme.bar.buttons.network.background": "#cba6f7",
|
||||||
"theme.bar.buttons.volume.icon": "#242438",
|
"theme.bar.buttons.network.border": "#cba6f7",
|
||||||
"theme.bar.buttons.volume.text": "#242438",
|
"theme.bar.buttons.volume.icon_background": "#eba0ac",
|
||||||
"theme.bar.buttons.volume.background": "#eba0ac",
|
"theme.bar.buttons.volume.icon": "#242438",
|
||||||
"theme.bar.buttons.volume.border": "#eba0ac",
|
"theme.bar.buttons.volume.text": "#242438",
|
||||||
"theme.bar.buttons.media.icon_background": "#b4befe",
|
"theme.bar.buttons.volume.background": "#eba0ac",
|
||||||
"theme.bar.buttons.media.icon": "#242438",
|
"theme.bar.buttons.volume.border": "#eba0ac",
|
||||||
"theme.bar.buttons.media.text": "#242438",
|
"theme.bar.buttons.media.icon_background": "#b4befe",
|
||||||
"theme.bar.buttons.media.background": "#b4befe",
|
"theme.bar.buttons.media.icon": "#242438",
|
||||||
"theme.bar.buttons.media.border": "#b4befe",
|
"theme.bar.buttons.media.text": "#242438",
|
||||||
"theme.bar.buttons.windowtitle.icon_background": "#f5c2e7",
|
"theme.bar.buttons.media.background": "#b4befe",
|
||||||
"theme.bar.buttons.windowtitle.icon": "#242438",
|
"theme.bar.buttons.media.border": "#b4befe",
|
||||||
"theme.bar.buttons.windowtitle.text": "#242438",
|
"theme.bar.buttons.windowtitle.icon_background": "#f5c2e7",
|
||||||
"theme.bar.buttons.windowtitle.border": "#f5c2e7",
|
"theme.bar.buttons.windowtitle.icon": "#242438",
|
||||||
"theme.bar.buttons.windowtitle.background": "#f5c2e7",
|
"theme.bar.buttons.windowtitle.text": "#242438",
|
||||||
"theme.bar.buttons.workspaces.numbered_active_underline_color": "#f5c2e7",
|
"theme.bar.buttons.windowtitle.border": "#f5c2e7",
|
||||||
"theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#181825",
|
"theme.bar.buttons.windowtitle.background": "#f5c2e7",
|
||||||
"theme.bar.buttons.workspaces.hover": "#f5c2e7",
|
"theme.bar.buttons.workspaces.numbered_active_underline_color": "#f5c2e7",
|
||||||
"theme.bar.buttons.workspaces.active": "#f5c2e7",
|
"theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#181825",
|
||||||
"theme.bar.buttons.workspaces.occupied": "#f2cdcd",
|
"theme.bar.buttons.workspaces.hover": "#f5c2e7",
|
||||||
"theme.bar.buttons.workspaces.available": "#89dceb",
|
"theme.bar.buttons.workspaces.active": "#f5c2e7",
|
||||||
"theme.bar.buttons.workspaces.border": "#f5c2e7",
|
"theme.bar.buttons.workspaces.occupied": "#f2cdcd",
|
||||||
"theme.bar.buttons.workspaces.background": "#242438",
|
"theme.bar.buttons.workspaces.available": "#89dceb",
|
||||||
"theme.bar.buttons.dashboard.icon": "#232338",
|
"theme.bar.buttons.workspaces.border": "#f5c2e7",
|
||||||
"theme.bar.buttons.dashboard.border": "#f9e2af",
|
"theme.bar.buttons.workspaces.background": "#242438",
|
||||||
"theme.bar.buttons.dashboard.background": "#f9e2af",
|
"theme.bar.buttons.dashboard.icon": "#232338",
|
||||||
"theme.bar.buttons.icon": "#b4befe",
|
"theme.bar.buttons.dashboard.border": "#f9e2af",
|
||||||
"theme.bar.buttons.text": "#b4befe",
|
"theme.bar.buttons.dashboard.background": "#f9e2af",
|
||||||
"theme.bar.buttons.hover": "#45475a",
|
"theme.bar.buttons.icon": "#b4befe",
|
||||||
"theme.bar.buttons.icon_background": "#242438",
|
"theme.bar.buttons.text": "#b4befe",
|
||||||
"theme.bar.buttons.background": "#242438",
|
"theme.bar.buttons.hover": "#45475a",
|
||||||
"theme.bar.buttons.borderColor": "#b4befe",
|
"theme.bar.buttons.icon_background": "#242438",
|
||||||
"theme.bar.buttons.style": "default",
|
"theme.bar.buttons.background": "#242438",
|
||||||
"theme.bar.background": "#11111b",
|
"theme.bar.buttons.borderColor": "#b4befe",
|
||||||
"theme.osd.label": "#b4beff",
|
"theme.bar.buttons.style": "default",
|
||||||
"theme.osd.icon": "#11111b",
|
"theme.bar.background": "#11111b",
|
||||||
"theme.osd.bar_overflow_color": "#f38ba7",
|
"theme.osd.label": "#b4beff",
|
||||||
"theme.osd.bar_empty_color": "#313244",
|
"theme.osd.icon": "#11111b",
|
||||||
"theme.osd.bar_color": "#b4beff",
|
"theme.osd.bar_overflow_color": "#f38ba7",
|
||||||
"theme.osd.icon_container": "#b4beff",
|
"theme.osd.bar_empty_color": "#313244",
|
||||||
"theme.osd.bar_container": "#11111b",
|
"theme.osd.bar_color": "#b4beff",
|
||||||
"theme.notification.close_button.label": "#11111b",
|
"theme.osd.icon_container": "#b4beff",
|
||||||
"theme.notification.close_button.background": "#f38ba7",
|
"theme.osd.bar_container": "#11111b",
|
||||||
"theme.notification.labelicon": "#b4befe",
|
"theme.notification.close_button.label": "#11111b",
|
||||||
"theme.notification.text": "#cdd6f4",
|
"theme.notification.close_button.background": "#f38ba7",
|
||||||
"theme.notification.time": "#7f849b",
|
"theme.notification.labelicon": "#b4befe",
|
||||||
"theme.notification.border": "#313243",
|
"theme.notification.text": "#cdd6f4",
|
||||||
"theme.notification.label": "#b4befe",
|
"theme.notification.time": "#7f849b",
|
||||||
"theme.notification.actions.text": "#181825",
|
"theme.notification.border": "#313243",
|
||||||
"theme.notification.actions.background": "#b4befd",
|
"theme.notification.label": "#b4befe",
|
||||||
"theme.notification.background": "#181826",
|
"theme.notification.actions.text": "#181825",
|
||||||
"theme.bar.border.color": "#b4befe",
|
"theme.notification.actions.background": "#b4befd",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon": "#242438",
|
"theme.notification.background": "#181826",
|
||||||
"theme.bar.buttons.modules.hyprsunset.background": "#fab387",
|
"theme.bar.border.color": "#b4befe",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#fab387",
|
"theme.bar.buttons.modules.hyprsunset.icon": "#242438",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#242438",
|
"theme.bar.buttons.modules.hyprsunset.background": "#fab387",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#fab387",
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#fab387",
|
||||||
"theme.bar.buttons.modules.hypridle.icon": "#242438",
|
"theme.bar.buttons.modules.hyprsunset.text": "#242438",
|
||||||
"theme.bar.buttons.modules.hypridle.background": "#f5c2e7",
|
"theme.bar.buttons.modules.hyprsunset.border": "#fab387",
|
||||||
"theme.bar.buttons.modules.hypridle.icon_background": "#f5c2e7",
|
"theme.bar.buttons.modules.hypridle.icon": "#242438",
|
||||||
"theme.bar.buttons.modules.hypridle.text": "#242438",
|
"theme.bar.buttons.modules.hypridle.background": "#f5c2e7",
|
||||||
"theme.bar.buttons.modules.hypridle.border": "#f5c2e7"
|
"theme.bar.buttons.modules.hypridle.icon_background": "#f5c2e7",
|
||||||
|
"theme.bar.buttons.modules.hypridle.text": "#242438",
|
||||||
|
"theme.bar.buttons.modules.hypridle.border": "#f5c2e7"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -354,5 +354,7 @@
|
|||||||
"theme.bar.buttons.modules.hypridle.background": "#121212",
|
"theme.bar.buttons.modules.hypridle.background": "#121212",
|
||||||
"theme.bar.buttons.modules.hypridle.icon_background": "#FF4500",
|
"theme.bar.buttons.modules.hypridle.icon_background": "#FF4500",
|
||||||
"theme.bar.buttons.modules.hypridle.text": "#FF4500",
|
"theme.bar.buttons.modules.hypridle.text": "#FF4500",
|
||||||
"theme.bar.buttons.modules.hypridle.border": "#FF4500"
|
"theme.bar.buttons.modules.hypridle.border": "#FF4500",
|
||||||
|
"theme.bar.menus.menu.network.scroller.color": "#FFD700",
|
||||||
|
"theme.bar.menus.menu.bluetooth.scroller.color": "#00FFFF"
|
||||||
}
|
}
|
||||||
@@ -354,5 +354,7 @@
|
|||||||
"theme.bar.buttons.modules.hypridle.background": "#121212",
|
"theme.bar.buttons.modules.hypridle.background": "#121212",
|
||||||
"theme.bar.buttons.modules.hypridle.icon_background": "#FF4500",
|
"theme.bar.buttons.modules.hypridle.icon_background": "#FF4500",
|
||||||
"theme.bar.buttons.modules.hypridle.text": "#FF4500",
|
"theme.bar.buttons.modules.hypridle.text": "#FF4500",
|
||||||
"theme.bar.buttons.modules.hypridle.border": "#FF4500"
|
"theme.bar.buttons.modules.hypridle.border": "#FF4500",
|
||||||
|
"theme.bar.menus.menu.network.scroller.color": "#FFD700",
|
||||||
|
"theme.bar.menus.menu.bluetooth.scroller.color": "#00FFFF"
|
||||||
}
|
}
|
||||||
@@ -354,5 +354,7 @@
|
|||||||
"theme.bar.buttons.modules.hypridle.background": "#FF4500",
|
"theme.bar.buttons.modules.hypridle.background": "#FF4500",
|
||||||
"theme.bar.buttons.modules.hypridle.icon_background": "#FF4500",
|
"theme.bar.buttons.modules.hypridle.icon_background": "#FF4500",
|
||||||
"theme.bar.buttons.modules.hypridle.text": "#121212",
|
"theme.bar.buttons.modules.hypridle.text": "#121212",
|
||||||
"theme.bar.buttons.modules.hypridle.border": "#FF4500"
|
"theme.bar.buttons.modules.hypridle.border": "#FF4500",
|
||||||
|
"theme.bar.menus.menu.network.scroller.color": "#FFD700",
|
||||||
|
"theme.bar.menus.menu.bluetooth.scroller.color": "#00FFFF"
|
||||||
}
|
}
|
||||||
@@ -354,5 +354,7 @@
|
|||||||
"theme.bar.buttons.modules.hypridle.background": "#44475a",
|
"theme.bar.buttons.modules.hypridle.background": "#44475a",
|
||||||
"theme.bar.buttons.modules.hypridle.icon_background": "#bd93f9",
|
"theme.bar.buttons.modules.hypridle.icon_background": "#bd93f9",
|
||||||
"theme.bar.buttons.modules.hypridle.text": "#bd93f9",
|
"theme.bar.buttons.modules.hypridle.text": "#bd93f9",
|
||||||
"theme.bar.buttons.modules.hypridle.border": "#bd93f9"
|
"theme.bar.buttons.modules.hypridle.border": "#bd93f9",
|
||||||
|
"theme.bar.menus.menu.network.scroller.color": "#bd93f9",
|
||||||
|
"theme.bar.menus.menu.bluetooth.scroller.color": "#8be9fd"
|
||||||
}
|
}
|
||||||
@@ -354,5 +354,7 @@
|
|||||||
"theme.bar.buttons.modules.hypridle.background": "#44475a",
|
"theme.bar.buttons.modules.hypridle.background": "#44475a",
|
||||||
"theme.bar.buttons.modules.hypridle.icon_background": "#bd93f9",
|
"theme.bar.buttons.modules.hypridle.icon_background": "#bd93f9",
|
||||||
"theme.bar.buttons.modules.hypridle.text": "#bd93f9",
|
"theme.bar.buttons.modules.hypridle.text": "#bd93f9",
|
||||||
"theme.bar.buttons.modules.hypridle.border": "#bd93f9"
|
"theme.bar.buttons.modules.hypridle.border": "#bd93f9",
|
||||||
|
"theme.bar.menus.menu.network.scroller.color": "#bd93f9",
|
||||||
|
"theme.bar.menus.menu.bluetooth.scroller.color": "#8be9fd"
|
||||||
}
|
}
|
||||||
@@ -354,5 +354,7 @@
|
|||||||
"theme.bar.buttons.modules.hypridle.background": "#bd93f9",
|
"theme.bar.buttons.modules.hypridle.background": "#bd93f9",
|
||||||
"theme.bar.buttons.modules.hypridle.icon_background": "#bd93f9",
|
"theme.bar.buttons.modules.hypridle.icon_background": "#bd93f9",
|
||||||
"theme.bar.buttons.modules.hypridle.text": "#44475a",
|
"theme.bar.buttons.modules.hypridle.text": "#44475a",
|
||||||
"theme.bar.buttons.modules.hypridle.border": "#bd93f9"
|
"theme.bar.buttons.modules.hypridle.border": "#bd93f9",
|
||||||
|
"theme.bar.menus.menu.network.scroller.color": "#bd93f9",
|
||||||
|
"theme.bar.menus.menu.bluetooth.scroller.color": "#8be9fd"
|
||||||
}
|
}
|
||||||
@@ -354,5 +354,7 @@
|
|||||||
"theme.bar.buttons.modules.hypridle.background": "#323d43",
|
"theme.bar.buttons.modules.hypridle.background": "#323d43",
|
||||||
"theme.bar.buttons.modules.hypridle.icon_background": "#e67e80",
|
"theme.bar.buttons.modules.hypridle.icon_background": "#e67e80",
|
||||||
"theme.bar.buttons.modules.hypridle.text": "#e67e80",
|
"theme.bar.buttons.modules.hypridle.text": "#e67e80",
|
||||||
"theme.bar.buttons.modules.hypridle.border": "#e67e80"
|
"theme.bar.buttons.modules.hypridle.border": "#e67e80",
|
||||||
|
"theme.bar.menus.menu.network.scroller.color": "#83c092",
|
||||||
|
"theme.bar.menus.menu.bluetooth.scroller.color": "#83c092"
|
||||||
}
|
}
|
||||||
@@ -354,5 +354,7 @@
|
|||||||
"theme.bar.buttons.modules.hypridle.background": "#323d43",
|
"theme.bar.buttons.modules.hypridle.background": "#323d43",
|
||||||
"theme.bar.buttons.modules.hypridle.icon_background": "#e67e80",
|
"theme.bar.buttons.modules.hypridle.icon_background": "#e67e80",
|
||||||
"theme.bar.buttons.modules.hypridle.text": "#e67e80",
|
"theme.bar.buttons.modules.hypridle.text": "#e67e80",
|
||||||
"theme.bar.buttons.modules.hypridle.border": "#e67e80"
|
"theme.bar.buttons.modules.hypridle.border": "#e67e80",
|
||||||
|
"theme.bar.menus.menu.network.scroller.color": "#83c092",
|
||||||
|
"theme.bar.menus.menu.bluetooth.scroller.color": "#83c092"
|
||||||
}
|
}
|
||||||
@@ -354,5 +354,7 @@
|
|||||||
"theme.bar.buttons.modules.hypridle.background": "#e67e80",
|
"theme.bar.buttons.modules.hypridle.background": "#e67e80",
|
||||||
"theme.bar.buttons.modules.hypridle.icon_background": "#e67e80",
|
"theme.bar.buttons.modules.hypridle.icon_background": "#e67e80",
|
||||||
"theme.bar.buttons.modules.hypridle.text": "#323d43",
|
"theme.bar.buttons.modules.hypridle.text": "#323d43",
|
||||||
"theme.bar.buttons.modules.hypridle.border": "#e67e80"
|
"theme.bar.buttons.modules.hypridle.border": "#e67e80",
|
||||||
|
"theme.bar.menus.menu.network.scroller.color": "#83c092",
|
||||||
|
"theme.bar.menus.menu.bluetooth.scroller.color": "#83c092"
|
||||||
}
|
}
|
||||||
@@ -354,5 +354,7 @@
|
|||||||
"theme.bar.buttons.modules.hypridle.background": "#282828",
|
"theme.bar.buttons.modules.hypridle.background": "#282828",
|
||||||
"theme.bar.buttons.modules.hypridle.icon_background": "#282828",
|
"theme.bar.buttons.modules.hypridle.icon_background": "#282828",
|
||||||
"theme.bar.buttons.modules.hypridle.text": "#83a598",
|
"theme.bar.buttons.modules.hypridle.text": "#83a598",
|
||||||
"theme.bar.buttons.modules.hypridle.border": "#83a598"
|
"theme.bar.buttons.modules.hypridle.border": "#83a598",
|
||||||
|
"theme.bar.menus.menu.network.scroller.color": "#b16286",
|
||||||
|
"theme.bar.menus.menu.bluetooth.scroller.color": "#83a598"
|
||||||
}
|
}
|
||||||
@@ -354,5 +354,7 @@
|
|||||||
"theme.bar.buttons.modules.hypridle.background": "#282828",
|
"theme.bar.buttons.modules.hypridle.background": "#282828",
|
||||||
"theme.bar.buttons.modules.hypridle.icon_background": "#83a598",
|
"theme.bar.buttons.modules.hypridle.icon_background": "#83a598",
|
||||||
"theme.bar.buttons.modules.hypridle.text": "#83a598",
|
"theme.bar.buttons.modules.hypridle.text": "#83a598",
|
||||||
"theme.bar.buttons.modules.hypridle.border": "#83a598"
|
"theme.bar.buttons.modules.hypridle.border": "#83a598",
|
||||||
|
"theme.bar.menus.menu.network.scroller.color": "#b16286",
|
||||||
|
"theme.bar.menus.menu.bluetooth.scroller.color": "#83a598"
|
||||||
}
|
}
|
||||||
@@ -354,5 +354,7 @@
|
|||||||
"theme.bar.buttons.modules.hypridle.background": "#83a598",
|
"theme.bar.buttons.modules.hypridle.background": "#83a598",
|
||||||
"theme.bar.buttons.modules.hypridle.icon_background": "#282828",
|
"theme.bar.buttons.modules.hypridle.icon_background": "#282828",
|
||||||
"theme.bar.buttons.modules.hypridle.text": "#282828",
|
"theme.bar.buttons.modules.hypridle.text": "#282828",
|
||||||
"theme.bar.buttons.modules.hypridle.border": "#83a598"
|
"theme.bar.buttons.modules.hypridle.border": "#83a598",
|
||||||
|
"theme.bar.menus.menu.network.scroller.color": "#b16286",
|
||||||
|
"theme.bar.menus.menu.bluetooth.scroller.color": "#83a598"
|
||||||
}
|
}
|
||||||
@@ -354,5 +354,7 @@
|
|||||||
"theme.bar.buttons.modules.hypridle.background": "#090909",
|
"theme.bar.buttons.modules.hypridle.background": "#090909",
|
||||||
"theme.bar.buttons.modules.hypridle.icon_background": "#ffffff",
|
"theme.bar.buttons.modules.hypridle.icon_background": "#ffffff",
|
||||||
"theme.bar.buttons.modules.hypridle.text": "#ffffff",
|
"theme.bar.buttons.modules.hypridle.text": "#ffffff",
|
||||||
"theme.bar.buttons.modules.hypridle.border": "#ffffff"
|
"theme.bar.buttons.modules.hypridle.border": "#ffffff",
|
||||||
|
"theme.bar.menus.menu.network.scroller.color": "#FFFFFF",
|
||||||
|
"theme.bar.menus.menu.bluetooth.scroller.color": "#ffffff"
|
||||||
}
|
}
|
||||||
@@ -354,5 +354,7 @@
|
|||||||
"theme.bar.buttons.modules.hypridle.background": "#090909",
|
"theme.bar.buttons.modules.hypridle.background": "#090909",
|
||||||
"theme.bar.buttons.modules.hypridle.icon_background": "#ffffff",
|
"theme.bar.buttons.modules.hypridle.icon_background": "#ffffff",
|
||||||
"theme.bar.buttons.modules.hypridle.text": "#ffffff",
|
"theme.bar.buttons.modules.hypridle.text": "#ffffff",
|
||||||
"theme.bar.buttons.modules.hypridle.border": "#ffffff"
|
"theme.bar.buttons.modules.hypridle.border": "#ffffff",
|
||||||
|
"theme.bar.menus.menu.network.scroller.color": "#FFFFFF",
|
||||||
|
"theme.bar.menus.menu.bluetooth.scroller.color": "#ffffff"
|
||||||
}
|
}
|
||||||
@@ -354,5 +354,7 @@
|
|||||||
"theme.bar.buttons.modules.hypridle.background": "#ffffff",
|
"theme.bar.buttons.modules.hypridle.background": "#ffffff",
|
||||||
"theme.bar.buttons.modules.hypridle.icon_background": "#ffffff",
|
"theme.bar.buttons.modules.hypridle.icon_background": "#ffffff",
|
||||||
"theme.bar.buttons.modules.hypridle.text": "#090909",
|
"theme.bar.buttons.modules.hypridle.text": "#090909",
|
||||||
"theme.bar.buttons.modules.hypridle.border": "#ffffff"
|
"theme.bar.buttons.modules.hypridle.border": "#ffffff",
|
||||||
|
"theme.bar.menus.menu.network.scroller.color": "#FFFFFF",
|
||||||
|
"theme.bar.menus.menu.bluetooth.scroller.color": "#ffffff"
|
||||||
}
|
}
|
||||||
@@ -354,5 +354,7 @@
|
|||||||
"theme.bar.buttons.modules.hypridle.background": "#3b4252",
|
"theme.bar.buttons.modules.hypridle.background": "#3b4252",
|
||||||
"theme.bar.buttons.modules.hypridle.icon_background": "#8fbcbb",
|
"theme.bar.buttons.modules.hypridle.icon_background": "#8fbcbb",
|
||||||
"theme.bar.buttons.modules.hypridle.text": "#8fbcbb",
|
"theme.bar.buttons.modules.hypridle.text": "#8fbcbb",
|
||||||
"theme.bar.buttons.modules.hypridle.border": "#8fbcbb"
|
"theme.bar.buttons.modules.hypridle.border": "#8fbcbb",
|
||||||
|
"theme.bar.menus.menu.network.scroller.color": "#88c0d0",
|
||||||
|
"theme.bar.menus.menu.bluetooth.scroller.color": "#88c0d0"
|
||||||
}
|
}
|
||||||
@@ -354,5 +354,7 @@
|
|||||||
"theme.bar.buttons.modules.hypridle.background": "#3b4252",
|
"theme.bar.buttons.modules.hypridle.background": "#3b4252",
|
||||||
"theme.bar.buttons.modules.hypridle.icon_background": "#8fbcbb",
|
"theme.bar.buttons.modules.hypridle.icon_background": "#8fbcbb",
|
||||||
"theme.bar.buttons.modules.hypridle.text": "#8fbcbb",
|
"theme.bar.buttons.modules.hypridle.text": "#8fbcbb",
|
||||||
"theme.bar.buttons.modules.hypridle.border": "#8fbcbb"
|
"theme.bar.buttons.modules.hypridle.border": "#8fbcbb",
|
||||||
|
"theme.bar.menus.menu.network.scroller.color": "#88c0d0",
|
||||||
|
"theme.bar.menus.menu.bluetooth.scroller.color": "#88c0d0"
|
||||||
}
|
}
|
||||||
@@ -354,5 +354,7 @@
|
|||||||
"theme.bar.buttons.modules.hypridle.background": "#8fbcbb",
|
"theme.bar.buttons.modules.hypridle.background": "#8fbcbb",
|
||||||
"theme.bar.buttons.modules.hypridle.icon_background": "#8fbcbb",
|
"theme.bar.buttons.modules.hypridle.icon_background": "#8fbcbb",
|
||||||
"theme.bar.buttons.modules.hypridle.text": "#3b4252",
|
"theme.bar.buttons.modules.hypridle.text": "#3b4252",
|
||||||
"theme.bar.buttons.modules.hypridle.border": "#8fbcbb"
|
"theme.bar.buttons.modules.hypridle.border": "#8fbcbb",
|
||||||
|
"theme.bar.menus.menu.network.scroller.color": "#88c0d0",
|
||||||
|
"theme.bar.menus.menu.bluetooth.scroller.color": "#88c0d0"
|
||||||
}
|
}
|
||||||
@@ -354,5 +354,7 @@
|
|||||||
"theme.bar.buttons.modules.hypridle.background": "#21252b",
|
"theme.bar.buttons.modules.hypridle.background": "#21252b",
|
||||||
"theme.bar.buttons.modules.hypridle.icon_background": "#e06c75",
|
"theme.bar.buttons.modules.hypridle.icon_background": "#e06c75",
|
||||||
"theme.bar.buttons.modules.hypridle.text": "#e06c75",
|
"theme.bar.buttons.modules.hypridle.text": "#e06c75",
|
||||||
"theme.bar.buttons.modules.hypridle.border": "#e06c75"
|
"theme.bar.buttons.modules.hypridle.border": "#e06c75",
|
||||||
|
"theme.bar.menus.menu.network.scroller.color": "#c678dd",
|
||||||
|
"theme.bar.menus.menu.bluetooth.scroller.color": "#56b6c2"
|
||||||
}
|
}
|
||||||
@@ -354,5 +354,7 @@
|
|||||||
"theme.bar.buttons.modules.hypridle.background": "#21252b",
|
"theme.bar.buttons.modules.hypridle.background": "#21252b",
|
||||||
"theme.bar.buttons.modules.hypridle.icon_background": "#e06c75",
|
"theme.bar.buttons.modules.hypridle.icon_background": "#e06c75",
|
||||||
"theme.bar.buttons.modules.hypridle.text": "#e06c75",
|
"theme.bar.buttons.modules.hypridle.text": "#e06c75",
|
||||||
"theme.bar.buttons.modules.hypridle.border": "#e06c75"
|
"theme.bar.buttons.modules.hypridle.border": "#e06c75",
|
||||||
|
"theme.bar.menus.menu.network.scroller.color": "#c678dd",
|
||||||
|
"theme.bar.menus.menu.bluetooth.scroller.color": "#56b6c2"
|
||||||
}
|
}
|
||||||
@@ -354,5 +354,7 @@
|
|||||||
"theme.bar.buttons.modules.hypridle.background": "#e06c75",
|
"theme.bar.buttons.modules.hypridle.background": "#e06c75",
|
||||||
"theme.bar.buttons.modules.hypridle.icon_background": "#e06c75",
|
"theme.bar.buttons.modules.hypridle.icon_background": "#e06c75",
|
||||||
"theme.bar.buttons.modules.hypridle.text": "#21252b",
|
"theme.bar.buttons.modules.hypridle.text": "#21252b",
|
||||||
"theme.bar.buttons.modules.hypridle.border": "#e06c75"
|
"theme.bar.buttons.modules.hypridle.border": "#e06c75",
|
||||||
|
"theme.bar.menus.menu.network.scroller.color": "#c678dd",
|
||||||
|
"theme.bar.menus.menu.bluetooth.scroller.color": "#56b6c2"
|
||||||
}
|
}
|
||||||
@@ -1,358 +1,360 @@
|
|||||||
{
|
{
|
||||||
"theme.bar.menus.background": "#191724",
|
"theme.bar.menus.background": "#191724",
|
||||||
"theme.bar.background": "#191724",
|
"theme.bar.background": "#191724",
|
||||||
"theme.bar.buttons.media.icon": "#c4a7e7",
|
"theme.bar.buttons.media.icon": "#c4a7e7",
|
||||||
"theme.bar.buttons.media.text": "#c4a7e7",
|
"theme.bar.buttons.media.text": "#c4a7e7",
|
||||||
"theme.bar.buttons.icon": "#c4a7e7",
|
"theme.bar.buttons.icon": "#c4a7e7",
|
||||||
"theme.bar.buttons.text": "#c4a7e7",
|
"theme.bar.buttons.text": "#c4a7e7",
|
||||||
"theme.bar.buttons.hover": "#26233a",
|
"theme.bar.buttons.hover": "#26233a",
|
||||||
"theme.bar.buttons.background": "#21202e",
|
"theme.bar.buttons.background": "#21202e",
|
||||||
"theme.bar.menus.text": "#e0def4",
|
"theme.bar.menus.text": "#e0def4",
|
||||||
"theme.bar.menus.border.color": "#1f1d2e",
|
"theme.bar.menus.border.color": "#1f1d2e",
|
||||||
"theme.bar.buttons.media.background": "#21202e",
|
"theme.bar.buttons.media.background": "#21202e",
|
||||||
"theme.bar.menus.menu.volume.text": "#e0def4",
|
"theme.bar.menus.menu.volume.text": "#e0def4",
|
||||||
"theme.bar.menus.menu.volume.card.color": "#21202e",
|
"theme.bar.menus.menu.volume.card.color": "#21202e",
|
||||||
"theme.bar.menus.menu.volume.label.color": "#eb6f92",
|
"theme.bar.menus.menu.volume.label.color": "#eb6f92",
|
||||||
"theme.bar.menus.popover.text": "#c4a7e7",
|
"theme.bar.menus.popover.text": "#c4a7e7",
|
||||||
"theme.bar.menus.popover.background": "#1f1d2e",
|
"theme.bar.menus.popover.background": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.shutdown": "#eb6f92",
|
"theme.bar.menus.menu.dashboard.powermenu.shutdown": "#eb6f92",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#eb6f92",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#eb6f92",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.confirm": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.confirm": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#191724",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#191724",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.body": "#e0def4",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.body": "#e0def4",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.border": "#1f1d2e",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.border": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#191724",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#191724",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#21202e",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#21202e",
|
||||||
"theme.bar.menus.menu.notifications.switch.puck": "#26233a",
|
"theme.bar.menus.menu.notifications.switch.puck": "#26233a",
|
||||||
"theme.bar.menus.menu.notifications.switch.disabled": "#1f1d2e",
|
"theme.bar.menus.menu.notifications.switch.disabled": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.notifications.switch.enabled": "#c4a7e7",
|
"theme.bar.menus.menu.notifications.switch.enabled": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.notifications.clear": "#eb6f92",
|
"theme.bar.menus.menu.notifications.clear": "#eb6f92",
|
||||||
"theme.bar.menus.menu.notifications.switch_divider": "#26233a",
|
"theme.bar.menus.menu.notifications.switch_divider": "#26233a",
|
||||||
"theme.bar.menus.menu.notifications.border": "#1f1d2e",
|
"theme.bar.menus.menu.notifications.border": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.notifications.card": "#21202e",
|
"theme.bar.menus.menu.notifications.card": "#21202e",
|
||||||
"theme.bar.menus.menu.notifications.background": "#191724",
|
"theme.bar.menus.menu.notifications.background": "#191724",
|
||||||
"theme.bar.menus.menu.notifications.no_notifications_label": "#1f1d2e",
|
"theme.bar.menus.menu.notifications.no_notifications_label": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.notifications.label": "#c4a7e7",
|
"theme.bar.menus.menu.notifications.label": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.disk.label": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.monitors.disk.label": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.disk.bar": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.monitors.disk.bar": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.disk.icon": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.monitors.disk.icon": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.gpu.label": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.monitors.gpu.label": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.gpu.icon": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.monitors.gpu.icon": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.ram.label": "#f6c177",
|
"theme.bar.menus.menu.dashboard.monitors.ram.label": "#f6c177",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.ram.bar": "#f6c177",
|
"theme.bar.menus.menu.dashboard.monitors.ram.bar": "#f6c177",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.ram.icon": "#f6c177",
|
"theme.bar.menus.menu.dashboard.monitors.ram.icon": "#f6c177",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.cpu.label": "#eb6f92",
|
"theme.bar.menus.menu.dashboard.monitors.cpu.label": "#eb6f92",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#eb6f92",
|
"theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#eb6f92",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#eb6f92",
|
"theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#eb6f92",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.bar_background": "#26233a",
|
"theme.bar.menus.menu.dashboard.monitors.bar_background": "#26233a",
|
||||||
"theme.bar.menus.menu.dashboard.directories.right.bottom.color": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.directories.right.bottom.color": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.directories.right.middle.color": "#30738f",
|
"theme.bar.menus.menu.dashboard.directories.right.middle.color": "#30738f",
|
||||||
"theme.bar.menus.menu.dashboard.directories.right.top.color": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.directories.right.top.color": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#eb6f92",
|
"theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#eb6f92",
|
||||||
"theme.bar.menus.menu.dashboard.directories.left.middle.color": "#f6c177",
|
"theme.bar.menus.menu.dashboard.directories.left.middle.color": "#f6c177",
|
||||||
"theme.bar.menus.menu.dashboard.directories.left.top.color": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.directories.left.top.color": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.controls.input.text": "#1f1d2e",
|
"theme.bar.menus.menu.dashboard.controls.input.text": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.dashboard.controls.input.background": "#30738f",
|
"theme.bar.menus.menu.dashboard.controls.input.background": "#30738f",
|
||||||
"theme.bar.menus.menu.dashboard.controls.volume.text": "#1f1d2e",
|
"theme.bar.menus.menu.dashboard.controls.volume.text": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.dashboard.controls.volume.background": "#eb6f92",
|
"theme.bar.menus.menu.dashboard.controls.volume.background": "#eb6f92",
|
||||||
"theme.bar.menus.menu.dashboard.controls.notifications.text": "#1f1d2e",
|
"theme.bar.menus.menu.dashboard.controls.notifications.text": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.dashboard.controls.notifications.background": "#f6c177",
|
"theme.bar.menus.menu.dashboard.controls.notifications.background": "#f6c177",
|
||||||
"theme.bar.menus.menu.dashboard.controls.bluetooth.text": "#1f1d2e",
|
"theme.bar.menus.menu.dashboard.controls.bluetooth.text": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.controls.wifi.text": "#1f1d2e",
|
"theme.bar.menus.menu.dashboard.controls.wifi.text": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.dashboard.controls.wifi.background": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.controls.wifi.background": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.controls.disabled": "#403d52",
|
"theme.bar.menus.menu.dashboard.controls.disabled": "#403d52",
|
||||||
"theme.bar.menus.menu.dashboard.shortcuts.recording": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.shortcuts.recording": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.shortcuts.text": "#1f1d2e",
|
"theme.bar.menus.menu.dashboard.shortcuts.text": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.dashboard.shortcuts.background": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.shortcuts.background": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.sleep": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.powermenu.sleep": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.logout": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.powermenu.logout": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.restart": "#f6c177",
|
"theme.bar.menus.menu.dashboard.powermenu.restart": "#f6c177",
|
||||||
"theme.bar.menus.menu.dashboard.profile.name": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.profile.name": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.border.color": "#1f1d2e",
|
"theme.bar.menus.menu.dashboard.border.color": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.dashboard.background.color": "#191724",
|
"theme.bar.menus.menu.dashboard.background.color": "#191724",
|
||||||
"theme.bar.menus.menu.dashboard.card.color": "#21202e",
|
"theme.bar.menus.menu.dashboard.card.color": "#21202e",
|
||||||
"theme.bar.menus.menu.clock.weather.hourly.temperature": "#c4a7e7",
|
"theme.bar.menus.menu.clock.weather.hourly.temperature": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.weather.hourly.icon": "#c4a7e7",
|
"theme.bar.menus.menu.clock.weather.hourly.icon": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.weather.hourly.time": "#c4a7e7",
|
"theme.bar.menus.menu.clock.weather.hourly.time": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.extremelycold": "#9ccfd8",
|
"theme.bar.menus.menu.clock.weather.thermometer.extremelycold": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.cold": "#31748f",
|
"theme.bar.menus.menu.clock.weather.thermometer.cold": "#31748f",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.moderate": "#c4a7e7",
|
"theme.bar.menus.menu.clock.weather.thermometer.moderate": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.hot": "#f6c177",
|
"theme.bar.menus.menu.clock.weather.thermometer.hot": "#f6c177",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#eb6f92",
|
"theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#eb6f92",
|
||||||
"theme.bar.menus.menu.clock.weather.stats": "#c4a7e7",
|
"theme.bar.menus.menu.clock.weather.stats": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.weather.status": "#9ccfd8",
|
"theme.bar.menus.menu.clock.weather.status": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.clock.weather.temperature": "#e0def4",
|
"theme.bar.menus.menu.clock.weather.temperature": "#e0def4",
|
||||||
"theme.bar.menus.menu.clock.weather.icon": "#c4a7e7",
|
"theme.bar.menus.menu.clock.weather.icon": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.calendar.contextdays": "#403d52",
|
"theme.bar.menus.menu.clock.calendar.contextdays": "#403d52",
|
||||||
"theme.bar.menus.menu.clock.calendar.days": "#e0def4",
|
"theme.bar.menus.menu.clock.calendar.days": "#e0def4",
|
||||||
"theme.bar.menus.menu.clock.calendar.currentday": "#c4a7e7",
|
"theme.bar.menus.menu.clock.calendar.currentday": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.calendar.paginator": "#c4a7e7",
|
"theme.bar.menus.menu.clock.calendar.paginator": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.calendar.weekdays": "#c4a7e7",
|
"theme.bar.menus.menu.clock.calendar.weekdays": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.calendar.yearmonth": "#9ccfd8",
|
"theme.bar.menus.menu.clock.calendar.yearmonth": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.clock.time.timeperiod": "#9ccfd8",
|
"theme.bar.menus.menu.clock.time.timeperiod": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.clock.time.time": "#c4a7e7",
|
"theme.bar.menus.menu.clock.time.time": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.text": "#e0def4",
|
"theme.bar.menus.menu.clock.text": "#e0def4",
|
||||||
"theme.bar.menus.menu.clock.border.color": "#1f1d2e",
|
"theme.bar.menus.menu.clock.border.color": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.clock.background.color": "#191724",
|
"theme.bar.menus.menu.clock.background.color": "#191724",
|
||||||
"theme.bar.menus.menu.clock.card.color": "#21202e",
|
"theme.bar.menus.menu.clock.card.color": "#21202e",
|
||||||
"theme.bar.menus.menu.battery.slider.puck": "#26233a",
|
"theme.bar.menus.menu.battery.slider.puck": "#26233a",
|
||||||
"theme.bar.menus.menu.battery.slider.backgroundhover": "#26233a",
|
"theme.bar.menus.menu.battery.slider.backgroundhover": "#26233a",
|
||||||
"theme.bar.menus.menu.battery.slider.background": "#403d52",
|
"theme.bar.menus.menu.battery.slider.background": "#403d52",
|
||||||
"theme.bar.menus.menu.battery.slider.primary": "#f6c177",
|
"theme.bar.menus.menu.battery.slider.primary": "#f6c177",
|
||||||
"theme.bar.menus.menu.battery.icons.active": "#f6c177",
|
"theme.bar.menus.menu.battery.icons.active": "#f6c177",
|
||||||
"theme.bar.menus.menu.battery.icons.passive": "#524f67",
|
"theme.bar.menus.menu.battery.icons.passive": "#524f67",
|
||||||
"theme.bar.menus.menu.battery.listitems.active": "#f6c177",
|
"theme.bar.menus.menu.battery.listitems.active": "#f6c177",
|
||||||
"theme.bar.menus.menu.battery.listitems.passive": "#e0def4",
|
"theme.bar.menus.menu.battery.listitems.passive": "#e0def4",
|
||||||
"theme.bar.menus.menu.battery.text": "#e0def4",
|
"theme.bar.menus.menu.battery.text": "#e0def4",
|
||||||
"theme.bar.menus.menu.battery.label.color": "#f6c177",
|
"theme.bar.menus.menu.battery.label.color": "#f6c177",
|
||||||
"theme.bar.menus.menu.battery.border.color": "#1f1d2e",
|
"theme.bar.menus.menu.battery.border.color": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.battery.background.color": "#191724",
|
"theme.bar.menus.menu.battery.background.color": "#191724",
|
||||||
"theme.bar.menus.menu.battery.card.color": "#21202e",
|
"theme.bar.menus.menu.battery.card.color": "#21202e",
|
||||||
"theme.bar.menus.menu.systray.dropdownmenu.divider": "#21202e",
|
"theme.bar.menus.menu.systray.dropdownmenu.divider": "#21202e",
|
||||||
"theme.bar.menus.menu.systray.dropdownmenu.text": "#e0def4",
|
"theme.bar.menus.menu.systray.dropdownmenu.text": "#e0def4",
|
||||||
"theme.bar.menus.menu.systray.dropdownmenu.background": "#191724",
|
"theme.bar.menus.menu.systray.dropdownmenu.background": "#191724",
|
||||||
"theme.bar.menus.menu.bluetooth.iconbutton.active": "#9ccfd8",
|
"theme.bar.menus.menu.bluetooth.iconbutton.active": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.bluetooth.iconbutton.passive": "#e0def4",
|
"theme.bar.menus.menu.bluetooth.iconbutton.passive": "#e0def4",
|
||||||
"theme.bar.menus.menu.bluetooth.icons.active": "#9ccfd8",
|
"theme.bar.menus.menu.bluetooth.icons.active": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.bluetooth.icons.passive": "#524f67",
|
"theme.bar.menus.menu.bluetooth.icons.passive": "#524f67",
|
||||||
"theme.bar.menus.menu.bluetooth.listitems.active": "#9ccfd8",
|
"theme.bar.menus.menu.bluetooth.listitems.active": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.bluetooth.listitems.passive": "#e0def4",
|
"theme.bar.menus.menu.bluetooth.listitems.passive": "#e0def4",
|
||||||
"theme.bar.menus.menu.bluetooth.switch.puck": "#26233a",
|
"theme.bar.menus.menu.bluetooth.switch.puck": "#26233a",
|
||||||
"theme.bar.menus.menu.bluetooth.switch.disabled": "#1f1d2e",
|
"theme.bar.menus.menu.bluetooth.switch.disabled": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.bluetooth.switch.enabled": "#9ccfd8",
|
"theme.bar.menus.menu.bluetooth.switch.enabled": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.bluetooth.switch_divider": "#26233a",
|
"theme.bar.menus.menu.bluetooth.switch_divider": "#26233a",
|
||||||
"theme.bar.menus.menu.bluetooth.status": "#26233a",
|
"theme.bar.menus.menu.bluetooth.status": "#26233a",
|
||||||
"theme.bar.menus.menu.bluetooth.text": "#e0def4",
|
"theme.bar.menus.menu.bluetooth.text": "#e0def4",
|
||||||
"theme.bar.menus.menu.bluetooth.label.color": "#9ccfd8",
|
"theme.bar.menus.menu.bluetooth.label.color": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.bluetooth.border.color": "#1f1d2e",
|
"theme.bar.menus.menu.bluetooth.border.color": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.bluetooth.background.color": "#191724",
|
"theme.bar.menus.menu.bluetooth.background.color": "#191724",
|
||||||
"theme.bar.menus.menu.bluetooth.card.color": "#21202e",
|
"theme.bar.menus.menu.bluetooth.card.color": "#21202e",
|
||||||
"theme.bar.menus.menu.network.iconbuttons.active": "#c4a7e7",
|
"theme.bar.menus.menu.network.iconbuttons.active": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.network.iconbuttons.passive": "#e0def4",
|
"theme.bar.menus.menu.network.iconbuttons.passive": "#e0def4",
|
||||||
"theme.bar.menus.menu.network.icons.active": "#c4a7e7",
|
"theme.bar.menus.menu.network.icons.active": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.network.icons.passive": "#524f67",
|
"theme.bar.menus.menu.network.icons.passive": "#524f67",
|
||||||
"theme.bar.menus.menu.network.listitems.active": "#c4a7e7",
|
"theme.bar.menus.menu.network.listitems.active": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.network.listitems.passive": "#e0def4",
|
"theme.bar.menus.menu.network.listitems.passive": "#e0def4",
|
||||||
"theme.bar.menus.menu.network.status.color": "#26233a",
|
"theme.bar.menus.menu.network.status.color": "#26233a",
|
||||||
"theme.bar.menus.menu.network.text": "#e0def4",
|
"theme.bar.menus.menu.network.text": "#e0def4",
|
||||||
"theme.bar.menus.menu.network.label.color": "#c4a7e7",
|
"theme.bar.menus.menu.network.label.color": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.network.border.color": "#1f1d2e",
|
"theme.bar.menus.menu.network.border.color": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.network.background.color": "#191724",
|
"theme.bar.menus.menu.network.background.color": "#191724",
|
||||||
"theme.bar.menus.menu.network.card.color": "#21202e",
|
"theme.bar.menus.menu.network.card.color": "#21202e",
|
||||||
"theme.bar.menus.menu.volume.input_slider.puck": "#403d52",
|
"theme.bar.menus.menu.volume.input_slider.puck": "#403d52",
|
||||||
"theme.bar.menus.menu.volume.input_slider.backgroundhover": "#26233a",
|
"theme.bar.menus.menu.volume.input_slider.backgroundhover": "#26233a",
|
||||||
"theme.bar.menus.menu.volume.input_slider.background": "#403d52",
|
"theme.bar.menus.menu.volume.input_slider.background": "#403d52",
|
||||||
"theme.bar.menus.menu.volume.input_slider.primary": "#eb6f92",
|
"theme.bar.menus.menu.volume.input_slider.primary": "#eb6f92",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.puck": "#403d52",
|
"theme.bar.menus.menu.volume.audio_slider.puck": "#403d52",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#26233a",
|
"theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#26233a",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.background": "#403d52",
|
"theme.bar.menus.menu.volume.audio_slider.background": "#403d52",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.primary": "#eb6f92",
|
"theme.bar.menus.menu.volume.audio_slider.primary": "#eb6f92",
|
||||||
"theme.bar.menus.menu.volume.icons.active": "#eb6f92",
|
"theme.bar.menus.menu.volume.icons.active": "#eb6f92",
|
||||||
"theme.bar.menus.menu.volume.icons.passive": "#524f67",
|
"theme.bar.menus.menu.volume.icons.passive": "#524f67",
|
||||||
"theme.bar.menus.menu.volume.iconbutton.active": "#eb6f92",
|
"theme.bar.menus.menu.volume.iconbutton.active": "#eb6f92",
|
||||||
"theme.bar.menus.menu.volume.iconbutton.passive": "#e0def4",
|
"theme.bar.menus.menu.volume.iconbutton.passive": "#e0def4",
|
||||||
"theme.bar.menus.menu.volume.listitems.active": "#eb6f92",
|
"theme.bar.menus.menu.volume.listitems.active": "#eb6f92",
|
||||||
"theme.bar.menus.menu.volume.listitems.passive": "#e0def4",
|
"theme.bar.menus.menu.volume.listitems.passive": "#e0def4",
|
||||||
"theme.bar.menus.menu.volume.border.color": "#1f1d2e",
|
"theme.bar.menus.menu.volume.border.color": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.volume.background.color": "#191724",
|
"theme.bar.menus.menu.volume.background.color": "#191724",
|
||||||
"theme.bar.menus.menu.media.slider.puck": "#26233a",
|
"theme.bar.menus.menu.media.slider.puck": "#26233a",
|
||||||
"theme.bar.menus.menu.media.slider.backgroundhover": "#26233a",
|
"theme.bar.menus.menu.media.slider.backgroundhover": "#26233a",
|
||||||
"theme.bar.menus.menu.media.slider.background": "#403d52",
|
"theme.bar.menus.menu.media.slider.background": "#403d52",
|
||||||
"theme.bar.menus.menu.media.slider.primary": "#c4a7e7",
|
"theme.bar.menus.menu.media.slider.primary": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.media.buttons.text": "#191724",
|
"theme.bar.menus.menu.media.buttons.text": "#191724",
|
||||||
"theme.bar.menus.menu.media.buttons.background": "#c4a7e7",
|
"theme.bar.menus.menu.media.buttons.background": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.media.buttons.enabled": "#9ccfd8",
|
"theme.bar.menus.menu.media.buttons.enabled": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.media.buttons.inactive": "#403d52",
|
"theme.bar.menus.menu.media.buttons.inactive": "#403d52",
|
||||||
"theme.bar.menus.menu.media.border.color": "#1f1d2e",
|
"theme.bar.menus.menu.media.border.color": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.media.background.color": "#191724",
|
"theme.bar.menus.menu.media.background.color": "#191724",
|
||||||
"theme.bar.menus.menu.media.album": "#c4a7e7",
|
"theme.bar.menus.menu.media.album": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.media.artist": "#9ccfd8",
|
"theme.bar.menus.menu.media.artist": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.media.song": "#c4a7e7",
|
"theme.bar.menus.menu.media.song": "#c4a7e7",
|
||||||
"theme.bar.menus.tooltip.text": "#e0def4",
|
"theme.bar.menus.tooltip.text": "#e0def4",
|
||||||
"theme.bar.menus.tooltip.background": "#191724",
|
"theme.bar.menus.tooltip.background": "#191724",
|
||||||
"theme.bar.menus.dropdownmenu.divider": "#21202e",
|
"theme.bar.menus.dropdownmenu.divider": "#21202e",
|
||||||
"theme.bar.menus.dropdownmenu.text": "#e0def4",
|
"theme.bar.menus.dropdownmenu.text": "#e0def4",
|
||||||
"theme.bar.menus.dropdownmenu.background": "#191724",
|
"theme.bar.menus.dropdownmenu.background": "#191724",
|
||||||
"theme.bar.menus.slider.puck": "#26233a",
|
"theme.bar.menus.slider.puck": "#26233a",
|
||||||
"theme.bar.menus.slider.backgroundhover": "#26233a",
|
"theme.bar.menus.slider.backgroundhover": "#26233a",
|
||||||
"theme.bar.menus.slider.background": "#403d52",
|
"theme.bar.menus.slider.background": "#403d52",
|
||||||
"theme.bar.menus.slider.primary": "#c4a7e7",
|
"theme.bar.menus.slider.primary": "#c4a7e7",
|
||||||
"theme.bar.menus.progressbar.background": "#26233a",
|
"theme.bar.menus.progressbar.background": "#26233a",
|
||||||
"theme.bar.menus.progressbar.foreground": "#c4a7e7",
|
"theme.bar.menus.progressbar.foreground": "#c4a7e7",
|
||||||
"theme.bar.menus.iconbuttons.active": "#c4a7e7",
|
"theme.bar.menus.iconbuttons.active": "#c4a7e7",
|
||||||
"theme.bar.menus.iconbuttons.passive": "#e0def4",
|
"theme.bar.menus.iconbuttons.passive": "#e0def4",
|
||||||
"theme.bar.menus.buttons.text": "#1f1d2e",
|
"theme.bar.menus.buttons.text": "#1f1d2e",
|
||||||
"theme.bar.menus.buttons.disabled": "#403d52",
|
"theme.bar.menus.buttons.disabled": "#403d52",
|
||||||
"theme.bar.menus.buttons.active": "#c4a7e7",
|
"theme.bar.menus.buttons.active": "#c4a7e7",
|
||||||
"theme.bar.menus.buttons.default": "#c4a7e7",
|
"theme.bar.menus.buttons.default": "#c4a7e7",
|
||||||
"theme.bar.menus.switch.puck": "#26233a",
|
"theme.bar.menus.switch.puck": "#26233a",
|
||||||
"theme.bar.menus.switch.disabled": "#1f1d2e",
|
"theme.bar.menus.switch.disabled": "#1f1d2e",
|
||||||
"theme.bar.menus.switch.enabled": "#c4a7e7",
|
"theme.bar.menus.switch.enabled": "#c4a7e7",
|
||||||
"theme.bar.menus.icons.active": "#c4a7e7",
|
"theme.bar.menus.icons.active": "#c4a7e7",
|
||||||
"theme.bar.menus.icons.passive": "#403d52",
|
"theme.bar.menus.icons.passive": "#403d52",
|
||||||
"theme.bar.menus.listitems.active": "#c4a7e7",
|
"theme.bar.menus.listitems.active": "#c4a7e7",
|
||||||
"theme.bar.menus.listitems.passive": "#e0def4",
|
"theme.bar.menus.listitems.passive": "#e0def4",
|
||||||
"theme.bar.menus.label": "#c4a7e7",
|
"theme.bar.menus.label": "#c4a7e7",
|
||||||
"theme.bar.menus.feinttext": "#1f1d2e",
|
"theme.bar.menus.feinttext": "#1f1d2e",
|
||||||
"theme.bar.menus.dimtext": "#403d52",
|
"theme.bar.menus.dimtext": "#403d52",
|
||||||
"theme.bar.menus.cards": "#21202e",
|
"theme.bar.menus.cards": "#21202e",
|
||||||
"theme.bar.buttons.notifications.total": "#c4a7e7",
|
"theme.bar.buttons.notifications.total": "#c4a7e7",
|
||||||
"theme.bar.buttons.notifications.icon": "#c4a7e7",
|
"theme.bar.buttons.notifications.icon": "#c4a7e7",
|
||||||
"theme.bar.buttons.notifications.background": "#21202e",
|
"theme.bar.buttons.notifications.background": "#21202e",
|
||||||
"theme.bar.buttons.clock.icon": "#c4a7e7",
|
"theme.bar.buttons.clock.icon": "#c4a7e7",
|
||||||
"theme.bar.buttons.clock.text": "#c4a7e7",
|
"theme.bar.buttons.clock.text": "#c4a7e7",
|
||||||
"theme.bar.buttons.clock.background": "#21202e",
|
"theme.bar.buttons.clock.background": "#21202e",
|
||||||
"theme.bar.buttons.battery.icon": "#f6c177",
|
"theme.bar.buttons.battery.icon": "#f6c177",
|
||||||
"theme.bar.buttons.battery.text": "#f6c177",
|
"theme.bar.buttons.battery.text": "#f6c177",
|
||||||
"theme.bar.buttons.battery.background": "#21202e",
|
"theme.bar.buttons.battery.background": "#21202e",
|
||||||
"theme.bar.buttons.systray.background": "#21202e",
|
"theme.bar.buttons.systray.background": "#21202e",
|
||||||
"theme.bar.buttons.bluetooth.icon": "#9ccfd8",
|
"theme.bar.buttons.bluetooth.icon": "#9ccfd8",
|
||||||
"theme.bar.buttons.bluetooth.text": "#9ccfd8",
|
"theme.bar.buttons.bluetooth.text": "#9ccfd8",
|
||||||
"theme.bar.buttons.bluetooth.background": "#21202e",
|
"theme.bar.buttons.bluetooth.background": "#21202e",
|
||||||
"theme.bar.buttons.network.icon": "#c4a7e7",
|
"theme.bar.buttons.network.icon": "#c4a7e7",
|
||||||
"theme.bar.buttons.network.text": "#c4a7e7",
|
"theme.bar.buttons.network.text": "#c4a7e7",
|
||||||
"theme.bar.buttons.network.background": "#21202e",
|
"theme.bar.buttons.network.background": "#21202e",
|
||||||
"theme.bar.buttons.volume.icon": "#eb6f92",
|
"theme.bar.buttons.volume.icon": "#eb6f92",
|
||||||
"theme.bar.buttons.volume.text": "#eb6f92",
|
"theme.bar.buttons.volume.text": "#eb6f92",
|
||||||
"theme.bar.buttons.volume.background": "#21202e",
|
"theme.bar.buttons.volume.background": "#21202e",
|
||||||
"theme.bar.buttons.windowtitle.icon": "#c4a7e7",
|
"theme.bar.buttons.windowtitle.icon": "#c4a7e7",
|
||||||
"theme.bar.buttons.windowtitle.text": "#c4a7e7",
|
"theme.bar.buttons.windowtitle.text": "#c4a7e7",
|
||||||
"theme.bar.buttons.windowtitle.background": "#21202e",
|
"theme.bar.buttons.windowtitle.background": "#21202e",
|
||||||
"theme.bar.buttons.workspaces.active": "#c4a7e7",
|
"theme.bar.buttons.workspaces.active": "#c4a7e7",
|
||||||
"theme.bar.buttons.workspaces.occupied": "#eb6f92",
|
"theme.bar.buttons.workspaces.occupied": "#eb6f92",
|
||||||
"theme.bar.buttons.workspaces.available": "#9ccfd8",
|
"theme.bar.buttons.workspaces.available": "#9ccfd8",
|
||||||
"theme.bar.buttons.workspaces.hover": "#26233a",
|
"theme.bar.buttons.workspaces.hover": "#26233a",
|
||||||
"theme.bar.buttons.workspaces.background": "#21202e",
|
"theme.bar.buttons.workspaces.background": "#21202e",
|
||||||
"theme.bar.buttons.dashboard.icon": "#f6c177",
|
"theme.bar.buttons.dashboard.icon": "#f6c177",
|
||||||
"theme.bar.buttons.dashboard.background": "#21202e",
|
"theme.bar.buttons.dashboard.background": "#21202e",
|
||||||
"theme.osd.label": "#c4a7e7",
|
"theme.osd.label": "#c4a7e7",
|
||||||
"theme.osd.icon": "#191724",
|
"theme.osd.icon": "#191724",
|
||||||
"theme.osd.bar_overflow_color": "#eb6f92",
|
"theme.osd.bar_overflow_color": "#eb6f92",
|
||||||
"theme.osd.bar_empty_color": "#1f1d2e",
|
"theme.osd.bar_empty_color": "#1f1d2e",
|
||||||
"theme.osd.bar_color": "#c4a7e7",
|
"theme.osd.bar_color": "#c4a7e7",
|
||||||
"theme.osd.icon_container": "#c4a7e7",
|
"theme.osd.icon_container": "#c4a7e7",
|
||||||
"theme.osd.bar_container": "#191724",
|
"theme.osd.bar_container": "#191724",
|
||||||
"theme.notification.close_button.label": "#191724",
|
"theme.notification.close_button.label": "#191724",
|
||||||
"theme.notification.close_button.background": "#eb6f92",
|
"theme.notification.close_button.background": "#eb6f92",
|
||||||
"theme.notification.labelicon": "#c4a7e7",
|
"theme.notification.labelicon": "#c4a7e7",
|
||||||
"theme.notification.text": "#e0def4",
|
"theme.notification.text": "#e0def4",
|
||||||
"theme.notification.time": "#403d52",
|
"theme.notification.time": "#403d52",
|
||||||
"theme.notification.border": "#1f1d2e",
|
"theme.notification.border": "#1f1d2e",
|
||||||
"theme.notification.label": "#c4a7e7",
|
"theme.notification.label": "#c4a7e7",
|
||||||
"theme.notification.actions.text": "#1f1d2e",
|
"theme.notification.actions.text": "#1f1d2e",
|
||||||
"theme.notification.actions.background": "#c4a7e7",
|
"theme.notification.actions.background": "#c4a7e7",
|
||||||
"theme.notification.background": "#1f1d2e",
|
"theme.notification.background": "#1f1d2e",
|
||||||
"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": "#c678dd",
|
"theme.bar.buttons.workspaces.numbered_active_underline_color": "#c678dd",
|
||||||
"theme.bar.menus.menu.media.card.color": "#21202e",
|
"theme.bar.menus.menu.media.card.color": "#21202e",
|
||||||
"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.menus.menu.notifications.pager.button": "#c4a7e7",
|
"theme.bar.menus.menu.notifications.pager.button": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.notifications.scrollbar.color": "#c4a7e7",
|
"theme.bar.menus.menu.notifications.scrollbar.color": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.notifications.pager.label": "#524f67",
|
"theme.bar.menus.menu.notifications.pager.label": "#524f67",
|
||||||
"theme.bar.menus.menu.notifications.pager.background": "#191724",
|
"theme.bar.menus.menu.notifications.pager.background": "#191724",
|
||||||
"theme.bar.buttons.clock.icon_background": "#c4a7e7",
|
"theme.bar.buttons.clock.icon_background": "#c4a7e7",
|
||||||
"theme.bar.buttons.modules.ram.icon": "#f6c177",
|
"theme.bar.buttons.modules.ram.icon": "#f6c177",
|
||||||
"theme.bar.buttons.modules.storage.icon_background": "#eb6f92",
|
"theme.bar.buttons.modules.storage.icon_background": "#eb6f92",
|
||||||
"theme.bar.menus.popover.border": "#1f1d2e",
|
"theme.bar.menus.popover.border": "#1f1d2e",
|
||||||
"theme.bar.buttons.volume.icon_background": "#eb6f92",
|
"theme.bar.buttons.volume.icon_background": "#eb6f92",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.icon_background": "#9ccfd8",
|
"theme.bar.menus.menu.power.buttons.sleep.icon_background": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.text": "#f6c177",
|
"theme.bar.menus.menu.power.buttons.restart.text": "#f6c177",
|
||||||
"theme.bar.buttons.modules.updates.background": "#21202e",
|
"theme.bar.buttons.modules.updates.background": "#21202e",
|
||||||
"theme.bar.buttons.modules.storage.icon": "#eb6f92",
|
"theme.bar.buttons.modules.storage.icon": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.netstat.background": "#21202e",
|
"theme.bar.buttons.modules.netstat.background": "#21202e",
|
||||||
"theme.bar.buttons.modules.weather.icon": "#c4a7e7",
|
"theme.bar.buttons.modules.weather.icon": "#c4a7e7",
|
||||||
"theme.bar.buttons.modules.netstat.text": "#9ccfd8",
|
"theme.bar.buttons.modules.netstat.text": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.storage.background": "#21202e",
|
"theme.bar.buttons.modules.storage.background": "#21202e",
|
||||||
"theme.bar.buttons.modules.power.icon": "#eb6f92",
|
"theme.bar.buttons.modules.power.icon": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.storage.text": "#eb6f92",
|
"theme.bar.buttons.modules.storage.text": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.cpu.background": "#21202e",
|
"theme.bar.buttons.modules.cpu.background": "#21202e",
|
||||||
"theme.bar.menus.menu.power.border.color": "#1f1d2e",
|
"theme.bar.menus.menu.power.border.color": "#1f1d2e",
|
||||||
"theme.bar.buttons.network.icon_background": "#caa6f7",
|
"theme.bar.buttons.network.icon_background": "#caa6f7",
|
||||||
"theme.bar.buttons.modules.power.icon_background": "#eb6f92",
|
"theme.bar.buttons.modules.power.icon_background": "#eb6f92",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.icon": "#1f1d2e",
|
"theme.bar.menus.menu.power.buttons.logout.icon": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.icon_background": "#f6c177",
|
"theme.bar.menus.menu.power.buttons.restart.icon_background": "#f6c177",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.icon": "#1f1d2e",
|
"theme.bar.menus.menu.power.buttons.restart.icon": "#1f1d2e",
|
||||||
"theme.bar.buttons.modules.cpu.icon": "#eb6f92",
|
"theme.bar.buttons.modules.cpu.icon": "#eb6f92",
|
||||||
"theme.bar.buttons.battery.icon_background": "#f6c177",
|
"theme.bar.buttons.battery.icon_background": "#f6c177",
|
||||||
"theme.bar.buttons.modules.kbLayout.icon_background": "#9ccfd8",
|
"theme.bar.buttons.modules.kbLayout.icon_background": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.weather.text": "#c4a7e7",
|
"theme.bar.buttons.modules.weather.text": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.icon": "#1f1d2e",
|
"theme.bar.menus.menu.power.buttons.shutdown.icon": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.text": "#9ccfd8",
|
"theme.bar.menus.menu.power.buttons.sleep.text": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.weather.icon_background": "#c4a7e7",
|
"theme.bar.buttons.modules.weather.icon_background": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.background": "#21202e",
|
"theme.bar.menus.menu.power.buttons.shutdown.background": "#21202e",
|
||||||
"theme.bar.buttons.media.icon_background": "#c4a7e7",
|
"theme.bar.buttons.media.icon_background": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.background": "#21202e",
|
"theme.bar.menus.menu.power.buttons.logout.background": "#21202e",
|
||||||
"theme.bar.buttons.modules.kbLayout.icon": "#9ccfd8",
|
"theme.bar.buttons.modules.kbLayout.icon": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.ram.icon_background": "#f6c177",
|
"theme.bar.buttons.modules.ram.icon_background": "#f6c177",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.icon_background": "#eb6f92",
|
"theme.bar.menus.menu.power.buttons.shutdown.icon_background": "#eb6f92",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.text": "#eb6f92",
|
"theme.bar.menus.menu.power.buttons.shutdown.text": "#eb6f92",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.background": "#21202e",
|
"theme.bar.menus.menu.power.buttons.sleep.background": "#21202e",
|
||||||
"theme.bar.buttons.modules.ram.text": "#f6c177",
|
"theme.bar.buttons.modules.ram.text": "#f6c177",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.text": "#9ccfd8",
|
"theme.bar.menus.menu.power.buttons.logout.text": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.updates.icon_background": "#30738f",
|
"theme.bar.buttons.modules.updates.icon_background": "#30738f",
|
||||||
"theme.bar.buttons.modules.kbLayout.background": "#21202e",
|
"theme.bar.buttons.modules.kbLayout.background": "#21202e",
|
||||||
"theme.bar.buttons.modules.power.background": "#21202e",
|
"theme.bar.buttons.modules.power.background": "#21202e",
|
||||||
"theme.bar.buttons.modules.weather.background": "#21202e",
|
"theme.bar.buttons.modules.weather.background": "#21202e",
|
||||||
"theme.bar.buttons.icon_background": "#21202e",
|
"theme.bar.buttons.icon_background": "#21202e",
|
||||||
"theme.bar.menus.menu.power.background.color": "#191724",
|
"theme.bar.menus.menu.power.background.color": "#191724",
|
||||||
"theme.bar.buttons.modules.ram.background": "#21202e",
|
"theme.bar.buttons.modules.ram.background": "#21202e",
|
||||||
"theme.bar.buttons.modules.netstat.icon": "#9ccfd8",
|
"theme.bar.buttons.modules.netstat.icon": "#9ccfd8",
|
||||||
"theme.bar.buttons.windowtitle.icon_background": "#c4a7e7",
|
"theme.bar.buttons.windowtitle.icon_background": "#c4a7e7",
|
||||||
"theme.bar.buttons.modules.cpu.icon_background": "#eb6f92",
|
"theme.bar.buttons.modules.cpu.icon_background": "#eb6f92",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.icon_background": "#9ccfd8",
|
"theme.bar.menus.menu.power.buttons.logout.icon_background": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.updates.text": "#30738f",
|
"theme.bar.buttons.modules.updates.text": "#30738f",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.icon": "#1f1d2e",
|
"theme.bar.menus.menu.power.buttons.sleep.icon": "#1f1d2e",
|
||||||
"theme.bar.buttons.bluetooth.icon_background": "#89dbeb",
|
"theme.bar.buttons.bluetooth.icon_background": "#89dbeb",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.background": "#21202e",
|
"theme.bar.menus.menu.power.buttons.restart.background": "#21202e",
|
||||||
"theme.bar.buttons.modules.updates.icon": "#30738f",
|
"theme.bar.buttons.modules.updates.icon": "#30738f",
|
||||||
"theme.bar.buttons.modules.cpu.text": "#eb6f92",
|
"theme.bar.buttons.modules.cpu.text": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.netstat.icon_background": "#9ccfd8",
|
"theme.bar.buttons.modules.netstat.icon_background": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.kbLayout.text": "#9ccfd8",
|
"theme.bar.buttons.modules.kbLayout.text": "#9ccfd8",
|
||||||
"theme.bar.buttons.notifications.icon_background": "#c4a7e7",
|
"theme.bar.buttons.notifications.icon_background": "#c4a7e7",
|
||||||
"theme.bar.buttons.modules.power.border": "#eb6f92",
|
"theme.bar.buttons.modules.power.border": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.weather.border": "#c4a7e7",
|
"theme.bar.buttons.modules.weather.border": "#c4a7e7",
|
||||||
"theme.bar.buttons.modules.updates.border": "#30738f",
|
"theme.bar.buttons.modules.updates.border": "#30738f",
|
||||||
"theme.bar.buttons.modules.kbLayout.border": "#9ccfd8",
|
"theme.bar.buttons.modules.kbLayout.border": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.netstat.border": "#9ccfd8",
|
"theme.bar.buttons.modules.netstat.border": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.storage.border": "#eb6f92",
|
"theme.bar.buttons.modules.storage.border": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.cpu.border": "#eb6f92",
|
"theme.bar.buttons.modules.cpu.border": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.ram.border": "#f6c177",
|
"theme.bar.buttons.modules.ram.border": "#f6c177",
|
||||||
"theme.bar.buttons.notifications.border": "#c4a7e7",
|
"theme.bar.buttons.notifications.border": "#c4a7e7",
|
||||||
"theme.bar.buttons.clock.border": "#c4a7e7",
|
"theme.bar.buttons.clock.border": "#c4a7e7",
|
||||||
"theme.bar.buttons.battery.border": "#f6c177",
|
"theme.bar.buttons.battery.border": "#f6c177",
|
||||||
"theme.bar.buttons.systray.border": "#26233a",
|
"theme.bar.buttons.systray.border": "#26233a",
|
||||||
"theme.bar.buttons.bluetooth.border": "#9ccfd8",
|
"theme.bar.buttons.bluetooth.border": "#9ccfd8",
|
||||||
"theme.bar.buttons.network.border": "#c4a7e7",
|
"theme.bar.buttons.network.border": "#c4a7e7",
|
||||||
"theme.bar.buttons.volume.border": "#eb6f92",
|
"theme.bar.buttons.volume.border": "#eb6f92",
|
||||||
"theme.bar.buttons.media.border": "#c4a7e7",
|
"theme.bar.buttons.media.border": "#c4a7e7",
|
||||||
"theme.bar.buttons.windowtitle.border": "#c4a7e7",
|
"theme.bar.buttons.windowtitle.border": "#c4a7e7",
|
||||||
"theme.bar.buttons.workspaces.border": "#1f1d2e",
|
"theme.bar.buttons.workspaces.border": "#1f1d2e",
|
||||||
"theme.bar.buttons.dashboard.border": "#f6c177",
|
"theme.bar.buttons.dashboard.border": "#f6c177",
|
||||||
"theme.bar.buttons.modules.submap.background": "#21202e",
|
"theme.bar.buttons.modules.submap.background": "#21202e",
|
||||||
"theme.bar.buttons.modules.submap.text": "#9ccfd8",
|
"theme.bar.buttons.modules.submap.text": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.submap.border": "#9ccfd8",
|
"theme.bar.buttons.modules.submap.border": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.submap.icon": "#9ccfd8",
|
"theme.bar.buttons.modules.submap.icon": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.submap.icon_background": "#21202e",
|
"theme.bar.buttons.modules.submap.icon_background": "#21202e",
|
||||||
"theme.bar.menus.menu.network.switch.enabled": "#c4a7e7",
|
"theme.bar.menus.menu.network.switch.enabled": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.network.switch.disabled": "#1f1d2e",
|
"theme.bar.menus.menu.network.switch.disabled": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.network.switch.puck": "#26233a",
|
"theme.bar.menus.menu.network.switch.puck": "#26233a",
|
||||||
"theme.bar.buttons.systray.customIcon": "#e0def4",
|
"theme.bar.buttons.systray.customIcon": "#e0def4",
|
||||||
"theme.bar.border.color": "#c4a7e7",
|
"theme.bar.border.color": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#e0def4",
|
"theme.bar.menus.menu.media.timestamp": "#e0def4",
|
||||||
"theme.bar.buttons.borderColor": "#c4a7e7",
|
"theme.bar.buttons.borderColor": "#c4a7e7",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon": "#f6c177",
|
"theme.bar.buttons.modules.hyprsunset.icon": "#f6c177",
|
||||||
"theme.bar.buttons.modules.hyprsunset.background": "#21202e",
|
"theme.bar.buttons.modules.hyprsunset.background": "#21202e",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#f6c177",
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#f6c177",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#f6c177",
|
"theme.bar.buttons.modules.hyprsunset.text": "#f6c177",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#f6c177",
|
"theme.bar.buttons.modules.hyprsunset.border": "#f6c177",
|
||||||
"theme.bar.buttons.modules.hypridle.icon": "#eb6f92",
|
"theme.bar.buttons.modules.hypridle.icon": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.hypridle.background": "#21202e",
|
"theme.bar.buttons.modules.hypridle.background": "#21202e",
|
||||||
"theme.bar.buttons.modules.hypridle.icon_background": "#eb6f92",
|
"theme.bar.buttons.modules.hypridle.icon_background": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.hypridle.text": "#eb6f92",
|
"theme.bar.buttons.modules.hypridle.text": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.hypridle.border": "#eb6f92"
|
"theme.bar.buttons.modules.hypridle.border": "#eb6f92",
|
||||||
|
"theme.bar.menus.menu.network.scroller.color": "#c4a7e7",
|
||||||
|
"theme.bar.menus.menu.bluetooth.scroller.color": "#9ccfd8"
|
||||||
}
|
}
|
||||||
@@ -1,358 +1,360 @@
|
|||||||
{
|
{
|
||||||
"theme.bar.menus.background": "#232136",
|
"theme.bar.menus.background": "#232136",
|
||||||
"theme.bar.background": "#232136",
|
"theme.bar.background": "#232136",
|
||||||
"theme.bar.buttons.media.icon": "#c4a7e7",
|
"theme.bar.buttons.media.icon": "#c4a7e7",
|
||||||
"theme.bar.buttons.media.text": "#c4a7e7",
|
"theme.bar.buttons.media.text": "#c4a7e7",
|
||||||
"theme.bar.buttons.icon": "#c4a7e7",
|
"theme.bar.buttons.icon": "#c4a7e7",
|
||||||
"theme.bar.buttons.text": "#c4a7e7",
|
"theme.bar.buttons.text": "#c4a7e7",
|
||||||
"theme.bar.buttons.hover": "#393552",
|
"theme.bar.buttons.hover": "#393552",
|
||||||
"theme.bar.buttons.background": "#2a283e",
|
"theme.bar.buttons.background": "#2a283e",
|
||||||
"theme.bar.menus.text": "#e0def4",
|
"theme.bar.menus.text": "#e0def4",
|
||||||
"theme.bar.menus.border.color": "#2a273f",
|
"theme.bar.menus.border.color": "#2a273f",
|
||||||
"theme.bar.buttons.media.background": "#2a283e",
|
"theme.bar.buttons.media.background": "#2a283e",
|
||||||
"theme.bar.menus.menu.volume.text": "#e0def4",
|
"theme.bar.menus.menu.volume.text": "#e0def4",
|
||||||
"theme.bar.menus.menu.volume.card.color": "#2a283e",
|
"theme.bar.menus.menu.volume.card.color": "#2a283e",
|
||||||
"theme.bar.menus.menu.volume.label.color": "#eb6f92",
|
"theme.bar.menus.menu.volume.label.color": "#eb6f92",
|
||||||
"theme.bar.menus.popover.text": "#c4a7e7",
|
"theme.bar.menus.popover.text": "#c4a7e7",
|
||||||
"theme.bar.menus.popover.background": "#2a273f",
|
"theme.bar.menus.popover.background": "#2a273f",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.shutdown": "#eb6f92",
|
"theme.bar.menus.menu.dashboard.powermenu.shutdown": "#eb6f92",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#eb6f92",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#eb6f92",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.confirm": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.confirm": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#232136",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#232136",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.body": "#e0def4",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.body": "#e0def4",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.border": "#2a273f",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.border": "#2a273f",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#232136",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#232136",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#2a283e",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#2a283e",
|
||||||
"theme.bar.menus.menu.notifications.switch.puck": "#393552",
|
"theme.bar.menus.menu.notifications.switch.puck": "#393552",
|
||||||
"theme.bar.menus.menu.notifications.switch.disabled": "#2a273f",
|
"theme.bar.menus.menu.notifications.switch.disabled": "#2a273f",
|
||||||
"theme.bar.menus.menu.notifications.switch.enabled": "#c4a7e7",
|
"theme.bar.menus.menu.notifications.switch.enabled": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.notifications.clear": "#eb6f92",
|
"theme.bar.menus.menu.notifications.clear": "#eb6f92",
|
||||||
"theme.bar.menus.menu.notifications.switch_divider": "#393552",
|
"theme.bar.menus.menu.notifications.switch_divider": "#393552",
|
||||||
"theme.bar.menus.menu.notifications.border": "#2a273f",
|
"theme.bar.menus.menu.notifications.border": "#2a273f",
|
||||||
"theme.bar.menus.menu.notifications.card": "#2a283e",
|
"theme.bar.menus.menu.notifications.card": "#2a283e",
|
||||||
"theme.bar.menus.menu.notifications.background": "#232136",
|
"theme.bar.menus.menu.notifications.background": "#232136",
|
||||||
"theme.bar.menus.menu.notifications.no_notifications_label": "#2a273f",
|
"theme.bar.menus.menu.notifications.no_notifications_label": "#2a273f",
|
||||||
"theme.bar.menus.menu.notifications.label": "#c4a7e7",
|
"theme.bar.menus.menu.notifications.label": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.disk.label": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.monitors.disk.label": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.disk.bar": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.monitors.disk.bar": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.disk.icon": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.monitors.disk.icon": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.gpu.label": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.monitors.gpu.label": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.gpu.icon": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.monitors.gpu.icon": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.ram.label": "#f6c177",
|
"theme.bar.menus.menu.dashboard.monitors.ram.label": "#f6c177",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.ram.bar": "#f6c177",
|
"theme.bar.menus.menu.dashboard.monitors.ram.bar": "#f6c177",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.ram.icon": "#f6c177",
|
"theme.bar.menus.menu.dashboard.monitors.ram.icon": "#f6c177",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.cpu.label": "#eb6f92",
|
"theme.bar.menus.menu.dashboard.monitors.cpu.label": "#eb6f92",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#eb6f92",
|
"theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#eb6f92",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#eb6f92",
|
"theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#eb6f92",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.bar_background": "#393552",
|
"theme.bar.menus.menu.dashboard.monitors.bar_background": "#393552",
|
||||||
"theme.bar.menus.menu.dashboard.directories.right.bottom.color": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.directories.right.bottom.color": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.directories.right.middle.color": "#3e8eb0",
|
"theme.bar.menus.menu.dashboard.directories.right.middle.color": "#3e8eb0",
|
||||||
"theme.bar.menus.menu.dashboard.directories.right.top.color": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.directories.right.top.color": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#eb6f92",
|
"theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#eb6f92",
|
||||||
"theme.bar.menus.menu.dashboard.directories.left.middle.color": "#f6c177",
|
"theme.bar.menus.menu.dashboard.directories.left.middle.color": "#f6c177",
|
||||||
"theme.bar.menus.menu.dashboard.directories.left.top.color": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.directories.left.top.color": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.controls.input.text": "#2a273f",
|
"theme.bar.menus.menu.dashboard.controls.input.text": "#2a273f",
|
||||||
"theme.bar.menus.menu.dashboard.controls.input.background": "#3e8eb0",
|
"theme.bar.menus.menu.dashboard.controls.input.background": "#3e8eb0",
|
||||||
"theme.bar.menus.menu.dashboard.controls.volume.text": "#2a273f",
|
"theme.bar.menus.menu.dashboard.controls.volume.text": "#2a273f",
|
||||||
"theme.bar.menus.menu.dashboard.controls.volume.background": "#eb6f92",
|
"theme.bar.menus.menu.dashboard.controls.volume.background": "#eb6f92",
|
||||||
"theme.bar.menus.menu.dashboard.controls.notifications.text": "#2a273f",
|
"theme.bar.menus.menu.dashboard.controls.notifications.text": "#2a273f",
|
||||||
"theme.bar.menus.menu.dashboard.controls.notifications.background": "#f6c177",
|
"theme.bar.menus.menu.dashboard.controls.notifications.background": "#f6c177",
|
||||||
"theme.bar.menus.menu.dashboard.controls.bluetooth.text": "#2a273f",
|
"theme.bar.menus.menu.dashboard.controls.bluetooth.text": "#2a273f",
|
||||||
"theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.controls.wifi.text": "#2a273f",
|
"theme.bar.menus.menu.dashboard.controls.wifi.text": "#2a273f",
|
||||||
"theme.bar.menus.menu.dashboard.controls.wifi.background": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.controls.wifi.background": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.controls.disabled": "#44415a",
|
"theme.bar.menus.menu.dashboard.controls.disabled": "#44415a",
|
||||||
"theme.bar.menus.menu.dashboard.shortcuts.recording": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.shortcuts.recording": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.shortcuts.text": "#2a273f",
|
"theme.bar.menus.menu.dashboard.shortcuts.text": "#2a273f",
|
||||||
"theme.bar.menus.menu.dashboard.shortcuts.background": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.shortcuts.background": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.sleep": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.powermenu.sleep": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.logout": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.powermenu.logout": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.restart": "#f6c177",
|
"theme.bar.menus.menu.dashboard.powermenu.restart": "#f6c177",
|
||||||
"theme.bar.menus.menu.dashboard.profile.name": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.profile.name": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.border.color": "#2a273f",
|
"theme.bar.menus.menu.dashboard.border.color": "#2a273f",
|
||||||
"theme.bar.menus.menu.dashboard.background.color": "#232136",
|
"theme.bar.menus.menu.dashboard.background.color": "#232136",
|
||||||
"theme.bar.menus.menu.dashboard.card.color": "#2a283e",
|
"theme.bar.menus.menu.dashboard.card.color": "#2a283e",
|
||||||
"theme.bar.menus.menu.clock.weather.hourly.temperature": "#c4a7e7",
|
"theme.bar.menus.menu.clock.weather.hourly.temperature": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.weather.hourly.icon": "#c4a7e7",
|
"theme.bar.menus.menu.clock.weather.hourly.icon": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.weather.hourly.time": "#c4a7e7",
|
"theme.bar.menus.menu.clock.weather.hourly.time": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.extremelycold": "#9ccfd8",
|
"theme.bar.menus.menu.clock.weather.thermometer.extremelycold": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.cold": "#3e8fb0",
|
"theme.bar.menus.menu.clock.weather.thermometer.cold": "#3e8fb0",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.moderate": "#c4a7e7",
|
"theme.bar.menus.menu.clock.weather.thermometer.moderate": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.hot": "#f6c177",
|
"theme.bar.menus.menu.clock.weather.thermometer.hot": "#f6c177",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#eb6f92",
|
"theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#eb6f92",
|
||||||
"theme.bar.menus.menu.clock.weather.stats": "#c4a7e7",
|
"theme.bar.menus.menu.clock.weather.stats": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.weather.status": "#9ccfd8",
|
"theme.bar.menus.menu.clock.weather.status": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.clock.weather.temperature": "#e0def4",
|
"theme.bar.menus.menu.clock.weather.temperature": "#e0def4",
|
||||||
"theme.bar.menus.menu.clock.weather.icon": "#c4a7e7",
|
"theme.bar.menus.menu.clock.weather.icon": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.calendar.contextdays": "#44415a",
|
"theme.bar.menus.menu.clock.calendar.contextdays": "#44415a",
|
||||||
"theme.bar.menus.menu.clock.calendar.days": "#e0def4",
|
"theme.bar.menus.menu.clock.calendar.days": "#e0def4",
|
||||||
"theme.bar.menus.menu.clock.calendar.currentday": "#c4a7e7",
|
"theme.bar.menus.menu.clock.calendar.currentday": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.calendar.paginator": "#c4a7e7",
|
"theme.bar.menus.menu.clock.calendar.paginator": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.calendar.weekdays": "#c4a7e7",
|
"theme.bar.menus.menu.clock.calendar.weekdays": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.calendar.yearmonth": "#9ccfd8",
|
"theme.bar.menus.menu.clock.calendar.yearmonth": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.clock.time.timeperiod": "#9ccfd8",
|
"theme.bar.menus.menu.clock.time.timeperiod": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.clock.time.time": "#c4a7e7",
|
"theme.bar.menus.menu.clock.time.time": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.text": "#e0def4",
|
"theme.bar.menus.menu.clock.text": "#e0def4",
|
||||||
"theme.bar.menus.menu.clock.border.color": "#2a273f",
|
"theme.bar.menus.menu.clock.border.color": "#2a273f",
|
||||||
"theme.bar.menus.menu.clock.background.color": "#232136",
|
"theme.bar.menus.menu.clock.background.color": "#232136",
|
||||||
"theme.bar.menus.menu.clock.card.color": "#2a283e",
|
"theme.bar.menus.menu.clock.card.color": "#2a283e",
|
||||||
"theme.bar.menus.menu.battery.slider.puck": "#393552",
|
"theme.bar.menus.menu.battery.slider.puck": "#393552",
|
||||||
"theme.bar.menus.menu.battery.slider.backgroundhover": "#393552",
|
"theme.bar.menus.menu.battery.slider.backgroundhover": "#393552",
|
||||||
"theme.bar.menus.menu.battery.slider.background": "#44415a",
|
"theme.bar.menus.menu.battery.slider.background": "#44415a",
|
||||||
"theme.bar.menus.menu.battery.slider.primary": "#f6c177",
|
"theme.bar.menus.menu.battery.slider.primary": "#f6c177",
|
||||||
"theme.bar.menus.menu.battery.icons.active": "#f6c177",
|
"theme.bar.menus.menu.battery.icons.active": "#f6c177",
|
||||||
"theme.bar.menus.menu.battery.icons.passive": "#56526e",
|
"theme.bar.menus.menu.battery.icons.passive": "#56526e",
|
||||||
"theme.bar.menus.menu.battery.listitems.active": "#f6c177",
|
"theme.bar.menus.menu.battery.listitems.active": "#f6c177",
|
||||||
"theme.bar.menus.menu.battery.listitems.passive": "#e0def4",
|
"theme.bar.menus.menu.battery.listitems.passive": "#e0def4",
|
||||||
"theme.bar.menus.menu.battery.text": "#e0def4",
|
"theme.bar.menus.menu.battery.text": "#e0def4",
|
||||||
"theme.bar.menus.menu.battery.label.color": "#f6c177",
|
"theme.bar.menus.menu.battery.label.color": "#f6c177",
|
||||||
"theme.bar.menus.menu.battery.border.color": "#2a273f",
|
"theme.bar.menus.menu.battery.border.color": "#2a273f",
|
||||||
"theme.bar.menus.menu.battery.background.color": "#232136",
|
"theme.bar.menus.menu.battery.background.color": "#232136",
|
||||||
"theme.bar.menus.menu.battery.card.color": "#2a283e",
|
"theme.bar.menus.menu.battery.card.color": "#2a283e",
|
||||||
"theme.bar.menus.menu.systray.dropdownmenu.divider": "#2a283e",
|
"theme.bar.menus.menu.systray.dropdownmenu.divider": "#2a283e",
|
||||||
"theme.bar.menus.menu.systray.dropdownmenu.text": "#e0def4",
|
"theme.bar.menus.menu.systray.dropdownmenu.text": "#e0def4",
|
||||||
"theme.bar.menus.menu.systray.dropdownmenu.background": "#232136",
|
"theme.bar.menus.menu.systray.dropdownmenu.background": "#232136",
|
||||||
"theme.bar.menus.menu.bluetooth.iconbutton.active": "#9ccfd8",
|
"theme.bar.menus.menu.bluetooth.iconbutton.active": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.bluetooth.iconbutton.passive": "#e0def4",
|
"theme.bar.menus.menu.bluetooth.iconbutton.passive": "#e0def4",
|
||||||
"theme.bar.menus.menu.bluetooth.icons.active": "#9ccfd8",
|
"theme.bar.menus.menu.bluetooth.icons.active": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.bluetooth.icons.passive": "#56526e",
|
"theme.bar.menus.menu.bluetooth.icons.passive": "#56526e",
|
||||||
"theme.bar.menus.menu.bluetooth.listitems.active": "#9ccfd8",
|
"theme.bar.menus.menu.bluetooth.listitems.active": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.bluetooth.listitems.passive": "#e0def4",
|
"theme.bar.menus.menu.bluetooth.listitems.passive": "#e0def4",
|
||||||
"theme.bar.menus.menu.bluetooth.switch.puck": "#393552",
|
"theme.bar.menus.menu.bluetooth.switch.puck": "#393552",
|
||||||
"theme.bar.menus.menu.bluetooth.switch.disabled": "#2a273f",
|
"theme.bar.menus.menu.bluetooth.switch.disabled": "#2a273f",
|
||||||
"theme.bar.menus.menu.bluetooth.switch.enabled": "#9ccfd8",
|
"theme.bar.menus.menu.bluetooth.switch.enabled": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.bluetooth.switch_divider": "#393552",
|
"theme.bar.menus.menu.bluetooth.switch_divider": "#393552",
|
||||||
"theme.bar.menus.menu.bluetooth.status": "#393552",
|
"theme.bar.menus.menu.bluetooth.status": "#393552",
|
||||||
"theme.bar.menus.menu.bluetooth.text": "#e0def4",
|
"theme.bar.menus.menu.bluetooth.text": "#e0def4",
|
||||||
"theme.bar.menus.menu.bluetooth.label.color": "#9ccfd8",
|
"theme.bar.menus.menu.bluetooth.label.color": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.bluetooth.border.color": "#2a273f",
|
"theme.bar.menus.menu.bluetooth.border.color": "#2a273f",
|
||||||
"theme.bar.menus.menu.bluetooth.background.color": "#232136",
|
"theme.bar.menus.menu.bluetooth.background.color": "#232136",
|
||||||
"theme.bar.menus.menu.bluetooth.card.color": "#2a283e",
|
"theme.bar.menus.menu.bluetooth.card.color": "#2a283e",
|
||||||
"theme.bar.menus.menu.network.iconbuttons.active": "#c4a7e7",
|
"theme.bar.menus.menu.network.iconbuttons.active": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.network.iconbuttons.passive": "#e0def4",
|
"theme.bar.menus.menu.network.iconbuttons.passive": "#e0def4",
|
||||||
"theme.bar.menus.menu.network.icons.active": "#c4a7e7",
|
"theme.bar.menus.menu.network.icons.active": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.network.icons.passive": "#56526e",
|
"theme.bar.menus.menu.network.icons.passive": "#56526e",
|
||||||
"theme.bar.menus.menu.network.listitems.active": "#c4a7e7",
|
"theme.bar.menus.menu.network.listitems.active": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.network.listitems.passive": "#e0def4",
|
"theme.bar.menus.menu.network.listitems.passive": "#e0def4",
|
||||||
"theme.bar.menus.menu.network.status.color": "#393552",
|
"theme.bar.menus.menu.network.status.color": "#393552",
|
||||||
"theme.bar.menus.menu.network.text": "#e0def4",
|
"theme.bar.menus.menu.network.text": "#e0def4",
|
||||||
"theme.bar.menus.menu.network.label.color": "#c4a7e7",
|
"theme.bar.menus.menu.network.label.color": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.network.border.color": "#2a273f",
|
"theme.bar.menus.menu.network.border.color": "#2a273f",
|
||||||
"theme.bar.menus.menu.network.background.color": "#232136",
|
"theme.bar.menus.menu.network.background.color": "#232136",
|
||||||
"theme.bar.menus.menu.network.card.color": "#2a283e",
|
"theme.bar.menus.menu.network.card.color": "#2a283e",
|
||||||
"theme.bar.menus.menu.volume.input_slider.puck": "#44415a",
|
"theme.bar.menus.menu.volume.input_slider.puck": "#44415a",
|
||||||
"theme.bar.menus.menu.volume.input_slider.backgroundhover": "#393552",
|
"theme.bar.menus.menu.volume.input_slider.backgroundhover": "#393552",
|
||||||
"theme.bar.menus.menu.volume.input_slider.background": "#44415a",
|
"theme.bar.menus.menu.volume.input_slider.background": "#44415a",
|
||||||
"theme.bar.menus.menu.volume.input_slider.primary": "#eb6f92",
|
"theme.bar.menus.menu.volume.input_slider.primary": "#eb6f92",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.puck": "#44415a",
|
"theme.bar.menus.menu.volume.audio_slider.puck": "#44415a",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#393552",
|
"theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#393552",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.background": "#44415a",
|
"theme.bar.menus.menu.volume.audio_slider.background": "#44415a",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.primary": "#eb6f92",
|
"theme.bar.menus.menu.volume.audio_slider.primary": "#eb6f92",
|
||||||
"theme.bar.menus.menu.volume.icons.active": "#eb6f92",
|
"theme.bar.menus.menu.volume.icons.active": "#eb6f92",
|
||||||
"theme.bar.menus.menu.volume.icons.passive": "#56526e",
|
"theme.bar.menus.menu.volume.icons.passive": "#56526e",
|
||||||
"theme.bar.menus.menu.volume.iconbutton.active": "#eb6f92",
|
"theme.bar.menus.menu.volume.iconbutton.active": "#eb6f92",
|
||||||
"theme.bar.menus.menu.volume.iconbutton.passive": "#e0def4",
|
"theme.bar.menus.menu.volume.iconbutton.passive": "#e0def4",
|
||||||
"theme.bar.menus.menu.volume.listitems.active": "#eb6f92",
|
"theme.bar.menus.menu.volume.listitems.active": "#eb6f92",
|
||||||
"theme.bar.menus.menu.volume.listitems.passive": "#e0def4",
|
"theme.bar.menus.menu.volume.listitems.passive": "#e0def4",
|
||||||
"theme.bar.menus.menu.volume.border.color": "#2a273f",
|
"theme.bar.menus.menu.volume.border.color": "#2a273f",
|
||||||
"theme.bar.menus.menu.volume.background.color": "#232136",
|
"theme.bar.menus.menu.volume.background.color": "#232136",
|
||||||
"theme.bar.menus.menu.media.slider.puck": "#393552",
|
"theme.bar.menus.menu.media.slider.puck": "#393552",
|
||||||
"theme.bar.menus.menu.media.slider.backgroundhover": "#393552",
|
"theme.bar.menus.menu.media.slider.backgroundhover": "#393552",
|
||||||
"theme.bar.menus.menu.media.slider.background": "#44415a",
|
"theme.bar.menus.menu.media.slider.background": "#44415a",
|
||||||
"theme.bar.menus.menu.media.slider.primary": "#c4a7e7",
|
"theme.bar.menus.menu.media.slider.primary": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.media.buttons.text": "#232136",
|
"theme.bar.menus.menu.media.buttons.text": "#232136",
|
||||||
"theme.bar.menus.menu.media.buttons.background": "#c4a7e7",
|
"theme.bar.menus.menu.media.buttons.background": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.media.buttons.enabled": "#9ccfd8",
|
"theme.bar.menus.menu.media.buttons.enabled": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.media.buttons.inactive": "#44415a",
|
"theme.bar.menus.menu.media.buttons.inactive": "#44415a",
|
||||||
"theme.bar.menus.menu.media.border.color": "#2a273f",
|
"theme.bar.menus.menu.media.border.color": "#2a273f",
|
||||||
"theme.bar.menus.menu.media.background.color": "#232136",
|
"theme.bar.menus.menu.media.background.color": "#232136",
|
||||||
"theme.bar.menus.menu.media.album": "#c4a7e7",
|
"theme.bar.menus.menu.media.album": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.media.artist": "#9ccfd8",
|
"theme.bar.menus.menu.media.artist": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.media.song": "#c4a7e7",
|
"theme.bar.menus.menu.media.song": "#c4a7e7",
|
||||||
"theme.bar.menus.tooltip.text": "#e0def4",
|
"theme.bar.menus.tooltip.text": "#e0def4",
|
||||||
"theme.bar.menus.tooltip.background": "#232136",
|
"theme.bar.menus.tooltip.background": "#232136",
|
||||||
"theme.bar.menus.dropdownmenu.divider": "#2a283e",
|
"theme.bar.menus.dropdownmenu.divider": "#2a283e",
|
||||||
"theme.bar.menus.dropdownmenu.text": "#e0def4",
|
"theme.bar.menus.dropdownmenu.text": "#e0def4",
|
||||||
"theme.bar.menus.dropdownmenu.background": "#232136",
|
"theme.bar.menus.dropdownmenu.background": "#232136",
|
||||||
"theme.bar.menus.slider.puck": "#393552",
|
"theme.bar.menus.slider.puck": "#393552",
|
||||||
"theme.bar.menus.slider.backgroundhover": "#393552",
|
"theme.bar.menus.slider.backgroundhover": "#393552",
|
||||||
"theme.bar.menus.slider.background": "#44415a",
|
"theme.bar.menus.slider.background": "#44415a",
|
||||||
"theme.bar.menus.slider.primary": "#c4a7e7",
|
"theme.bar.menus.slider.primary": "#c4a7e7",
|
||||||
"theme.bar.menus.progressbar.background": "#393552",
|
"theme.bar.menus.progressbar.background": "#393552",
|
||||||
"theme.bar.menus.progressbar.foreground": "#c4a7e7",
|
"theme.bar.menus.progressbar.foreground": "#c4a7e7",
|
||||||
"theme.bar.menus.iconbuttons.active": "#c4a7e7",
|
"theme.bar.menus.iconbuttons.active": "#c4a7e7",
|
||||||
"theme.bar.menus.iconbuttons.passive": "#e0def4",
|
"theme.bar.menus.iconbuttons.passive": "#e0def4",
|
||||||
"theme.bar.menus.buttons.text": "#2a273f",
|
"theme.bar.menus.buttons.text": "#2a273f",
|
||||||
"theme.bar.menus.buttons.disabled": "#44415a",
|
"theme.bar.menus.buttons.disabled": "#44415a",
|
||||||
"theme.bar.menus.buttons.active": "#c4a7e7",
|
"theme.bar.menus.buttons.active": "#c4a7e7",
|
||||||
"theme.bar.menus.buttons.default": "#c4a7e7",
|
"theme.bar.menus.buttons.default": "#c4a7e7",
|
||||||
"theme.bar.menus.switch.puck": "#393552",
|
"theme.bar.menus.switch.puck": "#393552",
|
||||||
"theme.bar.menus.switch.disabled": "#2a273f",
|
"theme.bar.menus.switch.disabled": "#2a273f",
|
||||||
"theme.bar.menus.switch.enabled": "#c4a7e7",
|
"theme.bar.menus.switch.enabled": "#c4a7e7",
|
||||||
"theme.bar.menus.icons.active": "#c4a7e7",
|
"theme.bar.menus.icons.active": "#c4a7e7",
|
||||||
"theme.bar.menus.icons.passive": "#44415a",
|
"theme.bar.menus.icons.passive": "#44415a",
|
||||||
"theme.bar.menus.listitems.active": "#c4a7e7",
|
"theme.bar.menus.listitems.active": "#c4a7e7",
|
||||||
"theme.bar.menus.listitems.passive": "#e0def4",
|
"theme.bar.menus.listitems.passive": "#e0def4",
|
||||||
"theme.bar.menus.label": "#c4a7e7",
|
"theme.bar.menus.label": "#c4a7e7",
|
||||||
"theme.bar.menus.feinttext": "#2a273f",
|
"theme.bar.menus.feinttext": "#2a273f",
|
||||||
"theme.bar.menus.dimtext": "#44415a",
|
"theme.bar.menus.dimtext": "#44415a",
|
||||||
"theme.bar.menus.cards": "#2a283e",
|
"theme.bar.menus.cards": "#2a283e",
|
||||||
"theme.bar.buttons.notifications.total": "#c4a7e7",
|
"theme.bar.buttons.notifications.total": "#c4a7e7",
|
||||||
"theme.bar.buttons.notifications.icon": "#c4a7e7",
|
"theme.bar.buttons.notifications.icon": "#c4a7e7",
|
||||||
"theme.bar.buttons.notifications.background": "#2a283e",
|
"theme.bar.buttons.notifications.background": "#2a283e",
|
||||||
"theme.bar.buttons.clock.icon": "#c4a7e7",
|
"theme.bar.buttons.clock.icon": "#c4a7e7",
|
||||||
"theme.bar.buttons.clock.text": "#c4a7e7",
|
"theme.bar.buttons.clock.text": "#c4a7e7",
|
||||||
"theme.bar.buttons.clock.background": "#2a283e",
|
"theme.bar.buttons.clock.background": "#2a283e",
|
||||||
"theme.bar.buttons.battery.icon": "#f6c177",
|
"theme.bar.buttons.battery.icon": "#f6c177",
|
||||||
"theme.bar.buttons.battery.text": "#f6c177",
|
"theme.bar.buttons.battery.text": "#f6c177",
|
||||||
"theme.bar.buttons.battery.background": "#2a283e",
|
"theme.bar.buttons.battery.background": "#2a283e",
|
||||||
"theme.bar.buttons.systray.background": "#2a283e",
|
"theme.bar.buttons.systray.background": "#2a283e",
|
||||||
"theme.bar.buttons.bluetooth.icon": "#9ccfd8",
|
"theme.bar.buttons.bluetooth.icon": "#9ccfd8",
|
||||||
"theme.bar.buttons.bluetooth.text": "#9ccfd8",
|
"theme.bar.buttons.bluetooth.text": "#9ccfd8",
|
||||||
"theme.bar.buttons.bluetooth.background": "#2a283e",
|
"theme.bar.buttons.bluetooth.background": "#2a283e",
|
||||||
"theme.bar.buttons.network.icon": "#c4a7e7",
|
"theme.bar.buttons.network.icon": "#c4a7e7",
|
||||||
"theme.bar.buttons.network.text": "#c4a7e7",
|
"theme.bar.buttons.network.text": "#c4a7e7",
|
||||||
"theme.bar.buttons.network.background": "#2a283e",
|
"theme.bar.buttons.network.background": "#2a283e",
|
||||||
"theme.bar.buttons.volume.icon": "#eb6f92",
|
"theme.bar.buttons.volume.icon": "#eb6f92",
|
||||||
"theme.bar.buttons.volume.text": "#eb6f92",
|
"theme.bar.buttons.volume.text": "#eb6f92",
|
||||||
"theme.bar.buttons.volume.background": "#2a283e",
|
"theme.bar.buttons.volume.background": "#2a283e",
|
||||||
"theme.bar.buttons.windowtitle.icon": "#c4a7e7",
|
"theme.bar.buttons.windowtitle.icon": "#c4a7e7",
|
||||||
"theme.bar.buttons.windowtitle.text": "#c4a7e7",
|
"theme.bar.buttons.windowtitle.text": "#c4a7e7",
|
||||||
"theme.bar.buttons.windowtitle.background": "#2a283e",
|
"theme.bar.buttons.windowtitle.background": "#2a283e",
|
||||||
"theme.bar.buttons.workspaces.active": "#c4a7e7",
|
"theme.bar.buttons.workspaces.active": "#c4a7e7",
|
||||||
"theme.bar.buttons.workspaces.occupied": "#eb6f92",
|
"theme.bar.buttons.workspaces.occupied": "#eb6f92",
|
||||||
"theme.bar.buttons.workspaces.available": "#9ccfd8",
|
"theme.bar.buttons.workspaces.available": "#9ccfd8",
|
||||||
"theme.bar.buttons.workspaces.hover": "#393552",
|
"theme.bar.buttons.workspaces.hover": "#393552",
|
||||||
"theme.bar.buttons.workspaces.background": "#2a283e",
|
"theme.bar.buttons.workspaces.background": "#2a283e",
|
||||||
"theme.bar.buttons.dashboard.icon": "#f6c177",
|
"theme.bar.buttons.dashboard.icon": "#f6c177",
|
||||||
"theme.bar.buttons.dashboard.background": "#2a283e",
|
"theme.bar.buttons.dashboard.background": "#2a283e",
|
||||||
"theme.osd.label": "#c4a7e7",
|
"theme.osd.label": "#c4a7e7",
|
||||||
"theme.osd.icon": "#232136",
|
"theme.osd.icon": "#232136",
|
||||||
"theme.osd.bar_overflow_color": "#eb6f92",
|
"theme.osd.bar_overflow_color": "#eb6f92",
|
||||||
"theme.osd.bar_empty_color": "#2a273f",
|
"theme.osd.bar_empty_color": "#2a273f",
|
||||||
"theme.osd.bar_color": "#c4a7e7",
|
"theme.osd.bar_color": "#c4a7e7",
|
||||||
"theme.osd.icon_container": "#c4a7e7",
|
"theme.osd.icon_container": "#c4a7e7",
|
||||||
"theme.osd.bar_container": "#232136",
|
"theme.osd.bar_container": "#232136",
|
||||||
"theme.notification.close_button.label": "#232136",
|
"theme.notification.close_button.label": "#232136",
|
||||||
"theme.notification.close_button.background": "#eb6f92",
|
"theme.notification.close_button.background": "#eb6f92",
|
||||||
"theme.notification.labelicon": "#c4a7e7",
|
"theme.notification.labelicon": "#c4a7e7",
|
||||||
"theme.notification.text": "#e0def4",
|
"theme.notification.text": "#e0def4",
|
||||||
"theme.notification.time": "#56526e",
|
"theme.notification.time": "#56526e",
|
||||||
"theme.notification.border": "#2a273f",
|
"theme.notification.border": "#2a273f",
|
||||||
"theme.notification.label": "#c4a7e7",
|
"theme.notification.label": "#c4a7e7",
|
||||||
"theme.notification.actions.text": "#2a273f",
|
"theme.notification.actions.text": "#2a273f",
|
||||||
"theme.notification.actions.background": "#c4a7e7",
|
"theme.notification.actions.background": "#c4a7e7",
|
||||||
"theme.notification.background": "#2a273f",
|
"theme.notification.background": "#2a273f",
|
||||||
"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": "#c678dd",
|
"theme.bar.buttons.workspaces.numbered_active_underline_color": "#c678dd",
|
||||||
"theme.bar.menus.menu.media.card.color": "#2a283e",
|
"theme.bar.menus.menu.media.card.color": "#2a283e",
|
||||||
"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.menus.menu.notifications.pager.button": "#c4a7e7",
|
"theme.bar.menus.menu.notifications.pager.button": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.notifications.scrollbar.color": "#c4a7e7",
|
"theme.bar.menus.menu.notifications.scrollbar.color": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.notifications.pager.label": "#56526e",
|
"theme.bar.menus.menu.notifications.pager.label": "#56526e",
|
||||||
"theme.bar.menus.menu.notifications.pager.background": "#232136",
|
"theme.bar.menus.menu.notifications.pager.background": "#232136",
|
||||||
"theme.bar.buttons.modules.ram.icon": "#f6c177",
|
"theme.bar.buttons.modules.ram.icon": "#f6c177",
|
||||||
"theme.bar.buttons.modules.storage.icon_background": "#2a283e",
|
"theme.bar.buttons.modules.storage.icon_background": "#2a283e",
|
||||||
"theme.bar.buttons.modules.storage.icon": "#c4a7e7",
|
"theme.bar.buttons.modules.storage.icon": "#c4a7e7",
|
||||||
"theme.bar.buttons.modules.weather.icon": "#c4a7e7",
|
"theme.bar.buttons.modules.weather.icon": "#c4a7e7",
|
||||||
"theme.bar.buttons.modules.power.icon": "#eb6f92",
|
"theme.bar.buttons.modules.power.icon": "#eb6f92",
|
||||||
"theme.bar.menus.menu.power.border.color": "#2a273f",
|
"theme.bar.menus.menu.power.border.color": "#2a273f",
|
||||||
"theme.bar.buttons.modules.power.icon_background": "#2a283e",
|
"theme.bar.buttons.modules.power.icon_background": "#2a283e",
|
||||||
"theme.bar.buttons.modules.cpu.icon": "#eb6f92",
|
"theme.bar.buttons.modules.cpu.icon": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.kbLayout.icon_background": "#2a283e",
|
"theme.bar.buttons.modules.kbLayout.icon_background": "#2a283e",
|
||||||
"theme.bar.buttons.modules.weather.text": "#c4a7e7",
|
"theme.bar.buttons.modules.weather.text": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.icon": "#2a273f",
|
"theme.bar.menus.menu.power.buttons.shutdown.icon": "#2a273f",
|
||||||
"theme.bar.buttons.modules.weather.icon_background": "#2a283e",
|
"theme.bar.buttons.modules.weather.icon_background": "#2a283e",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.background": "#2a283e",
|
"theme.bar.menus.menu.power.buttons.shutdown.background": "#2a283e",
|
||||||
"theme.bar.buttons.modules.kbLayout.icon": "#9ccfd8",
|
"theme.bar.buttons.modules.kbLayout.icon": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.ram.icon_background": "#2a283e",
|
"theme.bar.buttons.modules.ram.icon_background": "#2a283e",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.icon_background": "#eb6f92",
|
"theme.bar.menus.menu.power.buttons.shutdown.icon_background": "#eb6f92",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.text": "#eb6f92",
|
"theme.bar.menus.menu.power.buttons.shutdown.text": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.updates.icon_background": "#2a283e",
|
"theme.bar.buttons.modules.updates.icon_background": "#2a283e",
|
||||||
"theme.bar.menus.menu.power.background.color": "#232136",
|
"theme.bar.menus.menu.power.background.color": "#232136",
|
||||||
"theme.bar.buttons.modules.netstat.icon": "#9ccfd8",
|
"theme.bar.buttons.modules.netstat.icon": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.cpu.icon_background": "#2a283e",
|
"theme.bar.buttons.modules.cpu.icon_background": "#2a283e",
|
||||||
"theme.bar.buttons.modules.updates.icon": "#3e8eb0",
|
"theme.bar.buttons.modules.updates.icon": "#3e8eb0",
|
||||||
"theme.bar.buttons.modules.netstat.icon_background": "#2a283e",
|
"theme.bar.buttons.modules.netstat.icon_background": "#2a283e",
|
||||||
"theme.bar.buttons.clock.icon_background": "#c4a7e7",
|
"theme.bar.buttons.clock.icon_background": "#c4a7e7",
|
||||||
"theme.bar.menus.popover.border": "#2a273f",
|
"theme.bar.menus.popover.border": "#2a273f",
|
||||||
"theme.bar.buttons.volume.icon_background": "#eb6f92",
|
"theme.bar.buttons.volume.icon_background": "#eb6f92",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.icon_background": "#9ccfd8",
|
"theme.bar.menus.menu.power.buttons.sleep.icon_background": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.text": "#f6c177",
|
"theme.bar.menus.menu.power.buttons.restart.text": "#f6c177",
|
||||||
"theme.bar.buttons.modules.updates.background": "#2a283e",
|
"theme.bar.buttons.modules.updates.background": "#2a283e",
|
||||||
"theme.bar.buttons.modules.netstat.background": "#2a283e",
|
"theme.bar.buttons.modules.netstat.background": "#2a283e",
|
||||||
"theme.bar.buttons.modules.netstat.text": "#9ccfd8",
|
"theme.bar.buttons.modules.netstat.text": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.storage.background": "#2a283e",
|
"theme.bar.buttons.modules.storage.background": "#2a283e",
|
||||||
"theme.bar.buttons.modules.storage.text": "#eb6f92",
|
"theme.bar.buttons.modules.storage.text": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.cpu.background": "#2a283e",
|
"theme.bar.buttons.modules.cpu.background": "#2a283e",
|
||||||
"theme.bar.buttons.network.icon_background": "#caa6f7",
|
"theme.bar.buttons.network.icon_background": "#caa6f7",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.icon": "#2a273f",
|
"theme.bar.menus.menu.power.buttons.logout.icon": "#2a273f",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.icon_background": "#f6c177",
|
"theme.bar.menus.menu.power.buttons.restart.icon_background": "#f6c177",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.icon": "#2a273f",
|
"theme.bar.menus.menu.power.buttons.restart.icon": "#2a273f",
|
||||||
"theme.bar.buttons.battery.icon_background": "#f6c177",
|
"theme.bar.buttons.battery.icon_background": "#f6c177",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.text": "#9ccfd8",
|
"theme.bar.menus.menu.power.buttons.sleep.text": "#9ccfd8",
|
||||||
"theme.bar.buttons.media.icon_background": "#c4a7e7",
|
"theme.bar.buttons.media.icon_background": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.background": "#2a283e",
|
"theme.bar.menus.menu.power.buttons.logout.background": "#2a283e",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.background": "#2a283e",
|
"theme.bar.menus.menu.power.buttons.sleep.background": "#2a283e",
|
||||||
"theme.bar.buttons.modules.ram.text": "#f6c177",
|
"theme.bar.buttons.modules.ram.text": "#f6c177",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.text": "#9ccfd8",
|
"theme.bar.menus.menu.power.buttons.logout.text": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.kbLayout.background": "#2a283e",
|
"theme.bar.buttons.modules.kbLayout.background": "#2a283e",
|
||||||
"theme.bar.buttons.modules.power.background": "#2a283e",
|
"theme.bar.buttons.modules.power.background": "#2a283e",
|
||||||
"theme.bar.buttons.modules.weather.background": "#2a283e",
|
"theme.bar.buttons.modules.weather.background": "#2a283e",
|
||||||
"theme.bar.buttons.icon_background": "#2a283e",
|
"theme.bar.buttons.icon_background": "#2a283e",
|
||||||
"theme.bar.buttons.modules.ram.background": "#2a283e",
|
"theme.bar.buttons.modules.ram.background": "#2a283e",
|
||||||
"theme.bar.buttons.windowtitle.icon_background": "#c4a7e7",
|
"theme.bar.buttons.windowtitle.icon_background": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.icon_background": "#9ccfd8",
|
"theme.bar.menus.menu.power.buttons.logout.icon_background": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.updates.text": "#3e8eb0",
|
"theme.bar.buttons.modules.updates.text": "#3e8eb0",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.icon": "#2a273f",
|
"theme.bar.menus.menu.power.buttons.sleep.icon": "#2a273f",
|
||||||
"theme.bar.buttons.bluetooth.icon_background": "#89dbeb",
|
"theme.bar.buttons.bluetooth.icon_background": "#89dbeb",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.background": "#2a283e",
|
"theme.bar.menus.menu.power.buttons.restart.background": "#2a283e",
|
||||||
"theme.bar.buttons.modules.cpu.text": "#eb6f92",
|
"theme.bar.buttons.modules.cpu.text": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.kbLayout.text": "#9ccfd8",
|
"theme.bar.buttons.modules.kbLayout.text": "#9ccfd8",
|
||||||
"theme.bar.buttons.notifications.icon_background": "#c4a7e7",
|
"theme.bar.buttons.notifications.icon_background": "#c4a7e7",
|
||||||
"theme.bar.buttons.modules.power.border": "#eb6f92",
|
"theme.bar.buttons.modules.power.border": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.weather.border": "#c4a7e7",
|
"theme.bar.buttons.modules.weather.border": "#c4a7e7",
|
||||||
"theme.bar.buttons.modules.updates.border": "#30738f",
|
"theme.bar.buttons.modules.updates.border": "#30738f",
|
||||||
"theme.bar.buttons.modules.kbLayout.border": "#9ccfd8",
|
"theme.bar.buttons.modules.kbLayout.border": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.netstat.border": "#9ccfd8",
|
"theme.bar.buttons.modules.netstat.border": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.storage.border": "#eb6f92",
|
"theme.bar.buttons.modules.storage.border": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.cpu.border": "#eb6f92",
|
"theme.bar.buttons.modules.cpu.border": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.ram.border": "#f6c177",
|
"theme.bar.buttons.modules.ram.border": "#f6c177",
|
||||||
"theme.bar.buttons.notifications.border": "#c4a7e7",
|
"theme.bar.buttons.notifications.border": "#c4a7e7",
|
||||||
"theme.bar.buttons.clock.border": "#c4a7e7",
|
"theme.bar.buttons.clock.border": "#c4a7e7",
|
||||||
"theme.bar.buttons.battery.border": "#f6c177",
|
"theme.bar.buttons.battery.border": "#f6c177",
|
||||||
"theme.bar.buttons.systray.border": "#26233a",
|
"theme.bar.buttons.systray.border": "#26233a",
|
||||||
"theme.bar.buttons.bluetooth.border": "#9ccfd8",
|
"theme.bar.buttons.bluetooth.border": "#9ccfd8",
|
||||||
"theme.bar.buttons.network.border": "#c4a7e7",
|
"theme.bar.buttons.network.border": "#c4a7e7",
|
||||||
"theme.bar.buttons.volume.border": "#eb6f92",
|
"theme.bar.buttons.volume.border": "#eb6f92",
|
||||||
"theme.bar.buttons.media.border": "#c4a7e7",
|
"theme.bar.buttons.media.border": "#c4a7e7",
|
||||||
"theme.bar.buttons.windowtitle.border": "#c4a7e7",
|
"theme.bar.buttons.windowtitle.border": "#c4a7e7",
|
||||||
"theme.bar.buttons.workspaces.border": "#1f1d2e",
|
"theme.bar.buttons.workspaces.border": "#1f1d2e",
|
||||||
"theme.bar.buttons.dashboard.border": "#f6c177",
|
"theme.bar.buttons.dashboard.border": "#f6c177",
|
||||||
"theme.bar.buttons.modules.submap.background": "#2a283e",
|
"theme.bar.buttons.modules.submap.background": "#2a283e",
|
||||||
"theme.bar.buttons.modules.submap.text": "#9ccfd8",
|
"theme.bar.buttons.modules.submap.text": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.submap.border": "#9ccfd8",
|
"theme.bar.buttons.modules.submap.border": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.submap.icon": "#9ccfd8",
|
"theme.bar.buttons.modules.submap.icon": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.submap.icon_background": "#2a283e",
|
"theme.bar.buttons.modules.submap.icon_background": "#2a283e",
|
||||||
"theme.bar.menus.menu.network.switch.enabled": "#c4a7e7",
|
"theme.bar.menus.menu.network.switch.enabled": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.network.switch.disabled": "#2a273f",
|
"theme.bar.menus.menu.network.switch.disabled": "#2a273f",
|
||||||
"theme.bar.menus.menu.network.switch.puck": "#393552",
|
"theme.bar.menus.menu.network.switch.puck": "#393552",
|
||||||
"theme.bar.buttons.systray.customIcon": "#e0def4",
|
"theme.bar.buttons.systray.customIcon": "#e0def4",
|
||||||
"theme.bar.border.color": "#c4a7e7",
|
"theme.bar.border.color": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#e0def4",
|
"theme.bar.menus.menu.media.timestamp": "#e0def4",
|
||||||
"theme.bar.buttons.borderColor": "#c4a7e7",
|
"theme.bar.buttons.borderColor": "#c4a7e7",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon": "#f6c177",
|
"theme.bar.buttons.modules.hyprsunset.icon": "#f6c177",
|
||||||
"theme.bar.buttons.modules.hyprsunset.background": "#2a283e",
|
"theme.bar.buttons.modules.hyprsunset.background": "#2a283e",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#2a283e",
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#2a283e",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#f6c177",
|
"theme.bar.buttons.modules.hyprsunset.text": "#f6c177",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#f6c177",
|
"theme.bar.buttons.modules.hyprsunset.border": "#f6c177",
|
||||||
"theme.bar.buttons.modules.hypridle.icon": "#c4a7e7",
|
"theme.bar.buttons.modules.hypridle.icon": "#c4a7e7",
|
||||||
"theme.bar.buttons.modules.hypridle.background": "#2a283e",
|
"theme.bar.buttons.modules.hypridle.background": "#2a283e",
|
||||||
"theme.bar.buttons.modules.hypridle.icon_background": "#2a283e",
|
"theme.bar.buttons.modules.hypridle.icon_background": "#2a283e",
|
||||||
"theme.bar.buttons.modules.hypridle.text": "#eb6f92",
|
"theme.bar.buttons.modules.hypridle.text": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.hypridle.border": "#eb6f92"
|
"theme.bar.buttons.modules.hypridle.border": "#eb6f92",
|
||||||
|
"theme.bar.menus.menu.network.scroller.color": "#c4a7e7",
|
||||||
|
"theme.bar.menus.menu.bluetooth.scroller.color": "#9ccfd8"
|
||||||
}
|
}
|
||||||
@@ -1,358 +1,360 @@
|
|||||||
{
|
{
|
||||||
"theme.bar.menus.background": "#232136",
|
"theme.bar.menus.background": "#232136",
|
||||||
"theme.bar.background": "#232136",
|
"theme.bar.background": "#232136",
|
||||||
"theme.bar.buttons.media.icon": "#2a283e",
|
"theme.bar.buttons.media.icon": "#2a283e",
|
||||||
"theme.bar.buttons.media.text": "#c4a7e7",
|
"theme.bar.buttons.media.text": "#c4a7e7",
|
||||||
"theme.bar.buttons.icon": "#242438",
|
"theme.bar.buttons.icon": "#242438",
|
||||||
"theme.bar.buttons.text": "#c4a7e7",
|
"theme.bar.buttons.text": "#c4a7e7",
|
||||||
"theme.bar.buttons.hover": "#393552",
|
"theme.bar.buttons.hover": "#393552",
|
||||||
"theme.bar.buttons.background": "#2a283e",
|
"theme.bar.buttons.background": "#2a283e",
|
||||||
"theme.bar.menus.text": "#e0def4",
|
"theme.bar.menus.text": "#e0def4",
|
||||||
"theme.bar.menus.border.color": "#2a273f",
|
"theme.bar.menus.border.color": "#2a273f",
|
||||||
"theme.bar.buttons.media.background": "#2a283e",
|
"theme.bar.buttons.media.background": "#2a283e",
|
||||||
"theme.bar.menus.menu.volume.text": "#e0def4",
|
"theme.bar.menus.menu.volume.text": "#e0def4",
|
||||||
"theme.bar.menus.menu.volume.card.color": "#2a283e",
|
"theme.bar.menus.menu.volume.card.color": "#2a283e",
|
||||||
"theme.bar.menus.menu.volume.label.color": "#eb6f92",
|
"theme.bar.menus.menu.volume.label.color": "#eb6f92",
|
||||||
"theme.bar.menus.popover.text": "#c4a7e7",
|
"theme.bar.menus.popover.text": "#c4a7e7",
|
||||||
"theme.bar.menus.popover.background": "#2a273f",
|
"theme.bar.menus.popover.background": "#2a273f",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.shutdown": "#eb6f92",
|
"theme.bar.menus.menu.dashboard.powermenu.shutdown": "#eb6f92",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#eb6f92",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#eb6f92",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.confirm": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.confirm": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#232136",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#232136",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.body": "#e0def4",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.body": "#e0def4",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.border": "#2a273f",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.border": "#2a273f",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#232136",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#232136",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#2a283e",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#2a283e",
|
||||||
"theme.bar.menus.menu.notifications.switch.puck": "#393552",
|
"theme.bar.menus.menu.notifications.switch.puck": "#393552",
|
||||||
"theme.bar.menus.menu.notifications.switch.disabled": "#2a273f",
|
"theme.bar.menus.menu.notifications.switch.disabled": "#2a273f",
|
||||||
"theme.bar.menus.menu.notifications.switch.enabled": "#c4a7e7",
|
"theme.bar.menus.menu.notifications.switch.enabled": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.notifications.clear": "#eb6f92",
|
"theme.bar.menus.menu.notifications.clear": "#eb6f92",
|
||||||
"theme.bar.menus.menu.notifications.switch_divider": "#393552",
|
"theme.bar.menus.menu.notifications.switch_divider": "#393552",
|
||||||
"theme.bar.menus.menu.notifications.border": "#2a273f",
|
"theme.bar.menus.menu.notifications.border": "#2a273f",
|
||||||
"theme.bar.menus.menu.notifications.card": "#2a283e",
|
"theme.bar.menus.menu.notifications.card": "#2a283e",
|
||||||
"theme.bar.menus.menu.notifications.background": "#232136",
|
"theme.bar.menus.menu.notifications.background": "#232136",
|
||||||
"theme.bar.menus.menu.notifications.no_notifications_label": "#2a273f",
|
"theme.bar.menus.menu.notifications.no_notifications_label": "#2a273f",
|
||||||
"theme.bar.menus.menu.notifications.label": "#c4a7e7",
|
"theme.bar.menus.menu.notifications.label": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.disk.label": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.monitors.disk.label": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.disk.bar": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.monitors.disk.bar": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.disk.icon": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.monitors.disk.icon": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.gpu.label": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.monitors.gpu.label": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.gpu.icon": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.monitors.gpu.icon": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.ram.label": "#f6c177",
|
"theme.bar.menus.menu.dashboard.monitors.ram.label": "#f6c177",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.ram.bar": "#f6c177",
|
"theme.bar.menus.menu.dashboard.monitors.ram.bar": "#f6c177",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.ram.icon": "#f6c177",
|
"theme.bar.menus.menu.dashboard.monitors.ram.icon": "#f6c177",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.cpu.label": "#eb6f92",
|
"theme.bar.menus.menu.dashboard.monitors.cpu.label": "#eb6f92",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#eb6f92",
|
"theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#eb6f92",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#eb6f92",
|
"theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#eb6f92",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.bar_background": "#393552",
|
"theme.bar.menus.menu.dashboard.monitors.bar_background": "#393552",
|
||||||
"theme.bar.menus.menu.dashboard.directories.right.bottom.color": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.directories.right.bottom.color": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.directories.right.middle.color": "#3e8eb0",
|
"theme.bar.menus.menu.dashboard.directories.right.middle.color": "#3e8eb0",
|
||||||
"theme.bar.menus.menu.dashboard.directories.right.top.color": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.directories.right.top.color": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#eb6f92",
|
"theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#eb6f92",
|
||||||
"theme.bar.menus.menu.dashboard.directories.left.middle.color": "#f6c177",
|
"theme.bar.menus.menu.dashboard.directories.left.middle.color": "#f6c177",
|
||||||
"theme.bar.menus.menu.dashboard.directories.left.top.color": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.directories.left.top.color": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.controls.input.text": "#2a273f",
|
"theme.bar.menus.menu.dashboard.controls.input.text": "#2a273f",
|
||||||
"theme.bar.menus.menu.dashboard.controls.input.background": "#3e8eb0",
|
"theme.bar.menus.menu.dashboard.controls.input.background": "#3e8eb0",
|
||||||
"theme.bar.menus.menu.dashboard.controls.volume.text": "#2a273f",
|
"theme.bar.menus.menu.dashboard.controls.volume.text": "#2a273f",
|
||||||
"theme.bar.menus.menu.dashboard.controls.volume.background": "#eb6f92",
|
"theme.bar.menus.menu.dashboard.controls.volume.background": "#eb6f92",
|
||||||
"theme.bar.menus.menu.dashboard.controls.notifications.text": "#2a273f",
|
"theme.bar.menus.menu.dashboard.controls.notifications.text": "#2a273f",
|
||||||
"theme.bar.menus.menu.dashboard.controls.notifications.background": "#f6c177",
|
"theme.bar.menus.menu.dashboard.controls.notifications.background": "#f6c177",
|
||||||
"theme.bar.menus.menu.dashboard.controls.bluetooth.text": "#2a273f",
|
"theme.bar.menus.menu.dashboard.controls.bluetooth.text": "#2a273f",
|
||||||
"theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.controls.wifi.text": "#2a273f",
|
"theme.bar.menus.menu.dashboard.controls.wifi.text": "#2a273f",
|
||||||
"theme.bar.menus.menu.dashboard.controls.wifi.background": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.controls.wifi.background": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.controls.disabled": "#44415a",
|
"theme.bar.menus.menu.dashboard.controls.disabled": "#44415a",
|
||||||
"theme.bar.menus.menu.dashboard.shortcuts.recording": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.shortcuts.recording": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.shortcuts.text": "#2a273f",
|
"theme.bar.menus.menu.dashboard.shortcuts.text": "#2a273f",
|
||||||
"theme.bar.menus.menu.dashboard.shortcuts.background": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.shortcuts.background": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.sleep": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.powermenu.sleep": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.logout": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.powermenu.logout": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.restart": "#f6c177",
|
"theme.bar.menus.menu.dashboard.powermenu.restart": "#f6c177",
|
||||||
"theme.bar.menus.menu.dashboard.profile.name": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.profile.name": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.border.color": "#2a273f",
|
"theme.bar.menus.menu.dashboard.border.color": "#2a273f",
|
||||||
"theme.bar.menus.menu.dashboard.background.color": "#232136",
|
"theme.bar.menus.menu.dashboard.background.color": "#232136",
|
||||||
"theme.bar.menus.menu.dashboard.card.color": "#2a283e",
|
"theme.bar.menus.menu.dashboard.card.color": "#2a283e",
|
||||||
"theme.bar.menus.menu.clock.weather.hourly.temperature": "#c4a7e7",
|
"theme.bar.menus.menu.clock.weather.hourly.temperature": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.weather.hourly.icon": "#c4a7e7",
|
"theme.bar.menus.menu.clock.weather.hourly.icon": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.weather.hourly.time": "#c4a7e7",
|
"theme.bar.menus.menu.clock.weather.hourly.time": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.extremelycold": "#9ccfd8",
|
"theme.bar.menus.menu.clock.weather.thermometer.extremelycold": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.cold": "#3e8fb0",
|
"theme.bar.menus.menu.clock.weather.thermometer.cold": "#3e8fb0",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.moderate": "#c4a7e7",
|
"theme.bar.menus.menu.clock.weather.thermometer.moderate": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.hot": "#f6c177",
|
"theme.bar.menus.menu.clock.weather.thermometer.hot": "#f6c177",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#eb6f92",
|
"theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#eb6f92",
|
||||||
"theme.bar.menus.menu.clock.weather.stats": "#c4a7e7",
|
"theme.bar.menus.menu.clock.weather.stats": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.weather.status": "#9ccfd8",
|
"theme.bar.menus.menu.clock.weather.status": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.clock.weather.temperature": "#e0def4",
|
"theme.bar.menus.menu.clock.weather.temperature": "#e0def4",
|
||||||
"theme.bar.menus.menu.clock.weather.icon": "#c4a7e7",
|
"theme.bar.menus.menu.clock.weather.icon": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.calendar.contextdays": "#44415a",
|
"theme.bar.menus.menu.clock.calendar.contextdays": "#44415a",
|
||||||
"theme.bar.menus.menu.clock.calendar.days": "#e0def4",
|
"theme.bar.menus.menu.clock.calendar.days": "#e0def4",
|
||||||
"theme.bar.menus.menu.clock.calendar.currentday": "#c4a7e7",
|
"theme.bar.menus.menu.clock.calendar.currentday": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.calendar.paginator": "#c4a7e7",
|
"theme.bar.menus.menu.clock.calendar.paginator": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.calendar.weekdays": "#c4a7e7",
|
"theme.bar.menus.menu.clock.calendar.weekdays": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.calendar.yearmonth": "#9ccfd8",
|
"theme.bar.menus.menu.clock.calendar.yearmonth": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.clock.time.timeperiod": "#9ccfd8",
|
"theme.bar.menus.menu.clock.time.timeperiod": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.clock.time.time": "#c4a7e7",
|
"theme.bar.menus.menu.clock.time.time": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.text": "#e0def4",
|
"theme.bar.menus.menu.clock.text": "#e0def4",
|
||||||
"theme.bar.menus.menu.clock.border.color": "#2a273f",
|
"theme.bar.menus.menu.clock.border.color": "#2a273f",
|
||||||
"theme.bar.menus.menu.clock.background.color": "#232136",
|
"theme.bar.menus.menu.clock.background.color": "#232136",
|
||||||
"theme.bar.menus.menu.clock.card.color": "#2a283e",
|
"theme.bar.menus.menu.clock.card.color": "#2a283e",
|
||||||
"theme.bar.menus.menu.battery.slider.puck": "#393552",
|
"theme.bar.menus.menu.battery.slider.puck": "#393552",
|
||||||
"theme.bar.menus.menu.battery.slider.backgroundhover": "#393552",
|
"theme.bar.menus.menu.battery.slider.backgroundhover": "#393552",
|
||||||
"theme.bar.menus.menu.battery.slider.background": "#44415a",
|
"theme.bar.menus.menu.battery.slider.background": "#44415a",
|
||||||
"theme.bar.menus.menu.battery.slider.primary": "#f6c177",
|
"theme.bar.menus.menu.battery.slider.primary": "#f6c177",
|
||||||
"theme.bar.menus.menu.battery.icons.active": "#f6c177",
|
"theme.bar.menus.menu.battery.icons.active": "#f6c177",
|
||||||
"theme.bar.menus.menu.battery.icons.passive": "#56526e",
|
"theme.bar.menus.menu.battery.icons.passive": "#56526e",
|
||||||
"theme.bar.menus.menu.battery.listitems.active": "#f6c177",
|
"theme.bar.menus.menu.battery.listitems.active": "#f6c177",
|
||||||
"theme.bar.menus.menu.battery.listitems.passive": "#e0def4",
|
"theme.bar.menus.menu.battery.listitems.passive": "#e0def4",
|
||||||
"theme.bar.menus.menu.battery.text": "#e0def4",
|
"theme.bar.menus.menu.battery.text": "#e0def4",
|
||||||
"theme.bar.menus.menu.battery.label.color": "#f6c177",
|
"theme.bar.menus.menu.battery.label.color": "#f6c177",
|
||||||
"theme.bar.menus.menu.battery.border.color": "#2a273f",
|
"theme.bar.menus.menu.battery.border.color": "#2a273f",
|
||||||
"theme.bar.menus.menu.battery.background.color": "#232136",
|
"theme.bar.menus.menu.battery.background.color": "#232136",
|
||||||
"theme.bar.menus.menu.battery.card.color": "#2a283e",
|
"theme.bar.menus.menu.battery.card.color": "#2a283e",
|
||||||
"theme.bar.menus.menu.systray.dropdownmenu.divider": "#2a283e",
|
"theme.bar.menus.menu.systray.dropdownmenu.divider": "#2a283e",
|
||||||
"theme.bar.menus.menu.systray.dropdownmenu.text": "#e0def4",
|
"theme.bar.menus.menu.systray.dropdownmenu.text": "#e0def4",
|
||||||
"theme.bar.menus.menu.systray.dropdownmenu.background": "#232136",
|
"theme.bar.menus.menu.systray.dropdownmenu.background": "#232136",
|
||||||
"theme.bar.menus.menu.bluetooth.iconbutton.active": "#9ccfd8",
|
"theme.bar.menus.menu.bluetooth.iconbutton.active": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.bluetooth.iconbutton.passive": "#e0def4",
|
"theme.bar.menus.menu.bluetooth.iconbutton.passive": "#e0def4",
|
||||||
"theme.bar.menus.menu.bluetooth.icons.active": "#9ccfd8",
|
"theme.bar.menus.menu.bluetooth.icons.active": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.bluetooth.icons.passive": "#56526e",
|
"theme.bar.menus.menu.bluetooth.icons.passive": "#56526e",
|
||||||
"theme.bar.menus.menu.bluetooth.listitems.active": "#9ccfd8",
|
"theme.bar.menus.menu.bluetooth.listitems.active": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.bluetooth.listitems.passive": "#e0def4",
|
"theme.bar.menus.menu.bluetooth.listitems.passive": "#e0def4",
|
||||||
"theme.bar.menus.menu.bluetooth.switch.puck": "#393552",
|
"theme.bar.menus.menu.bluetooth.switch.puck": "#393552",
|
||||||
"theme.bar.menus.menu.bluetooth.switch.disabled": "#2a273f",
|
"theme.bar.menus.menu.bluetooth.switch.disabled": "#2a273f",
|
||||||
"theme.bar.menus.menu.bluetooth.switch.enabled": "#9ccfd8",
|
"theme.bar.menus.menu.bluetooth.switch.enabled": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.bluetooth.switch_divider": "#393552",
|
"theme.bar.menus.menu.bluetooth.switch_divider": "#393552",
|
||||||
"theme.bar.menus.menu.bluetooth.status": "#393552",
|
"theme.bar.menus.menu.bluetooth.status": "#393552",
|
||||||
"theme.bar.menus.menu.bluetooth.text": "#e0def4",
|
"theme.bar.menus.menu.bluetooth.text": "#e0def4",
|
||||||
"theme.bar.menus.menu.bluetooth.label.color": "#9ccfd8",
|
"theme.bar.menus.menu.bluetooth.label.color": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.bluetooth.border.color": "#2a273f",
|
"theme.bar.menus.menu.bluetooth.border.color": "#2a273f",
|
||||||
"theme.bar.menus.menu.bluetooth.background.color": "#232136",
|
"theme.bar.menus.menu.bluetooth.background.color": "#232136",
|
||||||
"theme.bar.menus.menu.bluetooth.card.color": "#2a283e",
|
"theme.bar.menus.menu.bluetooth.card.color": "#2a283e",
|
||||||
"theme.bar.menus.menu.network.iconbuttons.active": "#c4a7e7",
|
"theme.bar.menus.menu.network.iconbuttons.active": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.network.iconbuttons.passive": "#e0def4",
|
"theme.bar.menus.menu.network.iconbuttons.passive": "#e0def4",
|
||||||
"theme.bar.menus.menu.network.icons.active": "#c4a7e7",
|
"theme.bar.menus.menu.network.icons.active": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.network.icons.passive": "#56526e",
|
"theme.bar.menus.menu.network.icons.passive": "#56526e",
|
||||||
"theme.bar.menus.menu.network.listitems.active": "#c4a7e7",
|
"theme.bar.menus.menu.network.listitems.active": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.network.listitems.passive": "#e0def4",
|
"theme.bar.menus.menu.network.listitems.passive": "#e0def4",
|
||||||
"theme.bar.menus.menu.network.status.color": "#393552",
|
"theme.bar.menus.menu.network.status.color": "#393552",
|
||||||
"theme.bar.menus.menu.network.text": "#e0def4",
|
"theme.bar.menus.menu.network.text": "#e0def4",
|
||||||
"theme.bar.menus.menu.network.label.color": "#c4a7e7",
|
"theme.bar.menus.menu.network.label.color": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.network.border.color": "#2a273f",
|
"theme.bar.menus.menu.network.border.color": "#2a273f",
|
||||||
"theme.bar.menus.menu.network.background.color": "#232136",
|
"theme.bar.menus.menu.network.background.color": "#232136",
|
||||||
"theme.bar.menus.menu.network.card.color": "#2a283e",
|
"theme.bar.menus.menu.network.card.color": "#2a283e",
|
||||||
"theme.bar.menus.menu.volume.input_slider.puck": "#44415a",
|
"theme.bar.menus.menu.volume.input_slider.puck": "#44415a",
|
||||||
"theme.bar.menus.menu.volume.input_slider.backgroundhover": "#393552",
|
"theme.bar.menus.menu.volume.input_slider.backgroundhover": "#393552",
|
||||||
"theme.bar.menus.menu.volume.input_slider.background": "#44415a",
|
"theme.bar.menus.menu.volume.input_slider.background": "#44415a",
|
||||||
"theme.bar.menus.menu.volume.input_slider.primary": "#eb6f92",
|
"theme.bar.menus.menu.volume.input_slider.primary": "#eb6f92",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.puck": "#44415a",
|
"theme.bar.menus.menu.volume.audio_slider.puck": "#44415a",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#393552",
|
"theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#393552",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.background": "#44415a",
|
"theme.bar.menus.menu.volume.audio_slider.background": "#44415a",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.primary": "#eb6f92",
|
"theme.bar.menus.menu.volume.audio_slider.primary": "#eb6f92",
|
||||||
"theme.bar.menus.menu.volume.icons.active": "#eb6f92",
|
"theme.bar.menus.menu.volume.icons.active": "#eb6f92",
|
||||||
"theme.bar.menus.menu.volume.icons.passive": "#56526e",
|
"theme.bar.menus.menu.volume.icons.passive": "#56526e",
|
||||||
"theme.bar.menus.menu.volume.iconbutton.active": "#eb6f92",
|
"theme.bar.menus.menu.volume.iconbutton.active": "#eb6f92",
|
||||||
"theme.bar.menus.menu.volume.iconbutton.passive": "#e0def4",
|
"theme.bar.menus.menu.volume.iconbutton.passive": "#e0def4",
|
||||||
"theme.bar.menus.menu.volume.listitems.active": "#eb6f92",
|
"theme.bar.menus.menu.volume.listitems.active": "#eb6f92",
|
||||||
"theme.bar.menus.menu.volume.listitems.passive": "#e0def4",
|
"theme.bar.menus.menu.volume.listitems.passive": "#e0def4",
|
||||||
"theme.bar.menus.menu.volume.border.color": "#2a273f",
|
"theme.bar.menus.menu.volume.border.color": "#2a273f",
|
||||||
"theme.bar.menus.menu.volume.background.color": "#232136",
|
"theme.bar.menus.menu.volume.background.color": "#232136",
|
||||||
"theme.bar.menus.menu.media.slider.puck": "#393552",
|
"theme.bar.menus.menu.media.slider.puck": "#393552",
|
||||||
"theme.bar.menus.menu.media.slider.backgroundhover": "#393552",
|
"theme.bar.menus.menu.media.slider.backgroundhover": "#393552",
|
||||||
"theme.bar.menus.menu.media.slider.background": "#44415a",
|
"theme.bar.menus.menu.media.slider.background": "#44415a",
|
||||||
"theme.bar.menus.menu.media.slider.primary": "#c4a7e7",
|
"theme.bar.menus.menu.media.slider.primary": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.media.buttons.text": "#232136",
|
"theme.bar.menus.menu.media.buttons.text": "#232136",
|
||||||
"theme.bar.menus.menu.media.buttons.background": "#c4a7e7",
|
"theme.bar.menus.menu.media.buttons.background": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.media.buttons.enabled": "#9ccfd8",
|
"theme.bar.menus.menu.media.buttons.enabled": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.media.buttons.inactive": "#44415a",
|
"theme.bar.menus.menu.media.buttons.inactive": "#44415a",
|
||||||
"theme.bar.menus.menu.media.border.color": "#2a273f",
|
"theme.bar.menus.menu.media.border.color": "#2a273f",
|
||||||
"theme.bar.menus.menu.media.background.color": "#232136",
|
"theme.bar.menus.menu.media.background.color": "#232136",
|
||||||
"theme.bar.menus.menu.media.album": "#c4a7e7",
|
"theme.bar.menus.menu.media.album": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.media.artist": "#9ccfd8",
|
"theme.bar.menus.menu.media.artist": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.media.song": "#c4a7e7",
|
"theme.bar.menus.menu.media.song": "#c4a7e7",
|
||||||
"theme.bar.menus.tooltip.text": "#e0def4",
|
"theme.bar.menus.tooltip.text": "#e0def4",
|
||||||
"theme.bar.menus.tooltip.background": "#232136",
|
"theme.bar.menus.tooltip.background": "#232136",
|
||||||
"theme.bar.menus.dropdownmenu.divider": "#2a283e",
|
"theme.bar.menus.dropdownmenu.divider": "#2a283e",
|
||||||
"theme.bar.menus.dropdownmenu.text": "#e0def4",
|
"theme.bar.menus.dropdownmenu.text": "#e0def4",
|
||||||
"theme.bar.menus.dropdownmenu.background": "#232136",
|
"theme.bar.menus.dropdownmenu.background": "#232136",
|
||||||
"theme.bar.menus.slider.puck": "#393552",
|
"theme.bar.menus.slider.puck": "#393552",
|
||||||
"theme.bar.menus.slider.backgroundhover": "#393552",
|
"theme.bar.menus.slider.backgroundhover": "#393552",
|
||||||
"theme.bar.menus.slider.background": "#44415a",
|
"theme.bar.menus.slider.background": "#44415a",
|
||||||
"theme.bar.menus.slider.primary": "#c4a7e7",
|
"theme.bar.menus.slider.primary": "#c4a7e7",
|
||||||
"theme.bar.menus.progressbar.background": "#393552",
|
"theme.bar.menus.progressbar.background": "#393552",
|
||||||
"theme.bar.menus.progressbar.foreground": "#c4a7e7",
|
"theme.bar.menus.progressbar.foreground": "#c4a7e7",
|
||||||
"theme.bar.menus.iconbuttons.active": "#c4a7e7",
|
"theme.bar.menus.iconbuttons.active": "#c4a7e7",
|
||||||
"theme.bar.menus.iconbuttons.passive": "#e0def4",
|
"theme.bar.menus.iconbuttons.passive": "#e0def4",
|
||||||
"theme.bar.menus.buttons.text": "#2a273f",
|
"theme.bar.menus.buttons.text": "#2a273f",
|
||||||
"theme.bar.menus.buttons.disabled": "#44415a",
|
"theme.bar.menus.buttons.disabled": "#44415a",
|
||||||
"theme.bar.menus.buttons.active": "#c4a7e7",
|
"theme.bar.menus.buttons.active": "#c4a7e7",
|
||||||
"theme.bar.menus.buttons.default": "#c4a7e7",
|
"theme.bar.menus.buttons.default": "#c4a7e7",
|
||||||
"theme.bar.menus.switch.puck": "#393552",
|
"theme.bar.menus.switch.puck": "#393552",
|
||||||
"theme.bar.menus.switch.disabled": "#2a273f",
|
"theme.bar.menus.switch.disabled": "#2a273f",
|
||||||
"theme.bar.menus.switch.enabled": "#c4a7e7",
|
"theme.bar.menus.switch.enabled": "#c4a7e7",
|
||||||
"theme.bar.menus.icons.active": "#c4a7e7",
|
"theme.bar.menus.icons.active": "#c4a7e7",
|
||||||
"theme.bar.menus.icons.passive": "#44415a",
|
"theme.bar.menus.icons.passive": "#44415a",
|
||||||
"theme.bar.menus.listitems.active": "#c4a7e7",
|
"theme.bar.menus.listitems.active": "#c4a7e7",
|
||||||
"theme.bar.menus.listitems.passive": "#e0def4",
|
"theme.bar.menus.listitems.passive": "#e0def4",
|
||||||
"theme.bar.menus.label": "#c4a7e7",
|
"theme.bar.menus.label": "#c4a7e7",
|
||||||
"theme.bar.menus.feinttext": "#2a273f",
|
"theme.bar.menus.feinttext": "#2a273f",
|
||||||
"theme.bar.menus.dimtext": "#44415a",
|
"theme.bar.menus.dimtext": "#44415a",
|
||||||
"theme.bar.menus.cards": "#2a283e",
|
"theme.bar.menus.cards": "#2a283e",
|
||||||
"theme.bar.buttons.notifications.total": "#c4a7e7",
|
"theme.bar.buttons.notifications.total": "#c4a7e7",
|
||||||
"theme.bar.buttons.notifications.icon": "#2a283e",
|
"theme.bar.buttons.notifications.icon": "#2a283e",
|
||||||
"theme.bar.buttons.notifications.background": "#2a283e",
|
"theme.bar.buttons.notifications.background": "#2a283e",
|
||||||
"theme.bar.buttons.clock.icon": "#2a283e",
|
"theme.bar.buttons.clock.icon": "#2a283e",
|
||||||
"theme.bar.buttons.clock.text": "#c4a7e7",
|
"theme.bar.buttons.clock.text": "#c4a7e7",
|
||||||
"theme.bar.buttons.clock.background": "#2a283e",
|
"theme.bar.buttons.clock.background": "#2a283e",
|
||||||
"theme.bar.buttons.battery.icon": "#2a283e",
|
"theme.bar.buttons.battery.icon": "#2a283e",
|
||||||
"theme.bar.buttons.battery.text": "#f6c177",
|
"theme.bar.buttons.battery.text": "#f6c177",
|
||||||
"theme.bar.buttons.battery.background": "#2a283e",
|
"theme.bar.buttons.battery.background": "#2a283e",
|
||||||
"theme.bar.buttons.systray.background": "#2a283e",
|
"theme.bar.buttons.systray.background": "#2a283e",
|
||||||
"theme.bar.buttons.bluetooth.icon": "#2a283e",
|
"theme.bar.buttons.bluetooth.icon": "#2a283e",
|
||||||
"theme.bar.buttons.bluetooth.text": "#9ccfd8",
|
"theme.bar.buttons.bluetooth.text": "#9ccfd8",
|
||||||
"theme.bar.buttons.bluetooth.background": "#2a283e",
|
"theme.bar.buttons.bluetooth.background": "#2a283e",
|
||||||
"theme.bar.buttons.network.icon": "#2a283e",
|
"theme.bar.buttons.network.icon": "#2a283e",
|
||||||
"theme.bar.buttons.network.text": "#c4a7e7",
|
"theme.bar.buttons.network.text": "#c4a7e7",
|
||||||
"theme.bar.buttons.network.background": "#2a283e",
|
"theme.bar.buttons.network.background": "#2a283e",
|
||||||
"theme.bar.buttons.volume.icon": "#2a283e",
|
"theme.bar.buttons.volume.icon": "#2a283e",
|
||||||
"theme.bar.buttons.volume.text": "#eb6f92",
|
"theme.bar.buttons.volume.text": "#eb6f92",
|
||||||
"theme.bar.buttons.volume.background": "#2a283e",
|
"theme.bar.buttons.volume.background": "#2a283e",
|
||||||
"theme.bar.buttons.windowtitle.icon": "#2a283e",
|
"theme.bar.buttons.windowtitle.icon": "#2a283e",
|
||||||
"theme.bar.buttons.windowtitle.text": "#c4a7e7",
|
"theme.bar.buttons.windowtitle.text": "#c4a7e7",
|
||||||
"theme.bar.buttons.windowtitle.background": "#2a283e",
|
"theme.bar.buttons.windowtitle.background": "#2a283e",
|
||||||
"theme.bar.buttons.workspaces.active": "#c4a7e7",
|
"theme.bar.buttons.workspaces.active": "#c4a7e7",
|
||||||
"theme.bar.buttons.workspaces.occupied": "#eb6f92",
|
"theme.bar.buttons.workspaces.occupied": "#eb6f92",
|
||||||
"theme.bar.buttons.workspaces.available": "#9ccfd8",
|
"theme.bar.buttons.workspaces.available": "#9ccfd8",
|
||||||
"theme.bar.buttons.workspaces.hover": "#c4a7e7",
|
"theme.bar.buttons.workspaces.hover": "#c4a7e7",
|
||||||
"theme.bar.buttons.workspaces.background": "#2a283e",
|
"theme.bar.buttons.workspaces.background": "#2a283e",
|
||||||
"theme.bar.buttons.dashboard.icon": "#2a283e",
|
"theme.bar.buttons.dashboard.icon": "#2a283e",
|
||||||
"theme.bar.buttons.dashboard.background": "#f6c177",
|
"theme.bar.buttons.dashboard.background": "#f6c177",
|
||||||
"theme.osd.label": "#c4a7e7",
|
"theme.osd.label": "#c4a7e7",
|
||||||
"theme.osd.icon": "#232136",
|
"theme.osd.icon": "#232136",
|
||||||
"theme.osd.bar_overflow_color": "#eb6f92",
|
"theme.osd.bar_overflow_color": "#eb6f92",
|
||||||
"theme.osd.bar_empty_color": "#2a273f",
|
"theme.osd.bar_empty_color": "#2a273f",
|
||||||
"theme.osd.bar_color": "#c4a7e7",
|
"theme.osd.bar_color": "#c4a7e7",
|
||||||
"theme.osd.icon_container": "#c4a7e7",
|
"theme.osd.icon_container": "#c4a7e7",
|
||||||
"theme.osd.bar_container": "#232136",
|
"theme.osd.bar_container": "#232136",
|
||||||
"theme.notification.close_button.label": "#232136",
|
"theme.notification.close_button.label": "#232136",
|
||||||
"theme.notification.close_button.background": "#eb6f92",
|
"theme.notification.close_button.background": "#eb6f92",
|
||||||
"theme.notification.labelicon": "#c4a7e7",
|
"theme.notification.labelicon": "#c4a7e7",
|
||||||
"theme.notification.text": "#e0def4",
|
"theme.notification.text": "#e0def4",
|
||||||
"theme.notification.time": "#56526e",
|
"theme.notification.time": "#56526e",
|
||||||
"theme.notification.border": "#2a273f",
|
"theme.notification.border": "#2a273f",
|
||||||
"theme.notification.label": "#c4a7e7",
|
"theme.notification.label": "#c4a7e7",
|
||||||
"theme.notification.actions.text": "#2a273f",
|
"theme.notification.actions.text": "#2a273f",
|
||||||
"theme.notification.actions.background": "#c4a7e7",
|
"theme.notification.actions.background": "#c4a7e7",
|
||||||
"theme.notification.background": "#2a273f",
|
"theme.notification.background": "#2a273f",
|
||||||
"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": "#c678dd",
|
"theme.bar.buttons.workspaces.numbered_active_underline_color": "#c678dd",
|
||||||
"theme.bar.menus.menu.media.card.color": "#2a283e",
|
"theme.bar.menus.menu.media.card.color": "#2a283e",
|
||||||
"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": "split",
|
"theme.bar.buttons.style": "split",
|
||||||
"theme.bar.buttons.icon_background": "#c4a7e7",
|
"theme.bar.buttons.icon_background": "#c4a7e7",
|
||||||
"theme.bar.buttons.volume.icon_background": "#eb6f92",
|
"theme.bar.buttons.volume.icon_background": "#eb6f92",
|
||||||
"theme.bar.buttons.network.icon_background": "#c4a7e7",
|
"theme.bar.buttons.network.icon_background": "#c4a7e7",
|
||||||
"theme.bar.buttons.bluetooth.icon_background": "#9ccfd8",
|
"theme.bar.buttons.bluetooth.icon_background": "#9ccfd8",
|
||||||
"theme.bar.buttons.windowtitle.icon_background": "#c4a7e7",
|
"theme.bar.buttons.windowtitle.icon_background": "#c4a7e7",
|
||||||
"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.pager.button": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.notifications.scrollbar.color": "#c4a7e7",
|
"theme.bar.menus.menu.notifications.scrollbar.color": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.notifications.pager.label": "#56526e",
|
"theme.bar.menus.menu.notifications.pager.label": "#56526e",
|
||||||
"theme.bar.menus.menu.notifications.pager.background": "#232136",
|
"theme.bar.menus.menu.notifications.pager.background": "#232136",
|
||||||
"theme.bar.buttons.modules.ram.icon": "#181825",
|
"theme.bar.buttons.modules.ram.icon": "#181825",
|
||||||
"theme.bar.buttons.modules.storage.icon_background": "#eb6f92",
|
"theme.bar.buttons.modules.storage.icon_background": "#eb6f92",
|
||||||
"theme.bar.menus.popover.border": "#2a273f",
|
"theme.bar.menus.popover.border": "#2a273f",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.icon_background": "#9ccfd8",
|
"theme.bar.menus.menu.power.buttons.sleep.icon_background": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.text": "#f6c177",
|
"theme.bar.menus.menu.power.buttons.restart.text": "#f6c177",
|
||||||
"theme.bar.buttons.modules.updates.background": "#2a283e",
|
"theme.bar.buttons.modules.updates.background": "#2a283e",
|
||||||
"theme.bar.buttons.modules.storage.icon": "#181825",
|
"theme.bar.buttons.modules.storage.icon": "#181825",
|
||||||
"theme.bar.buttons.modules.netstat.background": "#2a283e",
|
"theme.bar.buttons.modules.netstat.background": "#2a283e",
|
||||||
"theme.bar.buttons.modules.weather.icon": "#2a283e",
|
"theme.bar.buttons.modules.weather.icon": "#2a283e",
|
||||||
"theme.bar.buttons.modules.netstat.text": "#9ccfd8",
|
"theme.bar.buttons.modules.netstat.text": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.storage.background": "#2a283e",
|
"theme.bar.buttons.modules.storage.background": "#2a283e",
|
||||||
"theme.bar.buttons.modules.power.icon": "#181825",
|
"theme.bar.buttons.modules.power.icon": "#181825",
|
||||||
"theme.bar.buttons.modules.storage.text": "#eb6f92",
|
"theme.bar.buttons.modules.storage.text": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.cpu.background": "#2a283e",
|
"theme.bar.buttons.modules.cpu.background": "#2a283e",
|
||||||
"theme.bar.menus.menu.power.border.color": "#2a273f",
|
"theme.bar.menus.menu.power.border.color": "#2a273f",
|
||||||
"theme.bar.buttons.modules.power.icon_background": "#eb6f92",
|
"theme.bar.buttons.modules.power.icon_background": "#eb6f92",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.icon": "#2a273f",
|
"theme.bar.menus.menu.power.buttons.logout.icon": "#2a273f",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.icon_background": "#f6c177",
|
"theme.bar.menus.menu.power.buttons.restart.icon_background": "#f6c177",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.icon": "#2a273f",
|
"theme.bar.menus.menu.power.buttons.restart.icon": "#2a273f",
|
||||||
"theme.bar.buttons.modules.cpu.icon": "#181825",
|
"theme.bar.buttons.modules.cpu.icon": "#181825",
|
||||||
"theme.bar.buttons.modules.kbLayout.icon_background": "#9ccfd8",
|
"theme.bar.buttons.modules.kbLayout.icon_background": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.weather.text": "#c4a7e7",
|
"theme.bar.buttons.modules.weather.text": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.icon": "#2a273f",
|
"theme.bar.menus.menu.power.buttons.shutdown.icon": "#2a273f",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.text": "#9ccfd8",
|
"theme.bar.menus.menu.power.buttons.sleep.text": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.weather.icon_background": "#c4a7e7",
|
"theme.bar.buttons.modules.weather.icon_background": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.background": "#2a283e",
|
"theme.bar.menus.menu.power.buttons.shutdown.background": "#2a283e",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.background": "#2a283e",
|
"theme.bar.menus.menu.power.buttons.logout.background": "#2a283e",
|
||||||
"theme.bar.buttons.modules.kbLayout.icon": "#181825",
|
"theme.bar.buttons.modules.kbLayout.icon": "#181825",
|
||||||
"theme.bar.buttons.modules.ram.icon_background": "#f6c177",
|
"theme.bar.buttons.modules.ram.icon_background": "#f6c177",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.icon_background": "#eb6f92",
|
"theme.bar.menus.menu.power.buttons.shutdown.icon_background": "#eb6f92",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.text": "#eb6f92",
|
"theme.bar.menus.menu.power.buttons.shutdown.text": "#eb6f92",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.background": "#2a283e",
|
"theme.bar.menus.menu.power.buttons.sleep.background": "#2a283e",
|
||||||
"theme.bar.buttons.modules.ram.text": "#f6c177",
|
"theme.bar.buttons.modules.ram.text": "#f6c177",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.text": "#9ccfd8",
|
"theme.bar.menus.menu.power.buttons.logout.text": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.updates.icon_background": "#3e8eb0",
|
"theme.bar.buttons.modules.updates.icon_background": "#3e8eb0",
|
||||||
"theme.bar.buttons.modules.kbLayout.background": "#2a283e",
|
"theme.bar.buttons.modules.kbLayout.background": "#2a283e",
|
||||||
"theme.bar.buttons.modules.power.background": "#2a283e",
|
"theme.bar.buttons.modules.power.background": "#2a283e",
|
||||||
"theme.bar.buttons.modules.weather.background": "#2a283e",
|
"theme.bar.buttons.modules.weather.background": "#2a283e",
|
||||||
"theme.bar.menus.menu.power.background.color": "#232136",
|
"theme.bar.menus.menu.power.background.color": "#232136",
|
||||||
"theme.bar.buttons.modules.ram.background": "#2a283e",
|
"theme.bar.buttons.modules.ram.background": "#2a283e",
|
||||||
"theme.bar.buttons.modules.netstat.icon": "#181825",
|
"theme.bar.buttons.modules.netstat.icon": "#181825",
|
||||||
"theme.bar.buttons.modules.cpu.icon_background": "#eb6f92",
|
"theme.bar.buttons.modules.cpu.icon_background": "#eb6f92",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.icon_background": "#9ccfd8",
|
"theme.bar.menus.menu.power.buttons.logout.icon_background": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.updates.text": "#3e8eb0",
|
"theme.bar.buttons.modules.updates.text": "#3e8eb0",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.icon": "#2a273f",
|
"theme.bar.menus.menu.power.buttons.sleep.icon": "#2a273f",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.background": "#2a283e",
|
"theme.bar.menus.menu.power.buttons.restart.background": "#2a283e",
|
||||||
"theme.bar.buttons.modules.updates.icon": "#181825",
|
"theme.bar.buttons.modules.updates.icon": "#181825",
|
||||||
"theme.bar.buttons.modules.cpu.text": "#eb6f92",
|
"theme.bar.buttons.modules.cpu.text": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.netstat.icon_background": "#9ccfd8",
|
"theme.bar.buttons.modules.netstat.icon_background": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.kbLayout.text": "#9ccfd8",
|
"theme.bar.buttons.modules.kbLayout.text": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.power.border": "#eb6f92",
|
"theme.bar.buttons.modules.power.border": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.weather.border": "#c4a7e7",
|
"theme.bar.buttons.modules.weather.border": "#c4a7e7",
|
||||||
"theme.bar.buttons.modules.updates.border": "#30738f",
|
"theme.bar.buttons.modules.updates.border": "#30738f",
|
||||||
"theme.bar.buttons.modules.kbLayout.border": "#9ccfd8",
|
"theme.bar.buttons.modules.kbLayout.border": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.netstat.border": "#9ccfd8",
|
"theme.bar.buttons.modules.netstat.border": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.storage.border": "#eb6f92",
|
"theme.bar.buttons.modules.storage.border": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.cpu.border": "#eb6f92",
|
"theme.bar.buttons.modules.cpu.border": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.ram.border": "#f6c177",
|
"theme.bar.buttons.modules.ram.border": "#f6c177",
|
||||||
"theme.bar.buttons.notifications.border": "#c4a7e7",
|
"theme.bar.buttons.notifications.border": "#c4a7e7",
|
||||||
"theme.bar.buttons.clock.border": "#c4a7e7",
|
"theme.bar.buttons.clock.border": "#c4a7e7",
|
||||||
"theme.bar.buttons.battery.border": "#f6c177",
|
"theme.bar.buttons.battery.border": "#f6c177",
|
||||||
"theme.bar.buttons.systray.border": "#26233a",
|
"theme.bar.buttons.systray.border": "#26233a",
|
||||||
"theme.bar.buttons.bluetooth.border": "#9ccfd8",
|
"theme.bar.buttons.bluetooth.border": "#9ccfd8",
|
||||||
"theme.bar.buttons.network.border": "#c4a7e7",
|
"theme.bar.buttons.network.border": "#c4a7e7",
|
||||||
"theme.bar.buttons.volume.border": "#eb6f92",
|
"theme.bar.buttons.volume.border": "#eb6f92",
|
||||||
"theme.bar.buttons.media.border": "#c4a7e7",
|
"theme.bar.buttons.media.border": "#c4a7e7",
|
||||||
"theme.bar.buttons.windowtitle.border": "#c4a7e7",
|
"theme.bar.buttons.windowtitle.border": "#c4a7e7",
|
||||||
"theme.bar.buttons.workspaces.border": "#1f1d2e",
|
"theme.bar.buttons.workspaces.border": "#1f1d2e",
|
||||||
"theme.bar.buttons.dashboard.border": "#f6c177",
|
"theme.bar.buttons.dashboard.border": "#f6c177",
|
||||||
"theme.bar.buttons.modules.submap.background": "#2a283e",
|
"theme.bar.buttons.modules.submap.background": "#2a283e",
|
||||||
"theme.bar.buttons.modules.submap.text": "#9ccfd8",
|
"theme.bar.buttons.modules.submap.text": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.submap.border": "#9ccfd8",
|
"theme.bar.buttons.modules.submap.border": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.submap.icon": "#181825",
|
"theme.bar.buttons.modules.submap.icon": "#181825",
|
||||||
"theme.bar.buttons.modules.submap.icon_background": "#9ccfd8",
|
"theme.bar.buttons.modules.submap.icon_background": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.network.switch.enabled": "#c4a7e7",
|
"theme.bar.menus.menu.network.switch.enabled": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.network.switch.disabled": "#2a273f",
|
"theme.bar.menus.menu.network.switch.disabled": "#2a273f",
|
||||||
"theme.bar.menus.menu.network.switch.puck": "#393552",
|
"theme.bar.menus.menu.network.switch.puck": "#393552",
|
||||||
"theme.bar.buttons.systray.customIcon": "#e0def4",
|
"theme.bar.buttons.systray.customIcon": "#e0def4",
|
||||||
"theme.bar.border.color": "#c4a7e7",
|
"theme.bar.border.color": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#e0def4",
|
"theme.bar.menus.menu.media.timestamp": "#e0def4",
|
||||||
"theme.bar.buttons.borderColor": "#c4a7e7",
|
"theme.bar.buttons.borderColor": "#c4a7e7",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#f6c177",
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#f6c177",
|
||||||
"theme.bar.buttons.modules.hyprsunset.background": "#2a283e",
|
"theme.bar.buttons.modules.hyprsunset.background": "#2a283e",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon": "#181825",
|
"theme.bar.buttons.modules.hyprsunset.icon": "#181825",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#f6c177",
|
"theme.bar.buttons.modules.hyprsunset.text": "#f6c177",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#f6c177",
|
"theme.bar.buttons.modules.hyprsunset.border": "#f6c177",
|
||||||
"theme.bar.buttons.modules.hypridle.icon": "#181825",
|
"theme.bar.buttons.modules.hypridle.icon": "#181825",
|
||||||
"theme.bar.buttons.modules.hypridle.background": "#2a283e",
|
"theme.bar.buttons.modules.hypridle.background": "#2a283e",
|
||||||
"theme.bar.buttons.modules.hypridle.icon_background": "#eb6f92",
|
"theme.bar.buttons.modules.hypridle.icon_background": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.hypridle.text": "#eb6f92",
|
"theme.bar.buttons.modules.hypridle.text": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.hypridle.border": "#eb6f92"
|
"theme.bar.buttons.modules.hypridle.border": "#eb6f92",
|
||||||
|
"theme.bar.menus.menu.network.scroller.color": "#c4a7e7",
|
||||||
|
"theme.bar.menus.menu.bluetooth.scroller.color": "#9ccfd8"
|
||||||
}
|
}
|
||||||
@@ -1,358 +1,360 @@
|
|||||||
{
|
{
|
||||||
"theme.bar.menus.background": "#232136",
|
"theme.bar.menus.background": "#232136",
|
||||||
"theme.bar.background": "#232136",
|
"theme.bar.background": "#232136",
|
||||||
"theme.bar.buttons.media.icon": "#2a283e",
|
"theme.bar.buttons.media.icon": "#2a283e",
|
||||||
"theme.bar.buttons.media.text": "#2a283e",
|
"theme.bar.buttons.media.text": "#2a283e",
|
||||||
"theme.bar.buttons.icon": "#c4a7e7",
|
"theme.bar.buttons.icon": "#c4a7e7",
|
||||||
"theme.bar.buttons.text": "#c4a7e7",
|
"theme.bar.buttons.text": "#c4a7e7",
|
||||||
"theme.bar.buttons.hover": "#393552",
|
"theme.bar.buttons.hover": "#393552",
|
||||||
"theme.bar.buttons.background": "#2a283e",
|
"theme.bar.buttons.background": "#2a283e",
|
||||||
"theme.bar.menus.text": "#e0def4",
|
"theme.bar.menus.text": "#e0def4",
|
||||||
"theme.bar.menus.border.color": "#2a273f",
|
"theme.bar.menus.border.color": "#2a273f",
|
||||||
"theme.bar.buttons.media.background": "#c4a7e7",
|
"theme.bar.buttons.media.background": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.volume.text": "#e0def4",
|
"theme.bar.menus.menu.volume.text": "#e0def4",
|
||||||
"theme.bar.menus.menu.volume.card.color": "#2a283e",
|
"theme.bar.menus.menu.volume.card.color": "#2a283e",
|
||||||
"theme.bar.menus.menu.volume.label.color": "#eb6f92",
|
"theme.bar.menus.menu.volume.label.color": "#eb6f92",
|
||||||
"theme.bar.menus.popover.text": "#c4a7e7",
|
"theme.bar.menus.popover.text": "#c4a7e7",
|
||||||
"theme.bar.menus.popover.background": "#2a273f",
|
"theme.bar.menus.popover.background": "#2a273f",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.shutdown": "#eb6f92",
|
"theme.bar.menus.menu.dashboard.powermenu.shutdown": "#eb6f92",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#eb6f92",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#eb6f92",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.confirm": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.confirm": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#232136",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#232136",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.body": "#e0def4",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.body": "#e0def4",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.border": "#2a273f",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.border": "#2a273f",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#232136",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#232136",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#2a283e",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#2a283e",
|
||||||
"theme.bar.menus.menu.notifications.switch.puck": "#393552",
|
"theme.bar.menus.menu.notifications.switch.puck": "#393552",
|
||||||
"theme.bar.menus.menu.notifications.switch.disabled": "#2a273f",
|
"theme.bar.menus.menu.notifications.switch.disabled": "#2a273f",
|
||||||
"theme.bar.menus.menu.notifications.switch.enabled": "#c4a7e7",
|
"theme.bar.menus.menu.notifications.switch.enabled": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.notifications.clear": "#eb6f92",
|
"theme.bar.menus.menu.notifications.clear": "#eb6f92",
|
||||||
"theme.bar.menus.menu.notifications.switch_divider": "#393552",
|
"theme.bar.menus.menu.notifications.switch_divider": "#393552",
|
||||||
"theme.bar.menus.menu.notifications.border": "#2a273f",
|
"theme.bar.menus.menu.notifications.border": "#2a273f",
|
||||||
"theme.bar.menus.menu.notifications.card": "#2a283e",
|
"theme.bar.menus.menu.notifications.card": "#2a283e",
|
||||||
"theme.bar.menus.menu.notifications.background": "#232136",
|
"theme.bar.menus.menu.notifications.background": "#232136",
|
||||||
"theme.bar.menus.menu.notifications.no_notifications_label": "#2a273f",
|
"theme.bar.menus.menu.notifications.no_notifications_label": "#2a273f",
|
||||||
"theme.bar.menus.menu.notifications.label": "#c4a7e7",
|
"theme.bar.menus.menu.notifications.label": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.disk.label": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.monitors.disk.label": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.disk.bar": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.monitors.disk.bar": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.disk.icon": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.monitors.disk.icon": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.gpu.label": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.monitors.gpu.label": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.gpu.icon": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.monitors.gpu.icon": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.ram.label": "#f6c177",
|
"theme.bar.menus.menu.dashboard.monitors.ram.label": "#f6c177",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.ram.bar": "#f6c177",
|
"theme.bar.menus.menu.dashboard.monitors.ram.bar": "#f6c177",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.ram.icon": "#f6c177",
|
"theme.bar.menus.menu.dashboard.monitors.ram.icon": "#f6c177",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.cpu.label": "#eb6f92",
|
"theme.bar.menus.menu.dashboard.monitors.cpu.label": "#eb6f92",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#eb6f92",
|
"theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#eb6f92",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#eb6f92",
|
"theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#eb6f92",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.bar_background": "#393552",
|
"theme.bar.menus.menu.dashboard.monitors.bar_background": "#393552",
|
||||||
"theme.bar.menus.menu.dashboard.directories.right.bottom.color": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.directories.right.bottom.color": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.directories.right.middle.color": "#3e8eb0",
|
"theme.bar.menus.menu.dashboard.directories.right.middle.color": "#3e8eb0",
|
||||||
"theme.bar.menus.menu.dashboard.directories.right.top.color": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.directories.right.top.color": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#eb6f92",
|
"theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#eb6f92",
|
||||||
"theme.bar.menus.menu.dashboard.directories.left.middle.color": "#f6c177",
|
"theme.bar.menus.menu.dashboard.directories.left.middle.color": "#f6c177",
|
||||||
"theme.bar.menus.menu.dashboard.directories.left.top.color": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.directories.left.top.color": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.controls.input.text": "#2a273f",
|
"theme.bar.menus.menu.dashboard.controls.input.text": "#2a273f",
|
||||||
"theme.bar.menus.menu.dashboard.controls.input.background": "#3e8eb0",
|
"theme.bar.menus.menu.dashboard.controls.input.background": "#3e8eb0",
|
||||||
"theme.bar.menus.menu.dashboard.controls.volume.text": "#2a273f",
|
"theme.bar.menus.menu.dashboard.controls.volume.text": "#2a273f",
|
||||||
"theme.bar.menus.menu.dashboard.controls.volume.background": "#eb6f92",
|
"theme.bar.menus.menu.dashboard.controls.volume.background": "#eb6f92",
|
||||||
"theme.bar.menus.menu.dashboard.controls.notifications.text": "#2a273f",
|
"theme.bar.menus.menu.dashboard.controls.notifications.text": "#2a273f",
|
||||||
"theme.bar.menus.menu.dashboard.controls.notifications.background": "#f6c177",
|
"theme.bar.menus.menu.dashboard.controls.notifications.background": "#f6c177",
|
||||||
"theme.bar.menus.menu.dashboard.controls.bluetooth.text": "#2a273f",
|
"theme.bar.menus.menu.dashboard.controls.bluetooth.text": "#2a273f",
|
||||||
"theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.controls.wifi.text": "#2a273f",
|
"theme.bar.menus.menu.dashboard.controls.wifi.text": "#2a273f",
|
||||||
"theme.bar.menus.menu.dashboard.controls.wifi.background": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.controls.wifi.background": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.controls.disabled": "#44415a",
|
"theme.bar.menus.menu.dashboard.controls.disabled": "#44415a",
|
||||||
"theme.bar.menus.menu.dashboard.shortcuts.recording": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.shortcuts.recording": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.shortcuts.text": "#2a273f",
|
"theme.bar.menus.menu.dashboard.shortcuts.text": "#2a273f",
|
||||||
"theme.bar.menus.menu.dashboard.shortcuts.background": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.shortcuts.background": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.sleep": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.powermenu.sleep": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.logout": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.powermenu.logout": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.restart": "#f6c177",
|
"theme.bar.menus.menu.dashboard.powermenu.restart": "#f6c177",
|
||||||
"theme.bar.menus.menu.dashboard.profile.name": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.profile.name": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.border.color": "#2a273f",
|
"theme.bar.menus.menu.dashboard.border.color": "#2a273f",
|
||||||
"theme.bar.menus.menu.dashboard.background.color": "#232136",
|
"theme.bar.menus.menu.dashboard.background.color": "#232136",
|
||||||
"theme.bar.menus.menu.dashboard.card.color": "#2a283e",
|
"theme.bar.menus.menu.dashboard.card.color": "#2a283e",
|
||||||
"theme.bar.menus.menu.clock.weather.hourly.temperature": "#c4a7e7",
|
"theme.bar.menus.menu.clock.weather.hourly.temperature": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.weather.hourly.icon": "#c4a7e7",
|
"theme.bar.menus.menu.clock.weather.hourly.icon": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.weather.hourly.time": "#c4a7e7",
|
"theme.bar.menus.menu.clock.weather.hourly.time": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.extremelycold": "#9ccfd8",
|
"theme.bar.menus.menu.clock.weather.thermometer.extremelycold": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.cold": "#3e8fb0",
|
"theme.bar.menus.menu.clock.weather.thermometer.cold": "#3e8fb0",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.moderate": "#c4a7e7",
|
"theme.bar.menus.menu.clock.weather.thermometer.moderate": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.hot": "#f6c177",
|
"theme.bar.menus.menu.clock.weather.thermometer.hot": "#f6c177",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#eb6f92",
|
"theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#eb6f92",
|
||||||
"theme.bar.menus.menu.clock.weather.stats": "#c4a7e7",
|
"theme.bar.menus.menu.clock.weather.stats": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.weather.status": "#9ccfd8",
|
"theme.bar.menus.menu.clock.weather.status": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.clock.weather.temperature": "#e0def4",
|
"theme.bar.menus.menu.clock.weather.temperature": "#e0def4",
|
||||||
"theme.bar.menus.menu.clock.weather.icon": "#c4a7e7",
|
"theme.bar.menus.menu.clock.weather.icon": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.calendar.contextdays": "#44415a",
|
"theme.bar.menus.menu.clock.calendar.contextdays": "#44415a",
|
||||||
"theme.bar.menus.menu.clock.calendar.days": "#e0def4",
|
"theme.bar.menus.menu.clock.calendar.days": "#e0def4",
|
||||||
"theme.bar.menus.menu.clock.calendar.currentday": "#c4a7e7",
|
"theme.bar.menus.menu.clock.calendar.currentday": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.calendar.paginator": "#c4a7e7",
|
"theme.bar.menus.menu.clock.calendar.paginator": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.calendar.weekdays": "#c4a7e7",
|
"theme.bar.menus.menu.clock.calendar.weekdays": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.calendar.yearmonth": "#9ccfd8",
|
"theme.bar.menus.menu.clock.calendar.yearmonth": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.clock.time.timeperiod": "#9ccfd8",
|
"theme.bar.menus.menu.clock.time.timeperiod": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.clock.time.time": "#c4a7e7",
|
"theme.bar.menus.menu.clock.time.time": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.text": "#e0def4",
|
"theme.bar.menus.menu.clock.text": "#e0def4",
|
||||||
"theme.bar.menus.menu.clock.border.color": "#2a273f",
|
"theme.bar.menus.menu.clock.border.color": "#2a273f",
|
||||||
"theme.bar.menus.menu.clock.background.color": "#232136",
|
"theme.bar.menus.menu.clock.background.color": "#232136",
|
||||||
"theme.bar.menus.menu.clock.card.color": "#2a283e",
|
"theme.bar.menus.menu.clock.card.color": "#2a283e",
|
||||||
"theme.bar.menus.menu.battery.slider.puck": "#393552",
|
"theme.bar.menus.menu.battery.slider.puck": "#393552",
|
||||||
"theme.bar.menus.menu.battery.slider.backgroundhover": "#393552",
|
"theme.bar.menus.menu.battery.slider.backgroundhover": "#393552",
|
||||||
"theme.bar.menus.menu.battery.slider.background": "#44415a",
|
"theme.bar.menus.menu.battery.slider.background": "#44415a",
|
||||||
"theme.bar.menus.menu.battery.slider.primary": "#f6c177",
|
"theme.bar.menus.menu.battery.slider.primary": "#f6c177",
|
||||||
"theme.bar.menus.menu.battery.icons.active": "#f6c177",
|
"theme.bar.menus.menu.battery.icons.active": "#f6c177",
|
||||||
"theme.bar.menus.menu.battery.icons.passive": "#56526e",
|
"theme.bar.menus.menu.battery.icons.passive": "#56526e",
|
||||||
"theme.bar.menus.menu.battery.listitems.active": "#f6c177",
|
"theme.bar.menus.menu.battery.listitems.active": "#f6c177",
|
||||||
"theme.bar.menus.menu.battery.listitems.passive": "#e0def4",
|
"theme.bar.menus.menu.battery.listitems.passive": "#e0def4",
|
||||||
"theme.bar.menus.menu.battery.text": "#e0def4",
|
"theme.bar.menus.menu.battery.text": "#e0def4",
|
||||||
"theme.bar.menus.menu.battery.label.color": "#f6c177",
|
"theme.bar.menus.menu.battery.label.color": "#f6c177",
|
||||||
"theme.bar.menus.menu.battery.border.color": "#2a273f",
|
"theme.bar.menus.menu.battery.border.color": "#2a273f",
|
||||||
"theme.bar.menus.menu.battery.background.color": "#232136",
|
"theme.bar.menus.menu.battery.background.color": "#232136",
|
||||||
"theme.bar.menus.menu.battery.card.color": "#2a283e",
|
"theme.bar.menus.menu.battery.card.color": "#2a283e",
|
||||||
"theme.bar.menus.menu.systray.dropdownmenu.divider": "#2a283e",
|
"theme.bar.menus.menu.systray.dropdownmenu.divider": "#2a283e",
|
||||||
"theme.bar.menus.menu.systray.dropdownmenu.text": "#e0def4",
|
"theme.bar.menus.menu.systray.dropdownmenu.text": "#e0def4",
|
||||||
"theme.bar.menus.menu.systray.dropdownmenu.background": "#232136",
|
"theme.bar.menus.menu.systray.dropdownmenu.background": "#232136",
|
||||||
"theme.bar.menus.menu.bluetooth.iconbutton.active": "#9ccfd8",
|
"theme.bar.menus.menu.bluetooth.iconbutton.active": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.bluetooth.iconbutton.passive": "#e0def4",
|
"theme.bar.menus.menu.bluetooth.iconbutton.passive": "#e0def4",
|
||||||
"theme.bar.menus.menu.bluetooth.icons.active": "#9ccfd8",
|
"theme.bar.menus.menu.bluetooth.icons.active": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.bluetooth.icons.passive": "#56526e",
|
"theme.bar.menus.menu.bluetooth.icons.passive": "#56526e",
|
||||||
"theme.bar.menus.menu.bluetooth.listitems.active": "#9ccfd8",
|
"theme.bar.menus.menu.bluetooth.listitems.active": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.bluetooth.listitems.passive": "#e0def4",
|
"theme.bar.menus.menu.bluetooth.listitems.passive": "#e0def4",
|
||||||
"theme.bar.menus.menu.bluetooth.switch.puck": "#393552",
|
"theme.bar.menus.menu.bluetooth.switch.puck": "#393552",
|
||||||
"theme.bar.menus.menu.bluetooth.switch.disabled": "#2a273f",
|
"theme.bar.menus.menu.bluetooth.switch.disabled": "#2a273f",
|
||||||
"theme.bar.menus.menu.bluetooth.switch.enabled": "#9ccfd8",
|
"theme.bar.menus.menu.bluetooth.switch.enabled": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.bluetooth.switch_divider": "#393552",
|
"theme.bar.menus.menu.bluetooth.switch_divider": "#393552",
|
||||||
"theme.bar.menus.menu.bluetooth.status": "#393552",
|
"theme.bar.menus.menu.bluetooth.status": "#393552",
|
||||||
"theme.bar.menus.menu.bluetooth.text": "#e0def4",
|
"theme.bar.menus.menu.bluetooth.text": "#e0def4",
|
||||||
"theme.bar.menus.menu.bluetooth.label.color": "#9ccfd8",
|
"theme.bar.menus.menu.bluetooth.label.color": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.bluetooth.border.color": "#2a273f",
|
"theme.bar.menus.menu.bluetooth.border.color": "#2a273f",
|
||||||
"theme.bar.menus.menu.bluetooth.background.color": "#232136",
|
"theme.bar.menus.menu.bluetooth.background.color": "#232136",
|
||||||
"theme.bar.menus.menu.bluetooth.card.color": "#2a283e",
|
"theme.bar.menus.menu.bluetooth.card.color": "#2a283e",
|
||||||
"theme.bar.menus.menu.network.iconbuttons.active": "#c4a7e7",
|
"theme.bar.menus.menu.network.iconbuttons.active": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.network.iconbuttons.passive": "#e0def4",
|
"theme.bar.menus.menu.network.iconbuttons.passive": "#e0def4",
|
||||||
"theme.bar.menus.menu.network.icons.active": "#c4a7e7",
|
"theme.bar.menus.menu.network.icons.active": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.network.icons.passive": "#56526e",
|
"theme.bar.menus.menu.network.icons.passive": "#56526e",
|
||||||
"theme.bar.menus.menu.network.listitems.active": "#c4a7e7",
|
"theme.bar.menus.menu.network.listitems.active": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.network.listitems.passive": "#e0def4",
|
"theme.bar.menus.menu.network.listitems.passive": "#e0def4",
|
||||||
"theme.bar.menus.menu.network.status.color": "#393552",
|
"theme.bar.menus.menu.network.status.color": "#393552",
|
||||||
"theme.bar.menus.menu.network.text": "#e0def4",
|
"theme.bar.menus.menu.network.text": "#e0def4",
|
||||||
"theme.bar.menus.menu.network.label.color": "#c4a7e7",
|
"theme.bar.menus.menu.network.label.color": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.network.border.color": "#2a273f",
|
"theme.bar.menus.menu.network.border.color": "#2a273f",
|
||||||
"theme.bar.menus.menu.network.background.color": "#232136",
|
"theme.bar.menus.menu.network.background.color": "#232136",
|
||||||
"theme.bar.menus.menu.network.card.color": "#2a283e",
|
"theme.bar.menus.menu.network.card.color": "#2a283e",
|
||||||
"theme.bar.menus.menu.volume.input_slider.puck": "#44415a",
|
"theme.bar.menus.menu.volume.input_slider.puck": "#44415a",
|
||||||
"theme.bar.menus.menu.volume.input_slider.backgroundhover": "#393552",
|
"theme.bar.menus.menu.volume.input_slider.backgroundhover": "#393552",
|
||||||
"theme.bar.menus.menu.volume.input_slider.background": "#44415a",
|
"theme.bar.menus.menu.volume.input_slider.background": "#44415a",
|
||||||
"theme.bar.menus.menu.volume.input_slider.primary": "#eb6f92",
|
"theme.bar.menus.menu.volume.input_slider.primary": "#eb6f92",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.puck": "#44415a",
|
"theme.bar.menus.menu.volume.audio_slider.puck": "#44415a",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#393552",
|
"theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#393552",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.background": "#44415a",
|
"theme.bar.menus.menu.volume.audio_slider.background": "#44415a",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.primary": "#eb6f92",
|
"theme.bar.menus.menu.volume.audio_slider.primary": "#eb6f92",
|
||||||
"theme.bar.menus.menu.volume.icons.active": "#eb6f92",
|
"theme.bar.menus.menu.volume.icons.active": "#eb6f92",
|
||||||
"theme.bar.menus.menu.volume.icons.passive": "#56526e",
|
"theme.bar.menus.menu.volume.icons.passive": "#56526e",
|
||||||
"theme.bar.menus.menu.volume.iconbutton.active": "#eb6f92",
|
"theme.bar.menus.menu.volume.iconbutton.active": "#eb6f92",
|
||||||
"theme.bar.menus.menu.volume.iconbutton.passive": "#e0def4",
|
"theme.bar.menus.menu.volume.iconbutton.passive": "#e0def4",
|
||||||
"theme.bar.menus.menu.volume.listitems.active": "#eb6f92",
|
"theme.bar.menus.menu.volume.listitems.active": "#eb6f92",
|
||||||
"theme.bar.menus.menu.volume.listitems.passive": "#e0def4",
|
"theme.bar.menus.menu.volume.listitems.passive": "#e0def4",
|
||||||
"theme.bar.menus.menu.volume.border.color": "#2a273f",
|
"theme.bar.menus.menu.volume.border.color": "#2a273f",
|
||||||
"theme.bar.menus.menu.volume.background.color": "#232136",
|
"theme.bar.menus.menu.volume.background.color": "#232136",
|
||||||
"theme.bar.menus.menu.media.slider.puck": "#393552",
|
"theme.bar.menus.menu.media.slider.puck": "#393552",
|
||||||
"theme.bar.menus.menu.media.slider.backgroundhover": "#393552",
|
"theme.bar.menus.menu.media.slider.backgroundhover": "#393552",
|
||||||
"theme.bar.menus.menu.media.slider.background": "#44415a",
|
"theme.bar.menus.menu.media.slider.background": "#44415a",
|
||||||
"theme.bar.menus.menu.media.slider.primary": "#c4a7e7",
|
"theme.bar.menus.menu.media.slider.primary": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.media.buttons.text": "#232136",
|
"theme.bar.menus.menu.media.buttons.text": "#232136",
|
||||||
"theme.bar.menus.menu.media.buttons.background": "#c4a7e7",
|
"theme.bar.menus.menu.media.buttons.background": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.media.buttons.enabled": "#9ccfd8",
|
"theme.bar.menus.menu.media.buttons.enabled": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.media.buttons.inactive": "#44415a",
|
"theme.bar.menus.menu.media.buttons.inactive": "#44415a",
|
||||||
"theme.bar.menus.menu.media.border.color": "#2a273f",
|
"theme.bar.menus.menu.media.border.color": "#2a273f",
|
||||||
"theme.bar.menus.menu.media.background.color": "#232136",
|
"theme.bar.menus.menu.media.background.color": "#232136",
|
||||||
"theme.bar.menus.menu.media.album": "#c4a7e7",
|
"theme.bar.menus.menu.media.album": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.media.artist": "#9ccfd8",
|
"theme.bar.menus.menu.media.artist": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.media.song": "#c4a7e7",
|
"theme.bar.menus.menu.media.song": "#c4a7e7",
|
||||||
"theme.bar.menus.tooltip.text": "#e0def4",
|
"theme.bar.menus.tooltip.text": "#e0def4",
|
||||||
"theme.bar.menus.tooltip.background": "#232136",
|
"theme.bar.menus.tooltip.background": "#232136",
|
||||||
"theme.bar.menus.dropdownmenu.divider": "#2a283e",
|
"theme.bar.menus.dropdownmenu.divider": "#2a283e",
|
||||||
"theme.bar.menus.dropdownmenu.text": "#e0def4",
|
"theme.bar.menus.dropdownmenu.text": "#e0def4",
|
||||||
"theme.bar.menus.dropdownmenu.background": "#232136",
|
"theme.bar.menus.dropdownmenu.background": "#232136",
|
||||||
"theme.bar.menus.slider.puck": "#393552",
|
"theme.bar.menus.slider.puck": "#393552",
|
||||||
"theme.bar.menus.slider.backgroundhover": "#393552",
|
"theme.bar.menus.slider.backgroundhover": "#393552",
|
||||||
"theme.bar.menus.slider.background": "#44415a",
|
"theme.bar.menus.slider.background": "#44415a",
|
||||||
"theme.bar.menus.slider.primary": "#c4a7e7",
|
"theme.bar.menus.slider.primary": "#c4a7e7",
|
||||||
"theme.bar.menus.progressbar.background": "#393552",
|
"theme.bar.menus.progressbar.background": "#393552",
|
||||||
"theme.bar.menus.progressbar.foreground": "#c4a7e7",
|
"theme.bar.menus.progressbar.foreground": "#c4a7e7",
|
||||||
"theme.bar.menus.iconbuttons.active": "#c4a7e7",
|
"theme.bar.menus.iconbuttons.active": "#c4a7e7",
|
||||||
"theme.bar.menus.iconbuttons.passive": "#e0def4",
|
"theme.bar.menus.iconbuttons.passive": "#e0def4",
|
||||||
"theme.bar.menus.buttons.text": "#2a273f",
|
"theme.bar.menus.buttons.text": "#2a273f",
|
||||||
"theme.bar.menus.buttons.disabled": "#44415a",
|
"theme.bar.menus.buttons.disabled": "#44415a",
|
||||||
"theme.bar.menus.buttons.active": "#c4a7e7",
|
"theme.bar.menus.buttons.active": "#c4a7e7",
|
||||||
"theme.bar.menus.buttons.default": "#c4a7e7",
|
"theme.bar.menus.buttons.default": "#c4a7e7",
|
||||||
"theme.bar.menus.switch.puck": "#393552",
|
"theme.bar.menus.switch.puck": "#393552",
|
||||||
"theme.bar.menus.switch.disabled": "#2a273f",
|
"theme.bar.menus.switch.disabled": "#2a273f",
|
||||||
"theme.bar.menus.switch.enabled": "#c4a7e7",
|
"theme.bar.menus.switch.enabled": "#c4a7e7",
|
||||||
"theme.bar.menus.icons.active": "#c4a7e7",
|
"theme.bar.menus.icons.active": "#c4a7e7",
|
||||||
"theme.bar.menus.icons.passive": "#44415a",
|
"theme.bar.menus.icons.passive": "#44415a",
|
||||||
"theme.bar.menus.listitems.active": "#c4a7e7",
|
"theme.bar.menus.listitems.active": "#c4a7e7",
|
||||||
"theme.bar.menus.listitems.passive": "#e0def4",
|
"theme.bar.menus.listitems.passive": "#e0def4",
|
||||||
"theme.bar.menus.label": "#c4a7e7",
|
"theme.bar.menus.label": "#c4a7e7",
|
||||||
"theme.bar.menus.feinttext": "#2a273f",
|
"theme.bar.menus.feinttext": "#2a273f",
|
||||||
"theme.bar.menus.dimtext": "#44415a",
|
"theme.bar.menus.dimtext": "#44415a",
|
||||||
"theme.bar.menus.cards": "#2a283e",
|
"theme.bar.menus.cards": "#2a283e",
|
||||||
"theme.bar.buttons.notifications.total": "#2a283e",
|
"theme.bar.buttons.notifications.total": "#2a283e",
|
||||||
"theme.bar.buttons.notifications.icon": "#2a283e",
|
"theme.bar.buttons.notifications.icon": "#2a283e",
|
||||||
"theme.bar.buttons.notifications.background": "#c4a7e7",
|
"theme.bar.buttons.notifications.background": "#c4a7e7",
|
||||||
"theme.bar.buttons.clock.icon": "#2a283e",
|
"theme.bar.buttons.clock.icon": "#2a283e",
|
||||||
"theme.bar.buttons.clock.text": "#2a283e",
|
"theme.bar.buttons.clock.text": "#2a283e",
|
||||||
"theme.bar.buttons.clock.background": "#c4a7e7",
|
"theme.bar.buttons.clock.background": "#c4a7e7",
|
||||||
"theme.bar.buttons.battery.icon": "#2a283e",
|
"theme.bar.buttons.battery.icon": "#2a283e",
|
||||||
"theme.bar.buttons.battery.text": "#2a283e",
|
"theme.bar.buttons.battery.text": "#2a283e",
|
||||||
"theme.bar.buttons.battery.background": "#f6c177",
|
"theme.bar.buttons.battery.background": "#f6c177",
|
||||||
"theme.bar.buttons.systray.background": "#2a283e",
|
"theme.bar.buttons.systray.background": "#2a283e",
|
||||||
"theme.bar.buttons.bluetooth.icon": "#2a283e",
|
"theme.bar.buttons.bluetooth.icon": "#2a283e",
|
||||||
"theme.bar.buttons.bluetooth.text": "#2a283e",
|
"theme.bar.buttons.bluetooth.text": "#2a283e",
|
||||||
"theme.bar.buttons.bluetooth.background": "#9ccfd8",
|
"theme.bar.buttons.bluetooth.background": "#9ccfd8",
|
||||||
"theme.bar.buttons.network.icon": "#2a283e",
|
"theme.bar.buttons.network.icon": "#2a283e",
|
||||||
"theme.bar.buttons.network.text": "#2a283e",
|
"theme.bar.buttons.network.text": "#2a283e",
|
||||||
"theme.bar.buttons.network.background": "#c4a7e7",
|
"theme.bar.buttons.network.background": "#c4a7e7",
|
||||||
"theme.bar.buttons.volume.icon": "#2a283e",
|
"theme.bar.buttons.volume.icon": "#2a283e",
|
||||||
"theme.bar.buttons.volume.text": "#2a283e",
|
"theme.bar.buttons.volume.text": "#2a283e",
|
||||||
"theme.bar.buttons.volume.background": "#eb6f92",
|
"theme.bar.buttons.volume.background": "#eb6f92",
|
||||||
"theme.bar.buttons.windowtitle.icon": "#2a283e",
|
"theme.bar.buttons.windowtitle.icon": "#2a283e",
|
||||||
"theme.bar.buttons.windowtitle.text": "#2a283e",
|
"theme.bar.buttons.windowtitle.text": "#2a283e",
|
||||||
"theme.bar.buttons.windowtitle.background": "#c4a7e7",
|
"theme.bar.buttons.windowtitle.background": "#c4a7e7",
|
||||||
"theme.bar.buttons.workspaces.active": "#c4a7e7",
|
"theme.bar.buttons.workspaces.active": "#c4a7e7",
|
||||||
"theme.bar.buttons.workspaces.occupied": "#eb6f92",
|
"theme.bar.buttons.workspaces.occupied": "#eb6f92",
|
||||||
"theme.bar.buttons.workspaces.available": "#9ccfd8",
|
"theme.bar.buttons.workspaces.available": "#9ccfd8",
|
||||||
"theme.bar.buttons.workspaces.hover": "#393552",
|
"theme.bar.buttons.workspaces.hover": "#393552",
|
||||||
"theme.bar.buttons.workspaces.background": "#2a283e",
|
"theme.bar.buttons.workspaces.background": "#2a283e",
|
||||||
"theme.bar.buttons.dashboard.icon": "#2a283e",
|
"theme.bar.buttons.dashboard.icon": "#2a283e",
|
||||||
"theme.bar.buttons.dashboard.background": "#f6c177",
|
"theme.bar.buttons.dashboard.background": "#f6c177",
|
||||||
"theme.osd.label": "#c4a7e7",
|
"theme.osd.label": "#c4a7e7",
|
||||||
"theme.osd.icon": "#232136",
|
"theme.osd.icon": "#232136",
|
||||||
"theme.osd.bar_overflow_color": "#eb6f92",
|
"theme.osd.bar_overflow_color": "#eb6f92",
|
||||||
"theme.osd.bar_empty_color": "#2a273f",
|
"theme.osd.bar_empty_color": "#2a273f",
|
||||||
"theme.osd.bar_color": "#c4a7e7",
|
"theme.osd.bar_color": "#c4a7e7",
|
||||||
"theme.osd.icon_container": "#c4a7e7",
|
"theme.osd.icon_container": "#c4a7e7",
|
||||||
"theme.osd.bar_container": "#232136",
|
"theme.osd.bar_container": "#232136",
|
||||||
"theme.notification.close_button.label": "#232136",
|
"theme.notification.close_button.label": "#232136",
|
||||||
"theme.notification.close_button.background": "#eb6f92",
|
"theme.notification.close_button.background": "#eb6f92",
|
||||||
"theme.notification.labelicon": "#c4a7e7",
|
"theme.notification.labelicon": "#c4a7e7",
|
||||||
"theme.notification.text": "#e0def4",
|
"theme.notification.text": "#e0def4",
|
||||||
"theme.notification.time": "#56526e",
|
"theme.notification.time": "#56526e",
|
||||||
"theme.notification.border": "#2a273f",
|
"theme.notification.border": "#2a273f",
|
||||||
"theme.notification.label": "#c4a7e7",
|
"theme.notification.label": "#c4a7e7",
|
||||||
"theme.notification.actions.text": "#2a273f",
|
"theme.notification.actions.text": "#2a273f",
|
||||||
"theme.notification.actions.background": "#c4a7e7",
|
"theme.notification.actions.background": "#c4a7e7",
|
||||||
"theme.notification.background": "#2a273f",
|
"theme.notification.background": "#2a273f",
|
||||||
"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": "#c678dd",
|
"theme.bar.buttons.workspaces.numbered_active_underline_color": "#c678dd",
|
||||||
"theme.bar.menus.menu.media.card.color": "#2a283e",
|
"theme.bar.menus.menu.media.card.color": "#2a283e",
|
||||||
"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.menus.menu.notifications.pager.button": "#c4a7e7",
|
"theme.bar.menus.menu.notifications.pager.button": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.notifications.scrollbar.color": "#c4a7e7",
|
"theme.bar.menus.menu.notifications.scrollbar.color": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.notifications.pager.label": "#56526e",
|
"theme.bar.menus.menu.notifications.pager.label": "#56526e",
|
||||||
"theme.bar.menus.menu.notifications.pager.background": "#232136",
|
"theme.bar.menus.menu.notifications.pager.background": "#232136",
|
||||||
"theme.bar.buttons.modules.ram.icon": "#2a283e",
|
"theme.bar.buttons.modules.ram.icon": "#2a283e",
|
||||||
"theme.bar.buttons.modules.storage.icon_background": "#2a283e",
|
"theme.bar.buttons.modules.storage.icon_background": "#2a283e",
|
||||||
"theme.bar.buttons.modules.storage.icon": "#2a283e",
|
"theme.bar.buttons.modules.storage.icon": "#2a283e",
|
||||||
"theme.bar.buttons.modules.weather.icon": "#2a283e",
|
"theme.bar.buttons.modules.weather.icon": "#2a283e",
|
||||||
"theme.bar.buttons.modules.power.icon": "#2a283e",
|
"theme.bar.buttons.modules.power.icon": "#2a283e",
|
||||||
"theme.bar.menus.menu.power.border.color": "#2a273f",
|
"theme.bar.menus.menu.power.border.color": "#2a273f",
|
||||||
"theme.bar.buttons.modules.power.icon_background": "#2a283e",
|
"theme.bar.buttons.modules.power.icon_background": "#2a283e",
|
||||||
"theme.bar.buttons.modules.cpu.icon": "#2a283e",
|
"theme.bar.buttons.modules.cpu.icon": "#2a283e",
|
||||||
"theme.bar.buttons.modules.kbLayout.icon_background": "#2a283e",
|
"theme.bar.buttons.modules.kbLayout.icon_background": "#2a283e",
|
||||||
"theme.bar.buttons.modules.weather.text": "#2a283e",
|
"theme.bar.buttons.modules.weather.text": "#2a283e",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.icon": "#2a273f",
|
"theme.bar.menus.menu.power.buttons.shutdown.icon": "#2a273f",
|
||||||
"theme.bar.buttons.modules.weather.icon_background": "#2a283e",
|
"theme.bar.buttons.modules.weather.icon_background": "#2a283e",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.background": "#2a283e",
|
"theme.bar.menus.menu.power.buttons.shutdown.background": "#2a283e",
|
||||||
"theme.bar.buttons.modules.kbLayout.icon": "#2a283e",
|
"theme.bar.buttons.modules.kbLayout.icon": "#2a283e",
|
||||||
"theme.bar.buttons.modules.ram.icon_background": "#2a283e",
|
"theme.bar.buttons.modules.ram.icon_background": "#2a283e",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.icon_background": "#eb6f92",
|
"theme.bar.menus.menu.power.buttons.shutdown.icon_background": "#eb6f92",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.text": "#eb6f92",
|
"theme.bar.menus.menu.power.buttons.shutdown.text": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.updates.icon_background": "#2a283e",
|
"theme.bar.buttons.modules.updates.icon_background": "#2a283e",
|
||||||
"theme.bar.menus.menu.power.background.color": "#232136",
|
"theme.bar.menus.menu.power.background.color": "#232136",
|
||||||
"theme.bar.buttons.modules.netstat.icon": "#2a283e",
|
"theme.bar.buttons.modules.netstat.icon": "#2a283e",
|
||||||
"theme.bar.buttons.modules.cpu.icon_background": "#2a283e",
|
"theme.bar.buttons.modules.cpu.icon_background": "#2a283e",
|
||||||
"theme.bar.buttons.modules.updates.icon": "#2a283e",
|
"theme.bar.buttons.modules.updates.icon": "#2a283e",
|
||||||
"theme.bar.buttons.modules.netstat.icon_background": "#2a283e",
|
"theme.bar.buttons.modules.netstat.icon_background": "#2a283e",
|
||||||
"theme.bar.buttons.clock.icon_background": "#c4a7e7",
|
"theme.bar.buttons.clock.icon_background": "#c4a7e7",
|
||||||
"theme.bar.menus.popover.border": "#2a273f",
|
"theme.bar.menus.popover.border": "#2a273f",
|
||||||
"theme.bar.buttons.volume.icon_background": "#eb6f92",
|
"theme.bar.buttons.volume.icon_background": "#eb6f92",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.icon_background": "#9ccfd8",
|
"theme.bar.menus.menu.power.buttons.sleep.icon_background": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.text": "#f6c177",
|
"theme.bar.menus.menu.power.buttons.restart.text": "#f6c177",
|
||||||
"theme.bar.buttons.modules.updates.background": "#3e8eb0",
|
"theme.bar.buttons.modules.updates.background": "#3e8eb0",
|
||||||
"theme.bar.buttons.modules.netstat.background": "#9ccfd8",
|
"theme.bar.buttons.modules.netstat.background": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.netstat.text": "#2a283e",
|
"theme.bar.buttons.modules.netstat.text": "#2a283e",
|
||||||
"theme.bar.buttons.modules.storage.background": "#c4a7e7",
|
"theme.bar.buttons.modules.storage.background": "#c4a7e7",
|
||||||
"theme.bar.buttons.modules.storage.text": "#2a283e",
|
"theme.bar.buttons.modules.storage.text": "#2a283e",
|
||||||
"theme.bar.buttons.modules.cpu.background": "#eb6f92",
|
"theme.bar.buttons.modules.cpu.background": "#eb6f92",
|
||||||
"theme.bar.buttons.network.icon_background": "#caa6f7",
|
"theme.bar.buttons.network.icon_background": "#caa6f7",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.icon": "#2a273f",
|
"theme.bar.menus.menu.power.buttons.logout.icon": "#2a273f",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.icon_background": "#f6c177",
|
"theme.bar.menus.menu.power.buttons.restart.icon_background": "#f6c177",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.icon": "#2a273f",
|
"theme.bar.menus.menu.power.buttons.restart.icon": "#2a273f",
|
||||||
"theme.bar.buttons.battery.icon_background": "#f6c177",
|
"theme.bar.buttons.battery.icon_background": "#f6c177",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.text": "#9ccfd8",
|
"theme.bar.menus.menu.power.buttons.sleep.text": "#9ccfd8",
|
||||||
"theme.bar.buttons.media.icon_background": "#c4a7e7",
|
"theme.bar.buttons.media.icon_background": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.background": "#2a283e",
|
"theme.bar.menus.menu.power.buttons.logout.background": "#2a283e",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.background": "#2a283e",
|
"theme.bar.menus.menu.power.buttons.sleep.background": "#2a283e",
|
||||||
"theme.bar.buttons.modules.ram.text": "#2a283e",
|
"theme.bar.buttons.modules.ram.text": "#2a283e",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.text": "#9ccfd8",
|
"theme.bar.menus.menu.power.buttons.logout.text": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.kbLayout.background": "#9ccfd8",
|
"theme.bar.buttons.modules.kbLayout.background": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.power.background": "#eb6f92",
|
"theme.bar.buttons.modules.power.background": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.weather.background": "#c4a7e7",
|
"theme.bar.buttons.modules.weather.background": "#c4a7e7",
|
||||||
"theme.bar.buttons.icon_background": "#2a283e",
|
"theme.bar.buttons.icon_background": "#2a283e",
|
||||||
"theme.bar.buttons.modules.ram.background": "#f6c177",
|
"theme.bar.buttons.modules.ram.background": "#f6c177",
|
||||||
"theme.bar.buttons.windowtitle.icon_background": "#c4a7e7",
|
"theme.bar.buttons.windowtitle.icon_background": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.icon_background": "#9ccfd8",
|
"theme.bar.menus.menu.power.buttons.logout.icon_background": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.updates.text": "#2a283e",
|
"theme.bar.buttons.modules.updates.text": "#2a283e",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.icon": "#2a273f",
|
"theme.bar.menus.menu.power.buttons.sleep.icon": "#2a273f",
|
||||||
"theme.bar.buttons.bluetooth.icon_background": "#89dbeb",
|
"theme.bar.buttons.bluetooth.icon_background": "#89dbeb",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.background": "#2a283e",
|
"theme.bar.menus.menu.power.buttons.restart.background": "#2a283e",
|
||||||
"theme.bar.buttons.modules.cpu.text": "#2a283e",
|
"theme.bar.buttons.modules.cpu.text": "#2a283e",
|
||||||
"theme.bar.buttons.modules.kbLayout.text": "#2a283e",
|
"theme.bar.buttons.modules.kbLayout.text": "#2a283e",
|
||||||
"theme.bar.buttons.notifications.icon_background": "#c4a7e7",
|
"theme.bar.buttons.notifications.icon_background": "#c4a7e7",
|
||||||
"theme.bar.buttons.modules.power.border": "#eb6f92",
|
"theme.bar.buttons.modules.power.border": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.weather.border": "#c4a7e7",
|
"theme.bar.buttons.modules.weather.border": "#c4a7e7",
|
||||||
"theme.bar.buttons.modules.updates.border": "#30738f",
|
"theme.bar.buttons.modules.updates.border": "#30738f",
|
||||||
"theme.bar.buttons.modules.kbLayout.border": "#9ccfd8",
|
"theme.bar.buttons.modules.kbLayout.border": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.netstat.border": "#9ccfd8",
|
"theme.bar.buttons.modules.netstat.border": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.storage.border": "#eb6f92",
|
"theme.bar.buttons.modules.storage.border": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.cpu.border": "#eb6f92",
|
"theme.bar.buttons.modules.cpu.border": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.ram.border": "#f6c177",
|
"theme.bar.buttons.modules.ram.border": "#f6c177",
|
||||||
"theme.bar.buttons.notifications.border": "#c4a7e7",
|
"theme.bar.buttons.notifications.border": "#c4a7e7",
|
||||||
"theme.bar.buttons.clock.border": "#c4a7e7",
|
"theme.bar.buttons.clock.border": "#c4a7e7",
|
||||||
"theme.bar.buttons.battery.border": "#f6c177",
|
"theme.bar.buttons.battery.border": "#f6c177",
|
||||||
"theme.bar.buttons.systray.border": "#26233a",
|
"theme.bar.buttons.systray.border": "#26233a",
|
||||||
"theme.bar.buttons.bluetooth.border": "#9ccfd8",
|
"theme.bar.buttons.bluetooth.border": "#9ccfd8",
|
||||||
"theme.bar.buttons.network.border": "#c4a7e7",
|
"theme.bar.buttons.network.border": "#c4a7e7",
|
||||||
"theme.bar.buttons.volume.border": "#eb6f92",
|
"theme.bar.buttons.volume.border": "#eb6f92",
|
||||||
"theme.bar.buttons.media.border": "#c4a7e7",
|
"theme.bar.buttons.media.border": "#c4a7e7",
|
||||||
"theme.bar.buttons.windowtitle.border": "#c4a7e7",
|
"theme.bar.buttons.windowtitle.border": "#c4a7e7",
|
||||||
"theme.bar.buttons.workspaces.border": "#1f1d2e",
|
"theme.bar.buttons.workspaces.border": "#1f1d2e",
|
||||||
"theme.bar.buttons.dashboard.border": "#f6c177",
|
"theme.bar.buttons.dashboard.border": "#f6c177",
|
||||||
"theme.bar.buttons.modules.submap.background": "#9ccfd8",
|
"theme.bar.buttons.modules.submap.background": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.submap.text": "#2a283e",
|
"theme.bar.buttons.modules.submap.text": "#2a283e",
|
||||||
"theme.bar.buttons.modules.submap.border": "#9ccfd8",
|
"theme.bar.buttons.modules.submap.border": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.submap.icon": "#2a283e",
|
"theme.bar.buttons.modules.submap.icon": "#2a283e",
|
||||||
"theme.bar.buttons.modules.submap.icon_background": "#2a283e",
|
"theme.bar.buttons.modules.submap.icon_background": "#2a283e",
|
||||||
"theme.bar.menus.menu.network.switch.puck": "#393552",
|
"theme.bar.menus.menu.network.switch.puck": "#393552",
|
||||||
"theme.bar.menus.menu.network.switch.disabled": "#2a273f",
|
"theme.bar.menus.menu.network.switch.disabled": "#2a273f",
|
||||||
"theme.bar.menus.menu.network.switch.enabled": "#c4a7e7",
|
"theme.bar.menus.menu.network.switch.enabled": "#c4a7e7",
|
||||||
"theme.bar.buttons.systray.customIcon": "#e0def4",
|
"theme.bar.buttons.systray.customIcon": "#e0def4",
|
||||||
"theme.bar.border.color": "#c4a7e7",
|
"theme.bar.border.color": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#e0def4",
|
"theme.bar.menus.menu.media.timestamp": "#e0def4",
|
||||||
"theme.bar.buttons.borderColor": "#c4a7e7",
|
"theme.bar.buttons.borderColor": "#c4a7e7",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon": "#2a283e",
|
"theme.bar.buttons.modules.hyprsunset.icon": "#2a283e",
|
||||||
"theme.bar.buttons.modules.hyprsunset.background": "#eb6f92",
|
"theme.bar.buttons.modules.hyprsunset.background": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#2a283e",
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#2a283e",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#2a283e",
|
"theme.bar.buttons.modules.hyprsunset.text": "#2a283e",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#eb6f92",
|
"theme.bar.buttons.modules.hyprsunset.border": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.hypridle.icon": "#2a283e",
|
"theme.bar.buttons.modules.hypridle.icon": "#2a283e",
|
||||||
"theme.bar.buttons.modules.hypridle.background": "#c4a7e7",
|
"theme.bar.buttons.modules.hypridle.background": "#c4a7e7",
|
||||||
"theme.bar.buttons.modules.hypridle.icon_background": "#2a283e",
|
"theme.bar.buttons.modules.hypridle.icon_background": "#2a283e",
|
||||||
"theme.bar.buttons.modules.hypridle.text": "#2a283e",
|
"theme.bar.buttons.modules.hypridle.text": "#2a283e",
|
||||||
"theme.bar.buttons.modules.hypridle.border": "#eb6f92"
|
"theme.bar.buttons.modules.hypridle.border": "#eb6f92",
|
||||||
|
"theme.bar.menus.menu.network.scroller.color": "#c4a7e7",
|
||||||
|
"theme.bar.menus.menu.bluetooth.scroller.color": "#9ccfd8"
|
||||||
}
|
}
|
||||||
@@ -1,358 +1,360 @@
|
|||||||
{
|
{
|
||||||
"theme.bar.menus.background": "#191724",
|
"theme.bar.menus.background": "#191724",
|
||||||
"theme.bar.background": "#191724",
|
"theme.bar.background": "#191724",
|
||||||
"theme.bar.buttons.media.icon": "#21202e",
|
"theme.bar.buttons.media.icon": "#21202e",
|
||||||
"theme.bar.buttons.media.text": "#c4a7e7",
|
"theme.bar.buttons.media.text": "#c4a7e7",
|
||||||
"theme.bar.buttons.icon": "#242438",
|
"theme.bar.buttons.icon": "#242438",
|
||||||
"theme.bar.buttons.text": "#c4a7e7",
|
"theme.bar.buttons.text": "#c4a7e7",
|
||||||
"theme.bar.buttons.hover": "#26233a",
|
"theme.bar.buttons.hover": "#26233a",
|
||||||
"theme.bar.buttons.background": "#21202e",
|
"theme.bar.buttons.background": "#21202e",
|
||||||
"theme.bar.menus.text": "#e0def4",
|
"theme.bar.menus.text": "#e0def4",
|
||||||
"theme.bar.menus.border.color": "#1f1d2e",
|
"theme.bar.menus.border.color": "#1f1d2e",
|
||||||
"theme.bar.buttons.media.background": "#21202e",
|
"theme.bar.buttons.media.background": "#21202e",
|
||||||
"theme.bar.menus.menu.volume.text": "#e0def4",
|
"theme.bar.menus.menu.volume.text": "#e0def4",
|
||||||
"theme.bar.menus.menu.volume.card.color": "#21202e",
|
"theme.bar.menus.menu.volume.card.color": "#21202e",
|
||||||
"theme.bar.menus.menu.volume.label.color": "#eb6f92",
|
"theme.bar.menus.menu.volume.label.color": "#eb6f92",
|
||||||
"theme.bar.menus.popover.text": "#c4a7e7",
|
"theme.bar.menus.popover.text": "#c4a7e7",
|
||||||
"theme.bar.menus.popover.background": "#1f1d2e",
|
"theme.bar.menus.popover.background": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.shutdown": "#eb6f92",
|
"theme.bar.menus.menu.dashboard.powermenu.shutdown": "#eb6f92",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#eb6f92",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#eb6f92",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.confirm": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.confirm": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#191724",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#191724",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.body": "#e0def4",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.body": "#e0def4",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.border": "#1f1d2e",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.border": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#191724",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#191724",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#21202e",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#21202e",
|
||||||
"theme.bar.menus.menu.notifications.switch.puck": "#26233a",
|
"theme.bar.menus.menu.notifications.switch.puck": "#26233a",
|
||||||
"theme.bar.menus.menu.notifications.switch.disabled": "#1f1d2e",
|
"theme.bar.menus.menu.notifications.switch.disabled": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.notifications.switch.enabled": "#c4a7e7",
|
"theme.bar.menus.menu.notifications.switch.enabled": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.notifications.clear": "#eb6f92",
|
"theme.bar.menus.menu.notifications.clear": "#eb6f92",
|
||||||
"theme.bar.menus.menu.notifications.switch_divider": "#26233a",
|
"theme.bar.menus.menu.notifications.switch_divider": "#26233a",
|
||||||
"theme.bar.menus.menu.notifications.border": "#1f1d2e",
|
"theme.bar.menus.menu.notifications.border": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.notifications.card": "#21202e",
|
"theme.bar.menus.menu.notifications.card": "#21202e",
|
||||||
"theme.bar.menus.menu.notifications.background": "#191724",
|
"theme.bar.menus.menu.notifications.background": "#191724",
|
||||||
"theme.bar.menus.menu.notifications.no_notifications_label": "#1f1d2e",
|
"theme.bar.menus.menu.notifications.no_notifications_label": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.notifications.label": "#c4a7e7",
|
"theme.bar.menus.menu.notifications.label": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.disk.label": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.monitors.disk.label": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.disk.bar": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.monitors.disk.bar": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.disk.icon": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.monitors.disk.icon": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.gpu.label": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.monitors.gpu.label": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.gpu.icon": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.monitors.gpu.icon": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.ram.label": "#f6c177",
|
"theme.bar.menus.menu.dashboard.monitors.ram.label": "#f6c177",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.ram.bar": "#f6c177",
|
"theme.bar.menus.menu.dashboard.monitors.ram.bar": "#f6c177",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.ram.icon": "#f6c177",
|
"theme.bar.menus.menu.dashboard.monitors.ram.icon": "#f6c177",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.cpu.label": "#eb6f92",
|
"theme.bar.menus.menu.dashboard.monitors.cpu.label": "#eb6f92",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#eb6f92",
|
"theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#eb6f92",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#eb6f92",
|
"theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#eb6f92",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.bar_background": "#26233a",
|
"theme.bar.menus.menu.dashboard.monitors.bar_background": "#26233a",
|
||||||
"theme.bar.menus.menu.dashboard.directories.right.bottom.color": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.directories.right.bottom.color": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.directories.right.middle.color": "#30738f",
|
"theme.bar.menus.menu.dashboard.directories.right.middle.color": "#30738f",
|
||||||
"theme.bar.menus.menu.dashboard.directories.right.top.color": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.directories.right.top.color": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#eb6f92",
|
"theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#eb6f92",
|
||||||
"theme.bar.menus.menu.dashboard.directories.left.middle.color": "#f6c177",
|
"theme.bar.menus.menu.dashboard.directories.left.middle.color": "#f6c177",
|
||||||
"theme.bar.menus.menu.dashboard.directories.left.top.color": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.directories.left.top.color": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.controls.input.text": "#1f1d2e",
|
"theme.bar.menus.menu.dashboard.controls.input.text": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.dashboard.controls.input.background": "#30738f",
|
"theme.bar.menus.menu.dashboard.controls.input.background": "#30738f",
|
||||||
"theme.bar.menus.menu.dashboard.controls.volume.text": "#1f1d2e",
|
"theme.bar.menus.menu.dashboard.controls.volume.text": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.dashboard.controls.volume.background": "#eb6f92",
|
"theme.bar.menus.menu.dashboard.controls.volume.background": "#eb6f92",
|
||||||
"theme.bar.menus.menu.dashboard.controls.notifications.text": "#1f1d2e",
|
"theme.bar.menus.menu.dashboard.controls.notifications.text": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.dashboard.controls.notifications.background": "#f6c177",
|
"theme.bar.menus.menu.dashboard.controls.notifications.background": "#f6c177",
|
||||||
"theme.bar.menus.menu.dashboard.controls.bluetooth.text": "#1f1d2e",
|
"theme.bar.menus.menu.dashboard.controls.bluetooth.text": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.controls.wifi.text": "#1f1d2e",
|
"theme.bar.menus.menu.dashboard.controls.wifi.text": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.dashboard.controls.wifi.background": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.controls.wifi.background": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.controls.disabled": "#403d52",
|
"theme.bar.menus.menu.dashboard.controls.disabled": "#403d52",
|
||||||
"theme.bar.menus.menu.dashboard.shortcuts.recording": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.shortcuts.recording": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.shortcuts.text": "#1f1d2e",
|
"theme.bar.menus.menu.dashboard.shortcuts.text": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.dashboard.shortcuts.background": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.shortcuts.background": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.sleep": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.powermenu.sleep": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.logout": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.powermenu.logout": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.restart": "#f6c177",
|
"theme.bar.menus.menu.dashboard.powermenu.restart": "#f6c177",
|
||||||
"theme.bar.menus.menu.dashboard.profile.name": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.profile.name": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.border.color": "#1f1d2e",
|
"theme.bar.menus.menu.dashboard.border.color": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.dashboard.background.color": "#191724",
|
"theme.bar.menus.menu.dashboard.background.color": "#191724",
|
||||||
"theme.bar.menus.menu.dashboard.card.color": "#21202e",
|
"theme.bar.menus.menu.dashboard.card.color": "#21202e",
|
||||||
"theme.bar.menus.menu.clock.weather.hourly.temperature": "#c4a7e7",
|
"theme.bar.menus.menu.clock.weather.hourly.temperature": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.weather.hourly.icon": "#c4a7e7",
|
"theme.bar.menus.menu.clock.weather.hourly.icon": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.weather.hourly.time": "#c4a7e7",
|
"theme.bar.menus.menu.clock.weather.hourly.time": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.extremelycold": "#9ccfd8",
|
"theme.bar.menus.menu.clock.weather.thermometer.extremelycold": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.cold": "#31748f",
|
"theme.bar.menus.menu.clock.weather.thermometer.cold": "#31748f",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.moderate": "#c4a7e7",
|
"theme.bar.menus.menu.clock.weather.thermometer.moderate": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.hot": "#f6c177",
|
"theme.bar.menus.menu.clock.weather.thermometer.hot": "#f6c177",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#eb6f92",
|
"theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#eb6f92",
|
||||||
"theme.bar.menus.menu.clock.weather.stats": "#c4a7e7",
|
"theme.bar.menus.menu.clock.weather.stats": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.weather.status": "#9ccfd8",
|
"theme.bar.menus.menu.clock.weather.status": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.clock.weather.temperature": "#e0def4",
|
"theme.bar.menus.menu.clock.weather.temperature": "#e0def4",
|
||||||
"theme.bar.menus.menu.clock.weather.icon": "#c4a7e7",
|
"theme.bar.menus.menu.clock.weather.icon": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.calendar.contextdays": "#403d52",
|
"theme.bar.menus.menu.clock.calendar.contextdays": "#403d52",
|
||||||
"theme.bar.menus.menu.clock.calendar.days": "#e0def4",
|
"theme.bar.menus.menu.clock.calendar.days": "#e0def4",
|
||||||
"theme.bar.menus.menu.clock.calendar.currentday": "#c4a7e7",
|
"theme.bar.menus.menu.clock.calendar.currentday": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.calendar.paginator": "#c4a7e7",
|
"theme.bar.menus.menu.clock.calendar.paginator": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.calendar.weekdays": "#c4a7e7",
|
"theme.bar.menus.menu.clock.calendar.weekdays": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.calendar.yearmonth": "#9ccfd8",
|
"theme.bar.menus.menu.clock.calendar.yearmonth": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.clock.time.timeperiod": "#9ccfd8",
|
"theme.bar.menus.menu.clock.time.timeperiod": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.clock.time.time": "#c4a7e7",
|
"theme.bar.menus.menu.clock.time.time": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.text": "#e0def4",
|
"theme.bar.menus.menu.clock.text": "#e0def4",
|
||||||
"theme.bar.menus.menu.clock.border.color": "#1f1d2e",
|
"theme.bar.menus.menu.clock.border.color": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.clock.background.color": "#191724",
|
"theme.bar.menus.menu.clock.background.color": "#191724",
|
||||||
"theme.bar.menus.menu.clock.card.color": "#21202e",
|
"theme.bar.menus.menu.clock.card.color": "#21202e",
|
||||||
"theme.bar.menus.menu.battery.slider.puck": "#26233a",
|
"theme.bar.menus.menu.battery.slider.puck": "#26233a",
|
||||||
"theme.bar.menus.menu.battery.slider.backgroundhover": "#26233a",
|
"theme.bar.menus.menu.battery.slider.backgroundhover": "#26233a",
|
||||||
"theme.bar.menus.menu.battery.slider.background": "#403d52",
|
"theme.bar.menus.menu.battery.slider.background": "#403d52",
|
||||||
"theme.bar.menus.menu.battery.slider.primary": "#f6c177",
|
"theme.bar.menus.menu.battery.slider.primary": "#f6c177",
|
||||||
"theme.bar.menus.menu.battery.icons.active": "#f6c177",
|
"theme.bar.menus.menu.battery.icons.active": "#f6c177",
|
||||||
"theme.bar.menus.menu.battery.icons.passive": "#524f67",
|
"theme.bar.menus.menu.battery.icons.passive": "#524f67",
|
||||||
"theme.bar.menus.menu.battery.listitems.active": "#f6c177",
|
"theme.bar.menus.menu.battery.listitems.active": "#f6c177",
|
||||||
"theme.bar.menus.menu.battery.listitems.passive": "#e0def4",
|
"theme.bar.menus.menu.battery.listitems.passive": "#e0def4",
|
||||||
"theme.bar.menus.menu.battery.text": "#e0def4",
|
"theme.bar.menus.menu.battery.text": "#e0def4",
|
||||||
"theme.bar.menus.menu.battery.label.color": "#f6c177",
|
"theme.bar.menus.menu.battery.label.color": "#f6c177",
|
||||||
"theme.bar.menus.menu.battery.border.color": "#1f1d2e",
|
"theme.bar.menus.menu.battery.border.color": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.battery.background.color": "#191724",
|
"theme.bar.menus.menu.battery.background.color": "#191724",
|
||||||
"theme.bar.menus.menu.battery.card.color": "#21202e",
|
"theme.bar.menus.menu.battery.card.color": "#21202e",
|
||||||
"theme.bar.menus.menu.systray.dropdownmenu.divider": "#21202e",
|
"theme.bar.menus.menu.systray.dropdownmenu.divider": "#21202e",
|
||||||
"theme.bar.menus.menu.systray.dropdownmenu.text": "#e0def4",
|
"theme.bar.menus.menu.systray.dropdownmenu.text": "#e0def4",
|
||||||
"theme.bar.menus.menu.systray.dropdownmenu.background": "#191724",
|
"theme.bar.menus.menu.systray.dropdownmenu.background": "#191724",
|
||||||
"theme.bar.menus.menu.bluetooth.iconbutton.active": "#9ccfd8",
|
"theme.bar.menus.menu.bluetooth.iconbutton.active": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.bluetooth.iconbutton.passive": "#e0def4",
|
"theme.bar.menus.menu.bluetooth.iconbutton.passive": "#e0def4",
|
||||||
"theme.bar.menus.menu.bluetooth.icons.active": "#9ccfd8",
|
"theme.bar.menus.menu.bluetooth.icons.active": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.bluetooth.icons.passive": "#524f67",
|
"theme.bar.menus.menu.bluetooth.icons.passive": "#524f67",
|
||||||
"theme.bar.menus.menu.bluetooth.listitems.active": "#9ccfd8",
|
"theme.bar.menus.menu.bluetooth.listitems.active": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.bluetooth.listitems.passive": "#e0def4",
|
"theme.bar.menus.menu.bluetooth.listitems.passive": "#e0def4",
|
||||||
"theme.bar.menus.menu.bluetooth.switch.puck": "#26233a",
|
"theme.bar.menus.menu.bluetooth.switch.puck": "#26233a",
|
||||||
"theme.bar.menus.menu.bluetooth.switch.disabled": "#1f1d2e",
|
"theme.bar.menus.menu.bluetooth.switch.disabled": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.bluetooth.switch.enabled": "#9ccfd8",
|
"theme.bar.menus.menu.bluetooth.switch.enabled": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.bluetooth.switch_divider": "#26233a",
|
"theme.bar.menus.menu.bluetooth.switch_divider": "#26233a",
|
||||||
"theme.bar.menus.menu.bluetooth.status": "#26233a",
|
"theme.bar.menus.menu.bluetooth.status": "#26233a",
|
||||||
"theme.bar.menus.menu.bluetooth.text": "#e0def4",
|
"theme.bar.menus.menu.bluetooth.text": "#e0def4",
|
||||||
"theme.bar.menus.menu.bluetooth.label.color": "#9ccfd8",
|
"theme.bar.menus.menu.bluetooth.label.color": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.bluetooth.border.color": "#1f1d2e",
|
"theme.bar.menus.menu.bluetooth.border.color": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.bluetooth.background.color": "#191724",
|
"theme.bar.menus.menu.bluetooth.background.color": "#191724",
|
||||||
"theme.bar.menus.menu.bluetooth.card.color": "#21202e",
|
"theme.bar.menus.menu.bluetooth.card.color": "#21202e",
|
||||||
"theme.bar.menus.menu.network.iconbuttons.active": "#c4a7e7",
|
"theme.bar.menus.menu.network.iconbuttons.active": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.network.iconbuttons.passive": "#e0def4",
|
"theme.bar.menus.menu.network.iconbuttons.passive": "#e0def4",
|
||||||
"theme.bar.menus.menu.network.icons.active": "#c4a7e7",
|
"theme.bar.menus.menu.network.icons.active": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.network.icons.passive": "#524f67",
|
"theme.bar.menus.menu.network.icons.passive": "#524f67",
|
||||||
"theme.bar.menus.menu.network.listitems.active": "#c4a7e7",
|
"theme.bar.menus.menu.network.listitems.active": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.network.listitems.passive": "#e0def4",
|
"theme.bar.menus.menu.network.listitems.passive": "#e0def4",
|
||||||
"theme.bar.menus.menu.network.status.color": "#26233a",
|
"theme.bar.menus.menu.network.status.color": "#26233a",
|
||||||
"theme.bar.menus.menu.network.text": "#e0def4",
|
"theme.bar.menus.menu.network.text": "#e0def4",
|
||||||
"theme.bar.menus.menu.network.label.color": "#c4a7e7",
|
"theme.bar.menus.menu.network.label.color": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.network.border.color": "#1f1d2e",
|
"theme.bar.menus.menu.network.border.color": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.network.background.color": "#191724",
|
"theme.bar.menus.menu.network.background.color": "#191724",
|
||||||
"theme.bar.menus.menu.network.card.color": "#21202e",
|
"theme.bar.menus.menu.network.card.color": "#21202e",
|
||||||
"theme.bar.menus.menu.volume.input_slider.puck": "#403d52",
|
"theme.bar.menus.menu.volume.input_slider.puck": "#403d52",
|
||||||
"theme.bar.menus.menu.volume.input_slider.backgroundhover": "#26233a",
|
"theme.bar.menus.menu.volume.input_slider.backgroundhover": "#26233a",
|
||||||
"theme.bar.menus.menu.volume.input_slider.background": "#403d52",
|
"theme.bar.menus.menu.volume.input_slider.background": "#403d52",
|
||||||
"theme.bar.menus.menu.volume.input_slider.primary": "#eb6f92",
|
"theme.bar.menus.menu.volume.input_slider.primary": "#eb6f92",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.puck": "#403d52",
|
"theme.bar.menus.menu.volume.audio_slider.puck": "#403d52",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#26233a",
|
"theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#26233a",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.background": "#403d52",
|
"theme.bar.menus.menu.volume.audio_slider.background": "#403d52",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.primary": "#eb6f92",
|
"theme.bar.menus.menu.volume.audio_slider.primary": "#eb6f92",
|
||||||
"theme.bar.menus.menu.volume.icons.active": "#eb6f92",
|
"theme.bar.menus.menu.volume.icons.active": "#eb6f92",
|
||||||
"theme.bar.menus.menu.volume.icons.passive": "#524f67",
|
"theme.bar.menus.menu.volume.icons.passive": "#524f67",
|
||||||
"theme.bar.menus.menu.volume.iconbutton.active": "#eb6f92",
|
"theme.bar.menus.menu.volume.iconbutton.active": "#eb6f92",
|
||||||
"theme.bar.menus.menu.volume.iconbutton.passive": "#e0def4",
|
"theme.bar.menus.menu.volume.iconbutton.passive": "#e0def4",
|
||||||
"theme.bar.menus.menu.volume.listitems.active": "#eb6f92",
|
"theme.bar.menus.menu.volume.listitems.active": "#eb6f92",
|
||||||
"theme.bar.menus.menu.volume.listitems.passive": "#e0def4",
|
"theme.bar.menus.menu.volume.listitems.passive": "#e0def4",
|
||||||
"theme.bar.menus.menu.volume.border.color": "#1f1d2e",
|
"theme.bar.menus.menu.volume.border.color": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.volume.background.color": "#191724",
|
"theme.bar.menus.menu.volume.background.color": "#191724",
|
||||||
"theme.bar.menus.menu.media.slider.puck": "#26233a",
|
"theme.bar.menus.menu.media.slider.puck": "#26233a",
|
||||||
"theme.bar.menus.menu.media.slider.backgroundhover": "#26233a",
|
"theme.bar.menus.menu.media.slider.backgroundhover": "#26233a",
|
||||||
"theme.bar.menus.menu.media.slider.background": "#403d52",
|
"theme.bar.menus.menu.media.slider.background": "#403d52",
|
||||||
"theme.bar.menus.menu.media.slider.primary": "#c4a7e7",
|
"theme.bar.menus.menu.media.slider.primary": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.media.buttons.text": "#191724",
|
"theme.bar.menus.menu.media.buttons.text": "#191724",
|
||||||
"theme.bar.menus.menu.media.buttons.background": "#c4a7e7",
|
"theme.bar.menus.menu.media.buttons.background": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.media.buttons.enabled": "#9ccfd8",
|
"theme.bar.menus.menu.media.buttons.enabled": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.media.buttons.inactive": "#403d52",
|
"theme.bar.menus.menu.media.buttons.inactive": "#403d52",
|
||||||
"theme.bar.menus.menu.media.border.color": "#1f1d2e",
|
"theme.bar.menus.menu.media.border.color": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.media.background.color": "#191724",
|
"theme.bar.menus.menu.media.background.color": "#191724",
|
||||||
"theme.bar.menus.menu.media.album": "#c4a7e7",
|
"theme.bar.menus.menu.media.album": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.media.artist": "#9ccfd8",
|
"theme.bar.menus.menu.media.artist": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.media.song": "#c4a7e7",
|
"theme.bar.menus.menu.media.song": "#c4a7e7",
|
||||||
"theme.bar.menus.tooltip.text": "#e0def4",
|
"theme.bar.menus.tooltip.text": "#e0def4",
|
||||||
"theme.bar.menus.tooltip.background": "#191724",
|
"theme.bar.menus.tooltip.background": "#191724",
|
||||||
"theme.bar.menus.dropdownmenu.divider": "#21202e",
|
"theme.bar.menus.dropdownmenu.divider": "#21202e",
|
||||||
"theme.bar.menus.dropdownmenu.text": "#e0def4",
|
"theme.bar.menus.dropdownmenu.text": "#e0def4",
|
||||||
"theme.bar.menus.dropdownmenu.background": "#191724",
|
"theme.bar.menus.dropdownmenu.background": "#191724",
|
||||||
"theme.bar.menus.slider.puck": "#26233a",
|
"theme.bar.menus.slider.puck": "#26233a",
|
||||||
"theme.bar.menus.slider.backgroundhover": "#26233a",
|
"theme.bar.menus.slider.backgroundhover": "#26233a",
|
||||||
"theme.bar.menus.slider.background": "#403d52",
|
"theme.bar.menus.slider.background": "#403d52",
|
||||||
"theme.bar.menus.slider.primary": "#c4a7e7",
|
"theme.bar.menus.slider.primary": "#c4a7e7",
|
||||||
"theme.bar.menus.progressbar.background": "#26233a",
|
"theme.bar.menus.progressbar.background": "#26233a",
|
||||||
"theme.bar.menus.progressbar.foreground": "#c4a7e7",
|
"theme.bar.menus.progressbar.foreground": "#c4a7e7",
|
||||||
"theme.bar.menus.iconbuttons.active": "#c4a7e7",
|
"theme.bar.menus.iconbuttons.active": "#c4a7e7",
|
||||||
"theme.bar.menus.iconbuttons.passive": "#e0def4",
|
"theme.bar.menus.iconbuttons.passive": "#e0def4",
|
||||||
"theme.bar.menus.buttons.text": "#1f1d2e",
|
"theme.bar.menus.buttons.text": "#1f1d2e",
|
||||||
"theme.bar.menus.buttons.disabled": "#403d52",
|
"theme.bar.menus.buttons.disabled": "#403d52",
|
||||||
"theme.bar.menus.buttons.active": "#c4a7e7",
|
"theme.bar.menus.buttons.active": "#c4a7e7",
|
||||||
"theme.bar.menus.buttons.default": "#c4a7e7",
|
"theme.bar.menus.buttons.default": "#c4a7e7",
|
||||||
"theme.bar.menus.switch.puck": "#26233a",
|
"theme.bar.menus.switch.puck": "#26233a",
|
||||||
"theme.bar.menus.switch.disabled": "#1f1d2e",
|
"theme.bar.menus.switch.disabled": "#1f1d2e",
|
||||||
"theme.bar.menus.switch.enabled": "#c4a7e7",
|
"theme.bar.menus.switch.enabled": "#c4a7e7",
|
||||||
"theme.bar.menus.icons.active": "#c4a7e7",
|
"theme.bar.menus.icons.active": "#c4a7e7",
|
||||||
"theme.bar.menus.icons.passive": "#403d52",
|
"theme.bar.menus.icons.passive": "#403d52",
|
||||||
"theme.bar.menus.listitems.active": "#c4a7e7",
|
"theme.bar.menus.listitems.active": "#c4a7e7",
|
||||||
"theme.bar.menus.listitems.passive": "#e0def4",
|
"theme.bar.menus.listitems.passive": "#e0def4",
|
||||||
"theme.bar.menus.label": "#c4a7e7",
|
"theme.bar.menus.label": "#c4a7e7",
|
||||||
"theme.bar.menus.feinttext": "#1f1d2e",
|
"theme.bar.menus.feinttext": "#1f1d2e",
|
||||||
"theme.bar.menus.dimtext": "#403d52",
|
"theme.bar.menus.dimtext": "#403d52",
|
||||||
"theme.bar.menus.cards": "#21202e",
|
"theme.bar.menus.cards": "#21202e",
|
||||||
"theme.bar.buttons.notifications.total": "#c4a7e7",
|
"theme.bar.buttons.notifications.total": "#c4a7e7",
|
||||||
"theme.bar.buttons.notifications.icon": "#21202e",
|
"theme.bar.buttons.notifications.icon": "#21202e",
|
||||||
"theme.bar.buttons.notifications.background": "#21202e",
|
"theme.bar.buttons.notifications.background": "#21202e",
|
||||||
"theme.bar.buttons.clock.icon": "#21202e",
|
"theme.bar.buttons.clock.icon": "#21202e",
|
||||||
"theme.bar.buttons.clock.text": "#c4a7e7",
|
"theme.bar.buttons.clock.text": "#c4a7e7",
|
||||||
"theme.bar.buttons.clock.background": "#21202e",
|
"theme.bar.buttons.clock.background": "#21202e",
|
||||||
"theme.bar.buttons.battery.icon": "#21202e",
|
"theme.bar.buttons.battery.icon": "#21202e",
|
||||||
"theme.bar.buttons.battery.text": "#f6c177",
|
"theme.bar.buttons.battery.text": "#f6c177",
|
||||||
"theme.bar.buttons.battery.background": "#21202e",
|
"theme.bar.buttons.battery.background": "#21202e",
|
||||||
"theme.bar.buttons.systray.background": "#21202e",
|
"theme.bar.buttons.systray.background": "#21202e",
|
||||||
"theme.bar.buttons.bluetooth.icon": "#26233a",
|
"theme.bar.buttons.bluetooth.icon": "#26233a",
|
||||||
"theme.bar.buttons.bluetooth.text": "#9ccfd8",
|
"theme.bar.buttons.bluetooth.text": "#9ccfd8",
|
||||||
"theme.bar.buttons.bluetooth.background": "#21202e",
|
"theme.bar.buttons.bluetooth.background": "#21202e",
|
||||||
"theme.bar.buttons.network.icon": "#21202e",
|
"theme.bar.buttons.network.icon": "#21202e",
|
||||||
"theme.bar.buttons.network.text": "#c4a7e7",
|
"theme.bar.buttons.network.text": "#c4a7e7",
|
||||||
"theme.bar.buttons.network.background": "#21202e",
|
"theme.bar.buttons.network.background": "#21202e",
|
||||||
"theme.bar.buttons.volume.icon": "#21202e",
|
"theme.bar.buttons.volume.icon": "#21202e",
|
||||||
"theme.bar.buttons.volume.text": "#eb6f92",
|
"theme.bar.buttons.volume.text": "#eb6f92",
|
||||||
"theme.bar.buttons.volume.background": "#21202e",
|
"theme.bar.buttons.volume.background": "#21202e",
|
||||||
"theme.bar.buttons.windowtitle.icon": "#21202e",
|
"theme.bar.buttons.windowtitle.icon": "#21202e",
|
||||||
"theme.bar.buttons.windowtitle.text": "#c4a7e7",
|
"theme.bar.buttons.windowtitle.text": "#c4a7e7",
|
||||||
"theme.bar.buttons.windowtitle.background": "#21202e",
|
"theme.bar.buttons.windowtitle.background": "#21202e",
|
||||||
"theme.bar.buttons.workspaces.active": "#c4a7e7",
|
"theme.bar.buttons.workspaces.active": "#c4a7e7",
|
||||||
"theme.bar.buttons.workspaces.occupied": "#eb6f92",
|
"theme.bar.buttons.workspaces.occupied": "#eb6f92",
|
||||||
"theme.bar.buttons.workspaces.available": "#9ccfd8",
|
"theme.bar.buttons.workspaces.available": "#9ccfd8",
|
||||||
"theme.bar.buttons.workspaces.hover": "#c4a7e7",
|
"theme.bar.buttons.workspaces.hover": "#c4a7e7",
|
||||||
"theme.bar.buttons.workspaces.background": "#21202e",
|
"theme.bar.buttons.workspaces.background": "#21202e",
|
||||||
"theme.bar.buttons.dashboard.icon": "#21202e",
|
"theme.bar.buttons.dashboard.icon": "#21202e",
|
||||||
"theme.bar.buttons.dashboard.background": "#f6c177",
|
"theme.bar.buttons.dashboard.background": "#f6c177",
|
||||||
"theme.osd.label": "#c4a7e7",
|
"theme.osd.label": "#c4a7e7",
|
||||||
"theme.osd.icon": "#191724",
|
"theme.osd.icon": "#191724",
|
||||||
"theme.osd.bar_overflow_color": "#eb6f92",
|
"theme.osd.bar_overflow_color": "#eb6f92",
|
||||||
"theme.osd.bar_empty_color": "#1f1d2e",
|
"theme.osd.bar_empty_color": "#1f1d2e",
|
||||||
"theme.osd.bar_color": "#c4a7e7",
|
"theme.osd.bar_color": "#c4a7e7",
|
||||||
"theme.osd.icon_container": "#c4a7e7",
|
"theme.osd.icon_container": "#c4a7e7",
|
||||||
"theme.osd.bar_container": "#191724",
|
"theme.osd.bar_container": "#191724",
|
||||||
"theme.notification.close_button.label": "#191724",
|
"theme.notification.close_button.label": "#191724",
|
||||||
"theme.notification.close_button.background": "#eb6f92",
|
"theme.notification.close_button.background": "#eb6f92",
|
||||||
"theme.notification.labelicon": "#c4a7e7",
|
"theme.notification.labelicon": "#c4a7e7",
|
||||||
"theme.notification.text": "#e0def4",
|
"theme.notification.text": "#e0def4",
|
||||||
"theme.notification.time": "#403d52",
|
"theme.notification.time": "#403d52",
|
||||||
"theme.notification.border": "#1f1d2e",
|
"theme.notification.border": "#1f1d2e",
|
||||||
"theme.notification.label": "#c4a7e7",
|
"theme.notification.label": "#c4a7e7",
|
||||||
"theme.notification.actions.text": "#1f1d2e",
|
"theme.notification.actions.text": "#1f1d2e",
|
||||||
"theme.notification.actions.background": "#c4a7e7",
|
"theme.notification.actions.background": "#c4a7e7",
|
||||||
"theme.notification.background": "#1f1d2e",
|
"theme.notification.background": "#1f1d2e",
|
||||||
"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": "#c678dd",
|
"theme.bar.buttons.workspaces.numbered_active_underline_color": "#c678dd",
|
||||||
"theme.bar.menus.menu.media.card.color": "#21202e",
|
"theme.bar.menus.menu.media.card.color": "#21202e",
|
||||||
"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": "split",
|
"theme.bar.buttons.style": "split",
|
||||||
"theme.bar.buttons.icon_background": "#c4a7e7",
|
"theme.bar.buttons.icon_background": "#c4a7e7",
|
||||||
"theme.bar.buttons.volume.icon_background": "#eb6f92",
|
"theme.bar.buttons.volume.icon_background": "#eb6f92",
|
||||||
"theme.bar.buttons.network.icon_background": "#c4a7e7",
|
"theme.bar.buttons.network.icon_background": "#c4a7e7",
|
||||||
"theme.bar.buttons.bluetooth.icon_background": "#9ccfd8",
|
"theme.bar.buttons.bluetooth.icon_background": "#9ccfd8",
|
||||||
"theme.bar.buttons.windowtitle.icon_background": "#c4a7e7",
|
"theme.bar.buttons.windowtitle.icon_background": "#c4a7e7",
|
||||||
"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.pager.button": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.notifications.scrollbar.color": "#c4a7e7",
|
"theme.bar.menus.menu.notifications.scrollbar.color": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.notifications.pager.label": "#524f67",
|
"theme.bar.menus.menu.notifications.pager.label": "#524f67",
|
||||||
"theme.bar.menus.menu.notifications.pager.background": "#191724",
|
"theme.bar.menus.menu.notifications.pager.background": "#191724",
|
||||||
"theme.bar.buttons.modules.ram.icon": "#181825",
|
"theme.bar.buttons.modules.ram.icon": "#181825",
|
||||||
"theme.bar.buttons.modules.storage.icon_background": "#eb6f92",
|
"theme.bar.buttons.modules.storage.icon_background": "#eb6f92",
|
||||||
"theme.bar.menus.popover.border": "#1f1d2e",
|
"theme.bar.menus.popover.border": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.icon_background": "#9ccfd8",
|
"theme.bar.menus.menu.power.buttons.sleep.icon_background": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.text": "#f6c177",
|
"theme.bar.menus.menu.power.buttons.restart.text": "#f6c177",
|
||||||
"theme.bar.buttons.modules.updates.background": "#21202e",
|
"theme.bar.buttons.modules.updates.background": "#21202e",
|
||||||
"theme.bar.buttons.modules.storage.icon": "#181825",
|
"theme.bar.buttons.modules.storage.icon": "#181825",
|
||||||
"theme.bar.buttons.modules.netstat.background": "#21202e",
|
"theme.bar.buttons.modules.netstat.background": "#21202e",
|
||||||
"theme.bar.buttons.modules.weather.icon": "#21202e",
|
"theme.bar.buttons.modules.weather.icon": "#21202e",
|
||||||
"theme.bar.buttons.modules.netstat.text": "#9ccfd8",
|
"theme.bar.buttons.modules.netstat.text": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.storage.background": "#21202e",
|
"theme.bar.buttons.modules.storage.background": "#21202e",
|
||||||
"theme.bar.buttons.modules.power.icon": "#181825",
|
"theme.bar.buttons.modules.power.icon": "#181825",
|
||||||
"theme.bar.buttons.modules.storage.text": "#eb6f92",
|
"theme.bar.buttons.modules.storage.text": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.cpu.background": "#21202e",
|
"theme.bar.buttons.modules.cpu.background": "#21202e",
|
||||||
"theme.bar.menus.menu.power.border.color": "#1f1d2e",
|
"theme.bar.menus.menu.power.border.color": "#1f1d2e",
|
||||||
"theme.bar.buttons.modules.power.icon_background": "#eb6f92",
|
"theme.bar.buttons.modules.power.icon_background": "#eb6f92",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.icon": "#1f1d2e",
|
"theme.bar.menus.menu.power.buttons.logout.icon": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.icon_background": "#f6c177",
|
"theme.bar.menus.menu.power.buttons.restart.icon_background": "#f6c177",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.icon": "#1f1d2e",
|
"theme.bar.menus.menu.power.buttons.restart.icon": "#1f1d2e",
|
||||||
"theme.bar.buttons.modules.cpu.icon": "#181825",
|
"theme.bar.buttons.modules.cpu.icon": "#181825",
|
||||||
"theme.bar.buttons.modules.kbLayout.icon_background": "#9ccfd8",
|
"theme.bar.buttons.modules.kbLayout.icon_background": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.weather.text": "#c4a7e7",
|
"theme.bar.buttons.modules.weather.text": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.icon": "#1f1d2e",
|
"theme.bar.menus.menu.power.buttons.shutdown.icon": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.text": "#9ccfd8",
|
"theme.bar.menus.menu.power.buttons.sleep.text": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.weather.icon_background": "#c4a7e7",
|
"theme.bar.buttons.modules.weather.icon_background": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.background": "#21202e",
|
"theme.bar.menus.menu.power.buttons.shutdown.background": "#21202e",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.background": "#21202e",
|
"theme.bar.menus.menu.power.buttons.logout.background": "#21202e",
|
||||||
"theme.bar.buttons.modules.kbLayout.icon": "#181825",
|
"theme.bar.buttons.modules.kbLayout.icon": "#181825",
|
||||||
"theme.bar.buttons.modules.ram.icon_background": "#f6c177",
|
"theme.bar.buttons.modules.ram.icon_background": "#f6c177",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.icon_background": "#eb6f92",
|
"theme.bar.menus.menu.power.buttons.shutdown.icon_background": "#eb6f92",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.text": "#eb6f92",
|
"theme.bar.menus.menu.power.buttons.shutdown.text": "#eb6f92",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.background": "#21202e",
|
"theme.bar.menus.menu.power.buttons.sleep.background": "#21202e",
|
||||||
"theme.bar.buttons.modules.ram.text": "#f6c177",
|
"theme.bar.buttons.modules.ram.text": "#f6c177",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.text": "#9ccfd8",
|
"theme.bar.menus.menu.power.buttons.logout.text": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.updates.icon_background": "#30738f",
|
"theme.bar.buttons.modules.updates.icon_background": "#30738f",
|
||||||
"theme.bar.buttons.modules.kbLayout.background": "#21202e",
|
"theme.bar.buttons.modules.kbLayout.background": "#21202e",
|
||||||
"theme.bar.buttons.modules.power.background": "#21202e",
|
"theme.bar.buttons.modules.power.background": "#21202e",
|
||||||
"theme.bar.buttons.modules.weather.background": "#21202e",
|
"theme.bar.buttons.modules.weather.background": "#21202e",
|
||||||
"theme.bar.menus.menu.power.background.color": "#191724",
|
"theme.bar.menus.menu.power.background.color": "#191724",
|
||||||
"theme.bar.buttons.modules.ram.background": "#21202e",
|
"theme.bar.buttons.modules.ram.background": "#21202e",
|
||||||
"theme.bar.buttons.modules.netstat.icon": "#181825",
|
"theme.bar.buttons.modules.netstat.icon": "#181825",
|
||||||
"theme.bar.buttons.modules.cpu.icon_background": "#eb6f92",
|
"theme.bar.buttons.modules.cpu.icon_background": "#eb6f92",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.icon_background": "#9ccfd8",
|
"theme.bar.menus.menu.power.buttons.logout.icon_background": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.updates.text": "#30738f",
|
"theme.bar.buttons.modules.updates.text": "#30738f",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.icon": "#1f1d2e",
|
"theme.bar.menus.menu.power.buttons.sleep.icon": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.background": "#21202e",
|
"theme.bar.menus.menu.power.buttons.restart.background": "#21202e",
|
||||||
"theme.bar.buttons.modules.updates.icon": "#181825",
|
"theme.bar.buttons.modules.updates.icon": "#181825",
|
||||||
"theme.bar.buttons.modules.cpu.text": "#eb6f92",
|
"theme.bar.buttons.modules.cpu.text": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.netstat.icon_background": "#9ccfd8",
|
"theme.bar.buttons.modules.netstat.icon_background": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.kbLayout.text": "#9ccfd8",
|
"theme.bar.buttons.modules.kbLayout.text": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.power.border": "#eb6f92",
|
"theme.bar.buttons.modules.power.border": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.weather.border": "#c4a7e7",
|
"theme.bar.buttons.modules.weather.border": "#c4a7e7",
|
||||||
"theme.bar.buttons.modules.updates.border": "#30738f",
|
"theme.bar.buttons.modules.updates.border": "#30738f",
|
||||||
"theme.bar.buttons.modules.kbLayout.border": "#9ccfd8",
|
"theme.bar.buttons.modules.kbLayout.border": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.netstat.border": "#9ccfd8",
|
"theme.bar.buttons.modules.netstat.border": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.storage.border": "#eb6f92",
|
"theme.bar.buttons.modules.storage.border": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.cpu.border": "#eb6f92",
|
"theme.bar.buttons.modules.cpu.border": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.ram.border": "#f6c177",
|
"theme.bar.buttons.modules.ram.border": "#f6c177",
|
||||||
"theme.bar.buttons.notifications.border": "#c4a7e7",
|
"theme.bar.buttons.notifications.border": "#c4a7e7",
|
||||||
"theme.bar.buttons.clock.border": "#c4a7e7",
|
"theme.bar.buttons.clock.border": "#c4a7e7",
|
||||||
"theme.bar.buttons.battery.border": "#f6c177",
|
"theme.bar.buttons.battery.border": "#f6c177",
|
||||||
"theme.bar.buttons.systray.border": "#26233a",
|
"theme.bar.buttons.systray.border": "#26233a",
|
||||||
"theme.bar.buttons.bluetooth.border": "#9ccfd8",
|
"theme.bar.buttons.bluetooth.border": "#9ccfd8",
|
||||||
"theme.bar.buttons.network.border": "#c4a7e7",
|
"theme.bar.buttons.network.border": "#c4a7e7",
|
||||||
"theme.bar.buttons.volume.border": "#eb6f92",
|
"theme.bar.buttons.volume.border": "#eb6f92",
|
||||||
"theme.bar.buttons.media.border": "#c4a7e7",
|
"theme.bar.buttons.media.border": "#c4a7e7",
|
||||||
"theme.bar.buttons.windowtitle.border": "#c4a7e7",
|
"theme.bar.buttons.windowtitle.border": "#c4a7e7",
|
||||||
"theme.bar.buttons.workspaces.border": "#1f1d2e",
|
"theme.bar.buttons.workspaces.border": "#1f1d2e",
|
||||||
"theme.bar.buttons.dashboard.border": "#f6c177",
|
"theme.bar.buttons.dashboard.border": "#f6c177",
|
||||||
"theme.bar.buttons.modules.submap.background": "#21202e",
|
"theme.bar.buttons.modules.submap.background": "#21202e",
|
||||||
"theme.bar.buttons.modules.submap.text": "#9ccfd8",
|
"theme.bar.buttons.modules.submap.text": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.submap.border": "#9ccfd8",
|
"theme.bar.buttons.modules.submap.border": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.submap.icon": "#181825",
|
"theme.bar.buttons.modules.submap.icon": "#181825",
|
||||||
"theme.bar.buttons.modules.submap.icon_background": "#9ccfd8",
|
"theme.bar.buttons.modules.submap.icon_background": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.network.switch.enabled": "#c4a7e7",
|
"theme.bar.menus.menu.network.switch.enabled": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.network.switch.disabled": "#1f1d2e",
|
"theme.bar.menus.menu.network.switch.disabled": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.network.switch.puck": "#26233a",
|
"theme.bar.menus.menu.network.switch.puck": "#26233a",
|
||||||
"theme.bar.buttons.systray.customIcon": "#e0def4",
|
"theme.bar.buttons.systray.customIcon": "#e0def4",
|
||||||
"theme.bar.border.color": "#c4a7e7",
|
"theme.bar.border.color": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#e0def4",
|
"theme.bar.menus.menu.media.timestamp": "#e0def4",
|
||||||
"theme.bar.buttons.borderColor": "#c4a7e7",
|
"theme.bar.buttons.borderColor": "#c4a7e7",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#f6c177",
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#f6c177",
|
||||||
"theme.bar.buttons.modules.hyprsunset.background": "#21202e",
|
"theme.bar.buttons.modules.hyprsunset.background": "#21202e",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon": "#181825",
|
"theme.bar.buttons.modules.hyprsunset.icon": "#181825",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#f6c177",
|
"theme.bar.buttons.modules.hyprsunset.text": "#f6c177",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#f6c177",
|
"theme.bar.buttons.modules.hyprsunset.border": "#f6c177",
|
||||||
"theme.bar.buttons.modules.hypridle.icon": "#181825",
|
"theme.bar.buttons.modules.hypridle.icon": "#181825",
|
||||||
"theme.bar.buttons.modules.hypridle.background": "#21202e",
|
"theme.bar.buttons.modules.hypridle.background": "#21202e",
|
||||||
"theme.bar.buttons.modules.hypridle.icon_background": "#eb6f92",
|
"theme.bar.buttons.modules.hypridle.icon_background": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.hypridle.text": "#eb6f92",
|
"theme.bar.buttons.modules.hypridle.text": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.hypridle.border": "#eb6f92"
|
"theme.bar.buttons.modules.hypridle.border": "#eb6f92",
|
||||||
|
"theme.bar.menus.menu.network.scroller.color": "#c4a7e7",
|
||||||
|
"theme.bar.menus.menu.bluetooth.scroller.color": "#9ccfd8"
|
||||||
}
|
}
|
||||||
@@ -1,358 +1,360 @@
|
|||||||
{
|
{
|
||||||
"theme.bar.menus.background": "#191724",
|
"theme.bar.menus.background": "#191724",
|
||||||
"theme.bar.background": "#191724",
|
"theme.bar.background": "#191724",
|
||||||
"theme.bar.buttons.media.icon": "#21202e",
|
"theme.bar.buttons.media.icon": "#21202e",
|
||||||
"theme.bar.buttons.media.text": "#21202e",
|
"theme.bar.buttons.media.text": "#21202e",
|
||||||
"theme.bar.buttons.icon": "#c4a7e7",
|
"theme.bar.buttons.icon": "#c4a7e7",
|
||||||
"theme.bar.buttons.text": "#c4a7e7",
|
"theme.bar.buttons.text": "#c4a7e7",
|
||||||
"theme.bar.buttons.hover": "#26233a",
|
"theme.bar.buttons.hover": "#26233a",
|
||||||
"theme.bar.buttons.background": "#21202e",
|
"theme.bar.buttons.background": "#21202e",
|
||||||
"theme.bar.menus.text": "#e0def4",
|
"theme.bar.menus.text": "#e0def4",
|
||||||
"theme.bar.menus.border.color": "#1f1d2e",
|
"theme.bar.menus.border.color": "#1f1d2e",
|
||||||
"theme.bar.buttons.media.background": "#c4a7e7",
|
"theme.bar.buttons.media.background": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.volume.text": "#e0def4",
|
"theme.bar.menus.menu.volume.text": "#e0def4",
|
||||||
"theme.bar.menus.menu.volume.card.color": "#21202e",
|
"theme.bar.menus.menu.volume.card.color": "#21202e",
|
||||||
"theme.bar.menus.menu.volume.label.color": "#eb6f92",
|
"theme.bar.menus.menu.volume.label.color": "#eb6f92",
|
||||||
"theme.bar.menus.popover.text": "#c4a7e7",
|
"theme.bar.menus.popover.text": "#c4a7e7",
|
||||||
"theme.bar.menus.popover.background": "#1f1d2e",
|
"theme.bar.menus.popover.background": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.shutdown": "#eb6f92",
|
"theme.bar.menus.menu.dashboard.powermenu.shutdown": "#eb6f92",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#eb6f92",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#eb6f92",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.confirm": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.confirm": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#191724",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#191724",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.body": "#e0def4",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.body": "#e0def4",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.border": "#1f1d2e",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.border": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#191724",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#191724",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#21202e",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#21202e",
|
||||||
"theme.bar.menus.menu.notifications.switch.puck": "#26233a",
|
"theme.bar.menus.menu.notifications.switch.puck": "#26233a",
|
||||||
"theme.bar.menus.menu.notifications.switch.disabled": "#1f1d2e",
|
"theme.bar.menus.menu.notifications.switch.disabled": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.notifications.switch.enabled": "#c4a7e7",
|
"theme.bar.menus.menu.notifications.switch.enabled": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.notifications.clear": "#eb6f92",
|
"theme.bar.menus.menu.notifications.clear": "#eb6f92",
|
||||||
"theme.bar.menus.menu.notifications.switch_divider": "#26233a",
|
"theme.bar.menus.menu.notifications.switch_divider": "#26233a",
|
||||||
"theme.bar.menus.menu.notifications.border": "#1f1d2e",
|
"theme.bar.menus.menu.notifications.border": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.notifications.card": "#21202e",
|
"theme.bar.menus.menu.notifications.card": "#21202e",
|
||||||
"theme.bar.menus.menu.notifications.background": "#191724",
|
"theme.bar.menus.menu.notifications.background": "#191724",
|
||||||
"theme.bar.menus.menu.notifications.no_notifications_label": "#1f1d2e",
|
"theme.bar.menus.menu.notifications.no_notifications_label": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.notifications.label": "#c4a7e7",
|
"theme.bar.menus.menu.notifications.label": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.disk.label": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.monitors.disk.label": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.disk.bar": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.monitors.disk.bar": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.disk.icon": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.monitors.disk.icon": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.gpu.label": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.monitors.gpu.label": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.gpu.icon": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.monitors.gpu.icon": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.ram.label": "#f6c177",
|
"theme.bar.menus.menu.dashboard.monitors.ram.label": "#f6c177",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.ram.bar": "#f6c177",
|
"theme.bar.menus.menu.dashboard.monitors.ram.bar": "#f6c177",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.ram.icon": "#f6c177",
|
"theme.bar.menus.menu.dashboard.monitors.ram.icon": "#f6c177",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.cpu.label": "#eb6f92",
|
"theme.bar.menus.menu.dashboard.monitors.cpu.label": "#eb6f92",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#eb6f92",
|
"theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#eb6f92",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#eb6f92",
|
"theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#eb6f92",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.bar_background": "#26233a",
|
"theme.bar.menus.menu.dashboard.monitors.bar_background": "#26233a",
|
||||||
"theme.bar.menus.menu.dashboard.directories.right.bottom.color": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.directories.right.bottom.color": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.directories.right.middle.color": "#30738f",
|
"theme.bar.menus.menu.dashboard.directories.right.middle.color": "#30738f",
|
||||||
"theme.bar.menus.menu.dashboard.directories.right.top.color": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.directories.right.top.color": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#eb6f92",
|
"theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#eb6f92",
|
||||||
"theme.bar.menus.menu.dashboard.directories.left.middle.color": "#f6c177",
|
"theme.bar.menus.menu.dashboard.directories.left.middle.color": "#f6c177",
|
||||||
"theme.bar.menus.menu.dashboard.directories.left.top.color": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.directories.left.top.color": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.controls.input.text": "#1f1d2e",
|
"theme.bar.menus.menu.dashboard.controls.input.text": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.dashboard.controls.input.background": "#30738f",
|
"theme.bar.menus.menu.dashboard.controls.input.background": "#30738f",
|
||||||
"theme.bar.menus.menu.dashboard.controls.volume.text": "#1f1d2e",
|
"theme.bar.menus.menu.dashboard.controls.volume.text": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.dashboard.controls.volume.background": "#eb6f92",
|
"theme.bar.menus.menu.dashboard.controls.volume.background": "#eb6f92",
|
||||||
"theme.bar.menus.menu.dashboard.controls.notifications.text": "#1f1d2e",
|
"theme.bar.menus.menu.dashboard.controls.notifications.text": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.dashboard.controls.notifications.background": "#f6c177",
|
"theme.bar.menus.menu.dashboard.controls.notifications.background": "#f6c177",
|
||||||
"theme.bar.menus.menu.dashboard.controls.bluetooth.text": "#1f1d2e",
|
"theme.bar.menus.menu.dashboard.controls.bluetooth.text": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.controls.wifi.text": "#1f1d2e",
|
"theme.bar.menus.menu.dashboard.controls.wifi.text": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.dashboard.controls.wifi.background": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.controls.wifi.background": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.controls.disabled": "#403d52",
|
"theme.bar.menus.menu.dashboard.controls.disabled": "#403d52",
|
||||||
"theme.bar.menus.menu.dashboard.shortcuts.recording": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.shortcuts.recording": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.shortcuts.text": "#1f1d2e",
|
"theme.bar.menus.menu.dashboard.shortcuts.text": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.dashboard.shortcuts.background": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.shortcuts.background": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.sleep": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.powermenu.sleep": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.logout": "#9ccfd8",
|
"theme.bar.menus.menu.dashboard.powermenu.logout": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.restart": "#f6c177",
|
"theme.bar.menus.menu.dashboard.powermenu.restart": "#f6c177",
|
||||||
"theme.bar.menus.menu.dashboard.profile.name": "#c4a7e7",
|
"theme.bar.menus.menu.dashboard.profile.name": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.dashboard.border.color": "#1f1d2e",
|
"theme.bar.menus.menu.dashboard.border.color": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.dashboard.background.color": "#191724",
|
"theme.bar.menus.menu.dashboard.background.color": "#191724",
|
||||||
"theme.bar.menus.menu.dashboard.card.color": "#21202e",
|
"theme.bar.menus.menu.dashboard.card.color": "#21202e",
|
||||||
"theme.bar.menus.menu.clock.weather.hourly.temperature": "#c4a7e7",
|
"theme.bar.menus.menu.clock.weather.hourly.temperature": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.weather.hourly.icon": "#c4a7e7",
|
"theme.bar.menus.menu.clock.weather.hourly.icon": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.weather.hourly.time": "#c4a7e7",
|
"theme.bar.menus.menu.clock.weather.hourly.time": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.extremelycold": "#9ccfd8",
|
"theme.bar.menus.menu.clock.weather.thermometer.extremelycold": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.cold": "#31748f",
|
"theme.bar.menus.menu.clock.weather.thermometer.cold": "#31748f",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.moderate": "#c4a7e7",
|
"theme.bar.menus.menu.clock.weather.thermometer.moderate": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.hot": "#f6c177",
|
"theme.bar.menus.menu.clock.weather.thermometer.hot": "#f6c177",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#eb6f92",
|
"theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#eb6f92",
|
||||||
"theme.bar.menus.menu.clock.weather.stats": "#c4a7e7",
|
"theme.bar.menus.menu.clock.weather.stats": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.weather.status": "#9ccfd8",
|
"theme.bar.menus.menu.clock.weather.status": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.clock.weather.temperature": "#e0def4",
|
"theme.bar.menus.menu.clock.weather.temperature": "#e0def4",
|
||||||
"theme.bar.menus.menu.clock.weather.icon": "#c4a7e7",
|
"theme.bar.menus.menu.clock.weather.icon": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.calendar.contextdays": "#403d52",
|
"theme.bar.menus.menu.clock.calendar.contextdays": "#403d52",
|
||||||
"theme.bar.menus.menu.clock.calendar.days": "#e0def4",
|
"theme.bar.menus.menu.clock.calendar.days": "#e0def4",
|
||||||
"theme.bar.menus.menu.clock.calendar.currentday": "#c4a7e7",
|
"theme.bar.menus.menu.clock.calendar.currentday": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.calendar.paginator": "#c4a7e7",
|
"theme.bar.menus.menu.clock.calendar.paginator": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.calendar.weekdays": "#c4a7e7",
|
"theme.bar.menus.menu.clock.calendar.weekdays": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.calendar.yearmonth": "#9ccfd8",
|
"theme.bar.menus.menu.clock.calendar.yearmonth": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.clock.time.timeperiod": "#9ccfd8",
|
"theme.bar.menus.menu.clock.time.timeperiod": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.clock.time.time": "#c4a7e7",
|
"theme.bar.menus.menu.clock.time.time": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.clock.text": "#e0def4",
|
"theme.bar.menus.menu.clock.text": "#e0def4",
|
||||||
"theme.bar.menus.menu.clock.border.color": "#1f1d2e",
|
"theme.bar.menus.menu.clock.border.color": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.clock.background.color": "#191724",
|
"theme.bar.menus.menu.clock.background.color": "#191724",
|
||||||
"theme.bar.menus.menu.clock.card.color": "#21202e",
|
"theme.bar.menus.menu.clock.card.color": "#21202e",
|
||||||
"theme.bar.menus.menu.battery.slider.puck": "#26233a",
|
"theme.bar.menus.menu.battery.slider.puck": "#26233a",
|
||||||
"theme.bar.menus.menu.battery.slider.backgroundhover": "#26233a",
|
"theme.bar.menus.menu.battery.slider.backgroundhover": "#26233a",
|
||||||
"theme.bar.menus.menu.battery.slider.background": "#403d52",
|
"theme.bar.menus.menu.battery.slider.background": "#403d52",
|
||||||
"theme.bar.menus.menu.battery.slider.primary": "#f6c177",
|
"theme.bar.menus.menu.battery.slider.primary": "#f6c177",
|
||||||
"theme.bar.menus.menu.battery.icons.active": "#f6c177",
|
"theme.bar.menus.menu.battery.icons.active": "#f6c177",
|
||||||
"theme.bar.menus.menu.battery.icons.passive": "#524f67",
|
"theme.bar.menus.menu.battery.icons.passive": "#524f67",
|
||||||
"theme.bar.menus.menu.battery.listitems.active": "#f6c177",
|
"theme.bar.menus.menu.battery.listitems.active": "#f6c177",
|
||||||
"theme.bar.menus.menu.battery.listitems.passive": "#e0def4",
|
"theme.bar.menus.menu.battery.listitems.passive": "#e0def4",
|
||||||
"theme.bar.menus.menu.battery.text": "#e0def4",
|
"theme.bar.menus.menu.battery.text": "#e0def4",
|
||||||
"theme.bar.menus.menu.battery.label.color": "#f6c177",
|
"theme.bar.menus.menu.battery.label.color": "#f6c177",
|
||||||
"theme.bar.menus.menu.battery.border.color": "#1f1d2e",
|
"theme.bar.menus.menu.battery.border.color": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.battery.background.color": "#191724",
|
"theme.bar.menus.menu.battery.background.color": "#191724",
|
||||||
"theme.bar.menus.menu.battery.card.color": "#21202e",
|
"theme.bar.menus.menu.battery.card.color": "#21202e",
|
||||||
"theme.bar.menus.menu.systray.dropdownmenu.divider": "#21202e",
|
"theme.bar.menus.menu.systray.dropdownmenu.divider": "#21202e",
|
||||||
"theme.bar.menus.menu.systray.dropdownmenu.text": "#e0def4",
|
"theme.bar.menus.menu.systray.dropdownmenu.text": "#e0def4",
|
||||||
"theme.bar.menus.menu.systray.dropdownmenu.background": "#191724",
|
"theme.bar.menus.menu.systray.dropdownmenu.background": "#191724",
|
||||||
"theme.bar.menus.menu.bluetooth.iconbutton.active": "#9ccfd8",
|
"theme.bar.menus.menu.bluetooth.iconbutton.active": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.bluetooth.iconbutton.passive": "#e0def4",
|
"theme.bar.menus.menu.bluetooth.iconbutton.passive": "#e0def4",
|
||||||
"theme.bar.menus.menu.bluetooth.icons.active": "#9ccfd8",
|
"theme.bar.menus.menu.bluetooth.icons.active": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.bluetooth.icons.passive": "#524f67",
|
"theme.bar.menus.menu.bluetooth.icons.passive": "#524f67",
|
||||||
"theme.bar.menus.menu.bluetooth.listitems.active": "#9ccfd8",
|
"theme.bar.menus.menu.bluetooth.listitems.active": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.bluetooth.listitems.passive": "#e0def4",
|
"theme.bar.menus.menu.bluetooth.listitems.passive": "#e0def4",
|
||||||
"theme.bar.menus.menu.bluetooth.switch.puck": "#26233a",
|
"theme.bar.menus.menu.bluetooth.switch.puck": "#26233a",
|
||||||
"theme.bar.menus.menu.bluetooth.switch.disabled": "#1f1d2e",
|
"theme.bar.menus.menu.bluetooth.switch.disabled": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.bluetooth.switch.enabled": "#9ccfd8",
|
"theme.bar.menus.menu.bluetooth.switch.enabled": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.bluetooth.switch_divider": "#26233a",
|
"theme.bar.menus.menu.bluetooth.switch_divider": "#26233a",
|
||||||
"theme.bar.menus.menu.bluetooth.status": "#26233a",
|
"theme.bar.menus.menu.bluetooth.status": "#26233a",
|
||||||
"theme.bar.menus.menu.bluetooth.text": "#e0def4",
|
"theme.bar.menus.menu.bluetooth.text": "#e0def4",
|
||||||
"theme.bar.menus.menu.bluetooth.label.color": "#9ccfd8",
|
"theme.bar.menus.menu.bluetooth.label.color": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.bluetooth.border.color": "#1f1d2e",
|
"theme.bar.menus.menu.bluetooth.border.color": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.bluetooth.background.color": "#191724",
|
"theme.bar.menus.menu.bluetooth.background.color": "#191724",
|
||||||
"theme.bar.menus.menu.bluetooth.card.color": "#21202e",
|
"theme.bar.menus.menu.bluetooth.card.color": "#21202e",
|
||||||
"theme.bar.menus.menu.network.iconbuttons.active": "#c4a7e7",
|
"theme.bar.menus.menu.network.iconbuttons.active": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.network.iconbuttons.passive": "#e0def4",
|
"theme.bar.menus.menu.network.iconbuttons.passive": "#e0def4",
|
||||||
"theme.bar.menus.menu.network.icons.active": "#c4a7e7",
|
"theme.bar.menus.menu.network.icons.active": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.network.icons.passive": "#524f67",
|
"theme.bar.menus.menu.network.icons.passive": "#524f67",
|
||||||
"theme.bar.menus.menu.network.listitems.active": "#c4a7e7",
|
"theme.bar.menus.menu.network.listitems.active": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.network.listitems.passive": "#e0def4",
|
"theme.bar.menus.menu.network.listitems.passive": "#e0def4",
|
||||||
"theme.bar.menus.menu.network.status.color": "#26233a",
|
"theme.bar.menus.menu.network.status.color": "#26233a",
|
||||||
"theme.bar.menus.menu.network.text": "#e0def4",
|
"theme.bar.menus.menu.network.text": "#e0def4",
|
||||||
"theme.bar.menus.menu.network.label.color": "#c4a7e7",
|
"theme.bar.menus.menu.network.label.color": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.network.border.color": "#1f1d2e",
|
"theme.bar.menus.menu.network.border.color": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.network.background.color": "#191724",
|
"theme.bar.menus.menu.network.background.color": "#191724",
|
||||||
"theme.bar.menus.menu.network.card.color": "#21202e",
|
"theme.bar.menus.menu.network.card.color": "#21202e",
|
||||||
"theme.bar.menus.menu.volume.input_slider.puck": "#403d52",
|
"theme.bar.menus.menu.volume.input_slider.puck": "#403d52",
|
||||||
"theme.bar.menus.menu.volume.input_slider.backgroundhover": "#26233a",
|
"theme.bar.menus.menu.volume.input_slider.backgroundhover": "#26233a",
|
||||||
"theme.bar.menus.menu.volume.input_slider.background": "#403d52",
|
"theme.bar.menus.menu.volume.input_slider.background": "#403d52",
|
||||||
"theme.bar.menus.menu.volume.input_slider.primary": "#eb6f92",
|
"theme.bar.menus.menu.volume.input_slider.primary": "#eb6f92",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.puck": "#403d52",
|
"theme.bar.menus.menu.volume.audio_slider.puck": "#403d52",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#26233a",
|
"theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#26233a",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.background": "#403d52",
|
"theme.bar.menus.menu.volume.audio_slider.background": "#403d52",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.primary": "#eb6f92",
|
"theme.bar.menus.menu.volume.audio_slider.primary": "#eb6f92",
|
||||||
"theme.bar.menus.menu.volume.icons.active": "#eb6f92",
|
"theme.bar.menus.menu.volume.icons.active": "#eb6f92",
|
||||||
"theme.bar.menus.menu.volume.icons.passive": "#524f67",
|
"theme.bar.menus.menu.volume.icons.passive": "#524f67",
|
||||||
"theme.bar.menus.menu.volume.iconbutton.active": "#eb6f92",
|
"theme.bar.menus.menu.volume.iconbutton.active": "#eb6f92",
|
||||||
"theme.bar.menus.menu.volume.iconbutton.passive": "#e0def4",
|
"theme.bar.menus.menu.volume.iconbutton.passive": "#e0def4",
|
||||||
"theme.bar.menus.menu.volume.listitems.active": "#eb6f92",
|
"theme.bar.menus.menu.volume.listitems.active": "#eb6f92",
|
||||||
"theme.bar.menus.menu.volume.listitems.passive": "#e0def4",
|
"theme.bar.menus.menu.volume.listitems.passive": "#e0def4",
|
||||||
"theme.bar.menus.menu.volume.border.color": "#1f1d2e",
|
"theme.bar.menus.menu.volume.border.color": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.volume.background.color": "#191724",
|
"theme.bar.menus.menu.volume.background.color": "#191724",
|
||||||
"theme.bar.menus.menu.media.slider.puck": "#26233a",
|
"theme.bar.menus.menu.media.slider.puck": "#26233a",
|
||||||
"theme.bar.menus.menu.media.slider.backgroundhover": "#26233a",
|
"theme.bar.menus.menu.media.slider.backgroundhover": "#26233a",
|
||||||
"theme.bar.menus.menu.media.slider.background": "#403d52",
|
"theme.bar.menus.menu.media.slider.background": "#403d52",
|
||||||
"theme.bar.menus.menu.media.slider.primary": "#c4a7e7",
|
"theme.bar.menus.menu.media.slider.primary": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.media.buttons.text": "#191724",
|
"theme.bar.menus.menu.media.buttons.text": "#191724",
|
||||||
"theme.bar.menus.menu.media.buttons.background": "#c4a7e7",
|
"theme.bar.menus.menu.media.buttons.background": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.media.buttons.enabled": "#9ccfd8",
|
"theme.bar.menus.menu.media.buttons.enabled": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.media.buttons.inactive": "#403d52",
|
"theme.bar.menus.menu.media.buttons.inactive": "#403d52",
|
||||||
"theme.bar.menus.menu.media.border.color": "#1f1d2e",
|
"theme.bar.menus.menu.media.border.color": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.media.background.color": "#191724",
|
"theme.bar.menus.menu.media.background.color": "#191724",
|
||||||
"theme.bar.menus.menu.media.album": "#c4a7e7",
|
"theme.bar.menus.menu.media.album": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.media.artist": "#9ccfd8",
|
"theme.bar.menus.menu.media.artist": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.media.song": "#c4a7e7",
|
"theme.bar.menus.menu.media.song": "#c4a7e7",
|
||||||
"theme.bar.menus.tooltip.text": "#e0def4",
|
"theme.bar.menus.tooltip.text": "#e0def4",
|
||||||
"theme.bar.menus.tooltip.background": "#191724",
|
"theme.bar.menus.tooltip.background": "#191724",
|
||||||
"theme.bar.menus.dropdownmenu.divider": "#21202e",
|
"theme.bar.menus.dropdownmenu.divider": "#21202e",
|
||||||
"theme.bar.menus.dropdownmenu.text": "#e0def4",
|
"theme.bar.menus.dropdownmenu.text": "#e0def4",
|
||||||
"theme.bar.menus.dropdownmenu.background": "#191724",
|
"theme.bar.menus.dropdownmenu.background": "#191724",
|
||||||
"theme.bar.menus.slider.puck": "#26233a",
|
"theme.bar.menus.slider.puck": "#26233a",
|
||||||
"theme.bar.menus.slider.backgroundhover": "#26233a",
|
"theme.bar.menus.slider.backgroundhover": "#26233a",
|
||||||
"theme.bar.menus.slider.background": "#403d52",
|
"theme.bar.menus.slider.background": "#403d52",
|
||||||
"theme.bar.menus.slider.primary": "#c4a7e7",
|
"theme.bar.menus.slider.primary": "#c4a7e7",
|
||||||
"theme.bar.menus.progressbar.background": "#26233a",
|
"theme.bar.menus.progressbar.background": "#26233a",
|
||||||
"theme.bar.menus.progressbar.foreground": "#c4a7e7",
|
"theme.bar.menus.progressbar.foreground": "#c4a7e7",
|
||||||
"theme.bar.menus.iconbuttons.active": "#c4a7e7",
|
"theme.bar.menus.iconbuttons.active": "#c4a7e7",
|
||||||
"theme.bar.menus.iconbuttons.passive": "#e0def4",
|
"theme.bar.menus.iconbuttons.passive": "#e0def4",
|
||||||
"theme.bar.menus.buttons.text": "#1f1d2e",
|
"theme.bar.menus.buttons.text": "#1f1d2e",
|
||||||
"theme.bar.menus.buttons.disabled": "#403d52",
|
"theme.bar.menus.buttons.disabled": "#403d52",
|
||||||
"theme.bar.menus.buttons.active": "#c4a7e7",
|
"theme.bar.menus.buttons.active": "#c4a7e7",
|
||||||
"theme.bar.menus.buttons.default": "#c4a7e7",
|
"theme.bar.menus.buttons.default": "#c4a7e7",
|
||||||
"theme.bar.menus.switch.puck": "#26233a",
|
"theme.bar.menus.switch.puck": "#26233a",
|
||||||
"theme.bar.menus.switch.disabled": "#1f1d2e",
|
"theme.bar.menus.switch.disabled": "#1f1d2e",
|
||||||
"theme.bar.menus.switch.enabled": "#c4a7e7",
|
"theme.bar.menus.switch.enabled": "#c4a7e7",
|
||||||
"theme.bar.menus.icons.active": "#c4a7e7",
|
"theme.bar.menus.icons.active": "#c4a7e7",
|
||||||
"theme.bar.menus.icons.passive": "#403d52",
|
"theme.bar.menus.icons.passive": "#403d52",
|
||||||
"theme.bar.menus.listitems.active": "#c4a7e7",
|
"theme.bar.menus.listitems.active": "#c4a7e7",
|
||||||
"theme.bar.menus.listitems.passive": "#e0def4",
|
"theme.bar.menus.listitems.passive": "#e0def4",
|
||||||
"theme.bar.menus.label": "#c4a7e7",
|
"theme.bar.menus.label": "#c4a7e7",
|
||||||
"theme.bar.menus.feinttext": "#1f1d2e",
|
"theme.bar.menus.feinttext": "#1f1d2e",
|
||||||
"theme.bar.menus.dimtext": "#403d52",
|
"theme.bar.menus.dimtext": "#403d52",
|
||||||
"theme.bar.menus.cards": "#21202e",
|
"theme.bar.menus.cards": "#21202e",
|
||||||
"theme.bar.buttons.notifications.total": "#21202e",
|
"theme.bar.buttons.notifications.total": "#21202e",
|
||||||
"theme.bar.buttons.notifications.icon": "#21202e",
|
"theme.bar.buttons.notifications.icon": "#21202e",
|
||||||
"theme.bar.buttons.notifications.background": "#c4a7e7",
|
"theme.bar.buttons.notifications.background": "#c4a7e7",
|
||||||
"theme.bar.buttons.clock.icon": "#21202e",
|
"theme.bar.buttons.clock.icon": "#21202e",
|
||||||
"theme.bar.buttons.clock.text": "#21202e",
|
"theme.bar.buttons.clock.text": "#21202e",
|
||||||
"theme.bar.buttons.clock.background": "#c4a7e7",
|
"theme.bar.buttons.clock.background": "#c4a7e7",
|
||||||
"theme.bar.buttons.battery.icon": "#21202e",
|
"theme.bar.buttons.battery.icon": "#21202e",
|
||||||
"theme.bar.buttons.battery.text": "#21202e",
|
"theme.bar.buttons.battery.text": "#21202e",
|
||||||
"theme.bar.buttons.battery.background": "#f6c177",
|
"theme.bar.buttons.battery.background": "#f6c177",
|
||||||
"theme.bar.buttons.systray.background": "#21202e",
|
"theme.bar.buttons.systray.background": "#21202e",
|
||||||
"theme.bar.buttons.bluetooth.icon": "#21202e",
|
"theme.bar.buttons.bluetooth.icon": "#21202e",
|
||||||
"theme.bar.buttons.bluetooth.text": "#21202e",
|
"theme.bar.buttons.bluetooth.text": "#21202e",
|
||||||
"theme.bar.buttons.bluetooth.background": "#9ccfd8",
|
"theme.bar.buttons.bluetooth.background": "#9ccfd8",
|
||||||
"theme.bar.buttons.network.icon": "#21202e",
|
"theme.bar.buttons.network.icon": "#21202e",
|
||||||
"theme.bar.buttons.network.text": "#21202e",
|
"theme.bar.buttons.network.text": "#21202e",
|
||||||
"theme.bar.buttons.network.background": "#c4a7e7",
|
"theme.bar.buttons.network.background": "#c4a7e7",
|
||||||
"theme.bar.buttons.volume.icon": "#21202e",
|
"theme.bar.buttons.volume.icon": "#21202e",
|
||||||
"theme.bar.buttons.volume.text": "#21202e",
|
"theme.bar.buttons.volume.text": "#21202e",
|
||||||
"theme.bar.buttons.volume.background": "#eb6f92",
|
"theme.bar.buttons.volume.background": "#eb6f92",
|
||||||
"theme.bar.buttons.windowtitle.icon": "#21202e",
|
"theme.bar.buttons.windowtitle.icon": "#21202e",
|
||||||
"theme.bar.buttons.windowtitle.text": "#21202e",
|
"theme.bar.buttons.windowtitle.text": "#21202e",
|
||||||
"theme.bar.buttons.windowtitle.background": "#c4a7e7",
|
"theme.bar.buttons.windowtitle.background": "#c4a7e7",
|
||||||
"theme.bar.buttons.workspaces.active": "#c4a7e7",
|
"theme.bar.buttons.workspaces.active": "#c4a7e7",
|
||||||
"theme.bar.buttons.workspaces.occupied": "#eb6f92",
|
"theme.bar.buttons.workspaces.occupied": "#eb6f92",
|
||||||
"theme.bar.buttons.workspaces.available": "#9ccfd8",
|
"theme.bar.buttons.workspaces.available": "#9ccfd8",
|
||||||
"theme.bar.buttons.workspaces.hover": "#26233a",
|
"theme.bar.buttons.workspaces.hover": "#26233a",
|
||||||
"theme.bar.buttons.workspaces.background": "#21202e",
|
"theme.bar.buttons.workspaces.background": "#21202e",
|
||||||
"theme.bar.buttons.dashboard.icon": "#21202e",
|
"theme.bar.buttons.dashboard.icon": "#21202e",
|
||||||
"theme.bar.buttons.dashboard.background": "#f6c177",
|
"theme.bar.buttons.dashboard.background": "#f6c177",
|
||||||
"theme.osd.label": "#c4a7e7",
|
"theme.osd.label": "#c4a7e7",
|
||||||
"theme.osd.icon": "#191724",
|
"theme.osd.icon": "#191724",
|
||||||
"theme.osd.bar_overflow_color": "#eb6f92",
|
"theme.osd.bar_overflow_color": "#eb6f92",
|
||||||
"theme.osd.bar_empty_color": "#1f1d2e",
|
"theme.osd.bar_empty_color": "#1f1d2e",
|
||||||
"theme.osd.bar_color": "#c4a7e7",
|
"theme.osd.bar_color": "#c4a7e7",
|
||||||
"theme.osd.icon_container": "#c4a7e7",
|
"theme.osd.icon_container": "#c4a7e7",
|
||||||
"theme.osd.bar_container": "#191724",
|
"theme.osd.bar_container": "#191724",
|
||||||
"theme.notification.close_button.label": "#191724",
|
"theme.notification.close_button.label": "#191724",
|
||||||
"theme.notification.close_button.background": "#eb6f92",
|
"theme.notification.close_button.background": "#eb6f92",
|
||||||
"theme.notification.labelicon": "#c4a7e7",
|
"theme.notification.labelicon": "#c4a7e7",
|
||||||
"theme.notification.text": "#e0def4",
|
"theme.notification.text": "#e0def4",
|
||||||
"theme.notification.time": "#403d52",
|
"theme.notification.time": "#403d52",
|
||||||
"theme.notification.border": "#1f1d2e",
|
"theme.notification.border": "#1f1d2e",
|
||||||
"theme.notification.label": "#c4a7e7",
|
"theme.notification.label": "#c4a7e7",
|
||||||
"theme.notification.actions.text": "#1f1d2e",
|
"theme.notification.actions.text": "#1f1d2e",
|
||||||
"theme.notification.actions.background": "#c4a7e7",
|
"theme.notification.actions.background": "#c4a7e7",
|
||||||
"theme.notification.background": "#1f1d2e",
|
"theme.notification.background": "#1f1d2e",
|
||||||
"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": "#c678dd",
|
"theme.bar.buttons.workspaces.numbered_active_underline_color": "#c678dd",
|
||||||
"theme.bar.menus.menu.media.card.color": "#21202e",
|
"theme.bar.menus.menu.media.card.color": "#21202e",
|
||||||
"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.menus.menu.notifications.pager.button": "#c4a7e7",
|
"theme.bar.menus.menu.notifications.pager.button": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.notifications.scrollbar.color": "#c4a7e7",
|
"theme.bar.menus.menu.notifications.scrollbar.color": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.notifications.pager.label": "#524f67",
|
"theme.bar.menus.menu.notifications.pager.label": "#524f67",
|
||||||
"theme.bar.menus.menu.notifications.pager.background": "#191724",
|
"theme.bar.menus.menu.notifications.pager.background": "#191724",
|
||||||
"theme.bar.buttons.clock.icon_background": "#c4a7e7",
|
"theme.bar.buttons.clock.icon_background": "#c4a7e7",
|
||||||
"theme.bar.buttons.modules.ram.icon": "#21202e",
|
"theme.bar.buttons.modules.ram.icon": "#21202e",
|
||||||
"theme.bar.buttons.modules.storage.icon_background": "#eb6f92",
|
"theme.bar.buttons.modules.storage.icon_background": "#eb6f92",
|
||||||
"theme.bar.menus.popover.border": "#1f1d2e",
|
"theme.bar.menus.popover.border": "#1f1d2e",
|
||||||
"theme.bar.buttons.volume.icon_background": "#eb6f92",
|
"theme.bar.buttons.volume.icon_background": "#eb6f92",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.icon_background": "#9ccfd8",
|
"theme.bar.menus.menu.power.buttons.sleep.icon_background": "#9ccfd8",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.text": "#f6c177",
|
"theme.bar.menus.menu.power.buttons.restart.text": "#f6c177",
|
||||||
"theme.bar.buttons.modules.updates.background": "#30738f",
|
"theme.bar.buttons.modules.updates.background": "#30738f",
|
||||||
"theme.bar.buttons.modules.storage.icon": "#21202e",
|
"theme.bar.buttons.modules.storage.icon": "#21202e",
|
||||||
"theme.bar.buttons.modules.netstat.background": "#9ccfd8",
|
"theme.bar.buttons.modules.netstat.background": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.weather.icon": "#21202e",
|
"theme.bar.buttons.modules.weather.icon": "#21202e",
|
||||||
"theme.bar.buttons.modules.netstat.text": "#21202e",
|
"theme.bar.buttons.modules.netstat.text": "#21202e",
|
||||||
"theme.bar.buttons.modules.storage.background": "#eb6f92",
|
"theme.bar.buttons.modules.storage.background": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.power.icon": "#21202e",
|
"theme.bar.buttons.modules.power.icon": "#21202e",
|
||||||
"theme.bar.buttons.modules.storage.text": "#21202e",
|
"theme.bar.buttons.modules.storage.text": "#21202e",
|
||||||
"theme.bar.buttons.modules.cpu.background": "#eb6f92",
|
"theme.bar.buttons.modules.cpu.background": "#eb6f92",
|
||||||
"theme.bar.menus.menu.power.border.color": "#1f1d2e",
|
"theme.bar.menus.menu.power.border.color": "#1f1d2e",
|
||||||
"theme.bar.buttons.network.icon_background": "#caa6f7",
|
"theme.bar.buttons.network.icon_background": "#caa6f7",
|
||||||
"theme.bar.buttons.modules.power.icon_background": "#eb6f92",
|
"theme.bar.buttons.modules.power.icon_background": "#eb6f92",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.icon": "#1f1d2e",
|
"theme.bar.menus.menu.power.buttons.logout.icon": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.icon_background": "#f6c177",
|
"theme.bar.menus.menu.power.buttons.restart.icon_background": "#f6c177",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.icon": "#1f1d2e",
|
"theme.bar.menus.menu.power.buttons.restart.icon": "#1f1d2e",
|
||||||
"theme.bar.buttons.modules.cpu.icon": "#21202e",
|
"theme.bar.buttons.modules.cpu.icon": "#21202e",
|
||||||
"theme.bar.buttons.battery.icon_background": "#f6c177",
|
"theme.bar.buttons.battery.icon_background": "#f6c177",
|
||||||
"theme.bar.buttons.modules.kbLayout.icon_background": "#9ccfd8",
|
"theme.bar.buttons.modules.kbLayout.icon_background": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.weather.text": "#21202e",
|
"theme.bar.buttons.modules.weather.text": "#21202e",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.icon": "#1f1d2e",
|
"theme.bar.menus.menu.power.buttons.shutdown.icon": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.text": "#9ccfd8",
|
"theme.bar.menus.menu.power.buttons.sleep.text": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.weather.icon_background": "#c4a7e7",
|
"theme.bar.buttons.modules.weather.icon_background": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.background": "#21202e",
|
"theme.bar.menus.menu.power.buttons.shutdown.background": "#21202e",
|
||||||
"theme.bar.buttons.media.icon_background": "#c4a7e7",
|
"theme.bar.buttons.media.icon_background": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.background": "#21202e",
|
"theme.bar.menus.menu.power.buttons.logout.background": "#21202e",
|
||||||
"theme.bar.buttons.modules.kbLayout.icon": "#21202e",
|
"theme.bar.buttons.modules.kbLayout.icon": "#21202e",
|
||||||
"theme.bar.buttons.modules.ram.icon_background": "#f6c177",
|
"theme.bar.buttons.modules.ram.icon_background": "#f6c177",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.icon_background": "#eb6f92",
|
"theme.bar.menus.menu.power.buttons.shutdown.icon_background": "#eb6f92",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.text": "#eb6f92",
|
"theme.bar.menus.menu.power.buttons.shutdown.text": "#eb6f92",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.background": "#21202e",
|
"theme.bar.menus.menu.power.buttons.sleep.background": "#21202e",
|
||||||
"theme.bar.buttons.modules.ram.text": "#21202e",
|
"theme.bar.buttons.modules.ram.text": "#21202e",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.text": "#9ccfd8",
|
"theme.bar.menus.menu.power.buttons.logout.text": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.updates.icon_background": "#30738f",
|
"theme.bar.buttons.modules.updates.icon_background": "#30738f",
|
||||||
"theme.bar.buttons.modules.kbLayout.background": "#9ccfd8",
|
"theme.bar.buttons.modules.kbLayout.background": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.power.background": "#eb6f92",
|
"theme.bar.buttons.modules.power.background": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.weather.background": "#c4a7e7",
|
"theme.bar.buttons.modules.weather.background": "#c4a7e7",
|
||||||
"theme.bar.buttons.icon_background": "#21202e",
|
"theme.bar.buttons.icon_background": "#21202e",
|
||||||
"theme.bar.menus.menu.power.background.color": "#191724",
|
"theme.bar.menus.menu.power.background.color": "#191724",
|
||||||
"theme.bar.buttons.modules.ram.background": "#f6c177",
|
"theme.bar.buttons.modules.ram.background": "#f6c177",
|
||||||
"theme.bar.buttons.modules.netstat.icon": "#21202e",
|
"theme.bar.buttons.modules.netstat.icon": "#21202e",
|
||||||
"theme.bar.buttons.windowtitle.icon_background": "#c4a7e7",
|
"theme.bar.buttons.windowtitle.icon_background": "#c4a7e7",
|
||||||
"theme.bar.buttons.modules.cpu.icon_background": "#eb6f92",
|
"theme.bar.buttons.modules.cpu.icon_background": "#eb6f92",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.icon_background": "#9ccfd8",
|
"theme.bar.menus.menu.power.buttons.logout.icon_background": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.updates.text": "#21202e",
|
"theme.bar.buttons.modules.updates.text": "#21202e",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.icon": "#1f1d2e",
|
"theme.bar.menus.menu.power.buttons.sleep.icon": "#1f1d2e",
|
||||||
"theme.bar.buttons.bluetooth.icon_background": "#89dbeb",
|
"theme.bar.buttons.bluetooth.icon_background": "#89dbeb",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.background": "#21202e",
|
"theme.bar.menus.menu.power.buttons.restart.background": "#21202e",
|
||||||
"theme.bar.buttons.modules.updates.icon": "#21202e",
|
"theme.bar.buttons.modules.updates.icon": "#21202e",
|
||||||
"theme.bar.buttons.modules.cpu.text": "#21202e",
|
"theme.bar.buttons.modules.cpu.text": "#21202e",
|
||||||
"theme.bar.buttons.modules.netstat.icon_background": "#9ccfd8",
|
"theme.bar.buttons.modules.netstat.icon_background": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.kbLayout.text": "#21202e",
|
"theme.bar.buttons.modules.kbLayout.text": "#21202e",
|
||||||
"theme.bar.buttons.notifications.icon_background": "#c4a7e7",
|
"theme.bar.buttons.notifications.icon_background": "#c4a7e7",
|
||||||
"theme.bar.buttons.modules.power.border": "#eb6f92",
|
"theme.bar.buttons.modules.power.border": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.weather.border": "#c4a7e7",
|
"theme.bar.buttons.modules.weather.border": "#c4a7e7",
|
||||||
"theme.bar.buttons.modules.updates.border": "#30738f",
|
"theme.bar.buttons.modules.updates.border": "#30738f",
|
||||||
"theme.bar.buttons.modules.kbLayout.border": "#9ccfd8",
|
"theme.bar.buttons.modules.kbLayout.border": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.netstat.border": "#9ccfd8",
|
"theme.bar.buttons.modules.netstat.border": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.storage.border": "#eb6f92",
|
"theme.bar.buttons.modules.storage.border": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.cpu.border": "#eb6f92",
|
"theme.bar.buttons.modules.cpu.border": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.ram.border": "#f6c177",
|
"theme.bar.buttons.modules.ram.border": "#f6c177",
|
||||||
"theme.bar.buttons.notifications.border": "#c4a7e7",
|
"theme.bar.buttons.notifications.border": "#c4a7e7",
|
||||||
"theme.bar.buttons.clock.border": "#c4a7e7",
|
"theme.bar.buttons.clock.border": "#c4a7e7",
|
||||||
"theme.bar.buttons.battery.border": "#f6c177",
|
"theme.bar.buttons.battery.border": "#f6c177",
|
||||||
"theme.bar.buttons.systray.border": "#26233a",
|
"theme.bar.buttons.systray.border": "#26233a",
|
||||||
"theme.bar.buttons.bluetooth.border": "#9ccfd8",
|
"theme.bar.buttons.bluetooth.border": "#9ccfd8",
|
||||||
"theme.bar.buttons.network.border": "#c4a7e7",
|
"theme.bar.buttons.network.border": "#c4a7e7",
|
||||||
"theme.bar.buttons.volume.border": "#eb6f92",
|
"theme.bar.buttons.volume.border": "#eb6f92",
|
||||||
"theme.bar.buttons.media.border": "#c4a7e7",
|
"theme.bar.buttons.media.border": "#c4a7e7",
|
||||||
"theme.bar.buttons.windowtitle.border": "#c4a7e7",
|
"theme.bar.buttons.windowtitle.border": "#c4a7e7",
|
||||||
"theme.bar.buttons.workspaces.border": "#1f1d2e",
|
"theme.bar.buttons.workspaces.border": "#1f1d2e",
|
||||||
"theme.bar.buttons.dashboard.border": "#f6c177",
|
"theme.bar.buttons.dashboard.border": "#f6c177",
|
||||||
"theme.bar.buttons.modules.submap.background": "#9ccfd8",
|
"theme.bar.buttons.modules.submap.background": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.submap.text": "#21202e",
|
"theme.bar.buttons.modules.submap.text": "#21202e",
|
||||||
"theme.bar.buttons.modules.submap.border": "#9ccfd8",
|
"theme.bar.buttons.modules.submap.border": "#9ccfd8",
|
||||||
"theme.bar.buttons.modules.submap.icon": "#21202e",
|
"theme.bar.buttons.modules.submap.icon": "#21202e",
|
||||||
"theme.bar.buttons.modules.submap.icon_background": "#21202e",
|
"theme.bar.buttons.modules.submap.icon_background": "#21202e",
|
||||||
"theme.bar.menus.menu.network.switch.puck": "#26233a",
|
"theme.bar.menus.menu.network.switch.puck": "#26233a",
|
||||||
"theme.bar.menus.menu.network.switch.disabled": "#1f1d2e",
|
"theme.bar.menus.menu.network.switch.disabled": "#1f1d2e",
|
||||||
"theme.bar.menus.menu.network.switch.enabled": "#c4a7e7",
|
"theme.bar.menus.menu.network.switch.enabled": "#c4a7e7",
|
||||||
"theme.bar.buttons.systray.customIcon": "#e0def4",
|
"theme.bar.buttons.systray.customIcon": "#e0def4",
|
||||||
"theme.bar.border.color": "#c4a7e7",
|
"theme.bar.border.color": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#e0def4",
|
"theme.bar.menus.menu.media.timestamp": "#e0def4",
|
||||||
"theme.bar.buttons.borderColor": "#c4a7e7",
|
"theme.bar.buttons.borderColor": "#c4a7e7",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon": "#21202e",
|
"theme.bar.buttons.modules.hyprsunset.icon": "#21202e",
|
||||||
"theme.bar.buttons.modules.hyprsunset.background": "#eb6f92",
|
"theme.bar.buttons.modules.hyprsunset.background": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#eb6f92",
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#21202e",
|
"theme.bar.buttons.modules.hyprsunset.text": "#21202e",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#eb6f92",
|
"theme.bar.buttons.modules.hyprsunset.border": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.hypridle.icon": "#21202e",
|
"theme.bar.buttons.modules.hypridle.icon": "#21202e",
|
||||||
"theme.bar.buttons.modules.hypridle.background": "#eb6f92",
|
"theme.bar.buttons.modules.hypridle.background": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.hypridle.icon_background": "#eb6f92",
|
"theme.bar.buttons.modules.hypridle.icon_background": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.hypridle.text": "#21202e",
|
"theme.bar.buttons.modules.hypridle.text": "#21202e",
|
||||||
"theme.bar.buttons.modules.hypridle.border": "#eb6f92"
|
"theme.bar.buttons.modules.hypridle.border": "#eb6f92",
|
||||||
|
"theme.bar.menus.menu.network.scroller.color": "#c4a7e7",
|
||||||
|
"theme.bar.menus.menu.bluetooth.scroller.color": "#9ccfd8"
|
||||||
}
|
}
|
||||||
@@ -354,5 +354,7 @@
|
|||||||
"theme.bar.buttons.modules.hypridle.background": "#272a3d",
|
"theme.bar.buttons.modules.hypridle.background": "#272a3d",
|
||||||
"theme.bar.buttons.modules.hypridle.icon_background": "#f7768e",
|
"theme.bar.buttons.modules.hypridle.icon_background": "#f7768e",
|
||||||
"theme.bar.buttons.modules.hypridle.text": "#f7768e",
|
"theme.bar.buttons.modules.hypridle.text": "#f7768e",
|
||||||
"theme.bar.buttons.modules.hypridle.border": "#f7768e"
|
"theme.bar.buttons.modules.hypridle.border": "#f7768e",
|
||||||
|
"theme.bar.menus.menu.network.scroller.color": "#bb9af7",
|
||||||
|
"theme.bar.menus.menu.bluetooth.scroller.color": "#7dcfff"
|
||||||
}
|
}
|
||||||
@@ -354,5 +354,7 @@
|
|||||||
"theme.bar.buttons.modules.hypridle.background": "#272a3d",
|
"theme.bar.buttons.modules.hypridle.background": "#272a3d",
|
||||||
"theme.bar.buttons.modules.hypridle.icon_background": "#f7768e",
|
"theme.bar.buttons.modules.hypridle.icon_background": "#f7768e",
|
||||||
"theme.bar.buttons.modules.hypridle.text": "#f7768e",
|
"theme.bar.buttons.modules.hypridle.text": "#f7768e",
|
||||||
"theme.bar.buttons.modules.hypridle.border": "#f7768e"
|
"theme.bar.buttons.modules.hypridle.border": "#f7768e",
|
||||||
|
"theme.bar.menus.menu.network.scroller.color": "#bb9af7",
|
||||||
|
"theme.bar.menus.menu.bluetooth.scroller.color": "#7dcfff"
|
||||||
}
|
}
|
||||||
@@ -354,5 +354,7 @@
|
|||||||
"theme.bar.buttons.modules.hypridle.background": "#f7768e",
|
"theme.bar.buttons.modules.hypridle.background": "#f7768e",
|
||||||
"theme.bar.buttons.modules.hypridle.icon_background": "#f7768e",
|
"theme.bar.buttons.modules.hypridle.icon_background": "#f7768e",
|
||||||
"theme.bar.buttons.modules.hypridle.text": "#272a3d",
|
"theme.bar.buttons.modules.hypridle.text": "#272a3d",
|
||||||
"theme.bar.buttons.modules.hypridle.border": "#f7768e"
|
"theme.bar.buttons.modules.hypridle.border": "#f7768e",
|
||||||
|
"theme.bar.menus.menu.network.scroller.color": "#bb9af7",
|
||||||
|
"theme.bar.menus.menu.bluetooth.scroller.color": "#7dcfff"
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user