update element configs, enable themes
This commit is contained in:
parent
b8d3156b53
commit
8a85fc43a6
5 changed files with 2162 additions and 17 deletions
|
|
@ -1,12 +1,27 @@
|
|||
import fs from 'node:fs';
|
||||
// Read base config
|
||||
const baseConfig = JSON.parse(fs.readFileSync('./config.json', 'utf8'));
|
||||
let baseConfig = JSON.parse(fs.readFileSync('./config.json', 'utf8'));
|
||||
// Server list
|
||||
const servers = JSON.parse(fs.readFileSync('./servers.json', 'utf8'));
|
||||
// Default server config
|
||||
const defaultServerConfig = "element.ellis.link";
|
||||
const defaultConfigPath = './public/config.json';
|
||||
|
||||
// raim.ist config
|
||||
const raimConfig = await fetch('https://riot.raim.ist/config.json').then(res => res.json());
|
||||
|
||||
baseConfig = {
|
||||
...baseConfig,
|
||||
enable_presence_by_hs_url: {
|
||||
...raimConfig.enable_presence_by_hs_url,
|
||||
...baseConfig.enable_presence_by_hs_url,
|
||||
},
|
||||
setting_defaults: {
|
||||
...baseConfig.setting_defaults,
|
||||
custom_themes: raimConfig.setting_defaults.custom_themes,
|
||||
},
|
||||
|
||||
};
|
||||
// biome-ignore lint/complexity/noForEach: <explanation>
|
||||
Object.keys(servers).forEach(server => {
|
||||
// Get server config
|
||||
|
|
|
|||
|
|
@ -60,7 +60,10 @@
|
|||
"feature_element_call_video_rooms": true,
|
||||
"feature_latex_maths": true,
|
||||
"feature_bridge_state": true,
|
||||
"feature_render_reaction_images": true
|
||||
"feature_render_reaction_images": true,
|
||||
"feature_custom_themes": true,
|
||||
"feature_hidden_read_receipts": true,
|
||||
"feature_mjolnir": true
|
||||
},
|
||||
"setting_defaults": {
|
||||
"RustCrypto.staged_rollout_percent": 100,
|
||||
|
|
|
|||
|
|
@ -1,5 +1,4 @@
|
|||
{
|
||||
"default_server_name": "ellis.link",
|
||||
"default_server_config": {
|
||||
"m.homeserver": {
|
||||
"base_url": "https://matrix.ellis.link/"
|
||||
|
|
@ -39,8 +38,10 @@
|
|||
]
|
||||
},
|
||||
"enable_presence_by_hs_url": {
|
||||
"https://matrix.org": false,
|
||||
"https://matrix-client.matrix.org": false,
|
||||
"https://matrix.org": false,
|
||||
"https://matrix.raim.ist": false,
|
||||
"https://mozilla.modular.im": false,
|
||||
"https://matrix.ellis.link": true,
|
||||
"https://ellis.link": true,
|
||||
"https://matrix.pissing.dev": true,
|
||||
|
|
@ -63,14 +64,722 @@
|
|||
"feature_element_call_video_rooms": true,
|
||||
"feature_latex_maths": true,
|
||||
"feature_bridge_state": true,
|
||||
"feature_render_reaction_images": true
|
||||
"feature_render_reaction_images": true,
|
||||
"feature_custom_themes": true,
|
||||
"feature_hidden_read_receipts": true,
|
||||
"feature_mjolnir": true
|
||||
},
|
||||
"setting_defaults": {
|
||||
"RustCrypto.staged_rollout_percent": 100,
|
||||
"Registration.mobileRegistrationHelper": true
|
||||
"Registration.mobileRegistrationHelper": true,
|
||||
"custom_themes": [
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#b4befe",
|
||||
"alert": "#e5c890",
|
||||
"avatar-background-colors": [
|
||||
"#89b4fa",
|
||||
"#cba6f7",
|
||||
"#a6e3a1"
|
||||
],
|
||||
"focus-bg-color": "#585b70",
|
||||
"menu-selected-color": "#45475a",
|
||||
"other-user-pill-bg-color": "#89dceb",
|
||||
"primary-color": "#b4befe",
|
||||
"reaction-row-button-selected-bg-color": "#585b70",
|
||||
"room-highlight-color": "#89dceb",
|
||||
"roomlist-background-color": "#181825",
|
||||
"roomlist-highlights-color": "#45475a",
|
||||
"roomlist-separator-color": "#7f849c",
|
||||
"roomlist-text-color": "#cdd6f4",
|
||||
"roomlist-text-secondary-color": "#313234",
|
||||
"secondary-content": "#cdd6f4",
|
||||
"sidebar-color": "#11111b",
|
||||
"tertiary-content": "#cdd6f4",
|
||||
"timeline-background-color": "#1e1e2e",
|
||||
"timeline-highlights-color": "#181825",
|
||||
"timeline-text-color": "#cdd6f4",
|
||||
"timeline-text-secondary-color": "#a6adc8",
|
||||
"togglesw-off-color": "#9399b2",
|
||||
"username-colors": [
|
||||
"#cba6f7",
|
||||
"#eba0ac",
|
||||
"#fab387",
|
||||
"#a6e3a1",
|
||||
"#94e2d5",
|
||||
"#89dceb",
|
||||
"#74c7ec",
|
||||
"#b4befe"
|
||||
],
|
||||
"warning-color": "#f38ba8"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Catppuccin Mocha"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#babbf1",
|
||||
"alert": "#faa81a",
|
||||
"avatar-background-colors": [
|
||||
"#8caaee",
|
||||
"#ca9ee6",
|
||||
"#a6d189"
|
||||
],
|
||||
"focus-bg-color": "#626880",
|
||||
"menu-selected-color": "#51576d",
|
||||
"other-user-pill-bg-color": "#99d1db",
|
||||
"primary-color": "#babbf1",
|
||||
"reaction-row-button-selected-bg-color": "#51576d",
|
||||
"room-highlight-color": "#99d1db",
|
||||
"roomlist-background-color": "#292c3c",
|
||||
"roomlist-highlights-color": "#51576d",
|
||||
"roomlist-separator-color": "#838ba7",
|
||||
"roomlist-text-color": "#c6d0f5",
|
||||
"roomlist-text-secondary-color": "#303446",
|
||||
"secondary-content": "#c6d0f5",
|
||||
"sidebar-color": "#232634",
|
||||
"tertiary-content": "#c6d0f5",
|
||||
"timeline-background-color": "#303446",
|
||||
"timeline-highlights-color": "#292c3c",
|
||||
"timeline-text-color": "#c6d0f5",
|
||||
"timeline-text-secondary-color": "#a5adce",
|
||||
"togglesw-off-color": "#949cbb",
|
||||
"username-colors": [
|
||||
"#ca9ee6",
|
||||
"#ea999c",
|
||||
"#ef9f76",
|
||||
"#a6d189",
|
||||
"#81c8be",
|
||||
"#99d1db",
|
||||
"#85c1dc",
|
||||
"#babbf1"
|
||||
],
|
||||
"warning-color": "#e78284"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Catppuccin Frappe"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#b7bdf8",
|
||||
"alert": "#eed49f",
|
||||
"avatar-background-colors": [
|
||||
"#8aadf4",
|
||||
"#c6a0f6",
|
||||
"#a6da95"
|
||||
],
|
||||
"focus-bg-color": "#5b6078",
|
||||
"menu-selected-color": "#494d64",
|
||||
"other-user-pill-bg-color": "#91d7e3",
|
||||
"primary-color": "#b7bdf8",
|
||||
"reaction-row-button-selected-bg-color": "#494d64",
|
||||
"room-highlight-color": "#91d7e3",
|
||||
"roomlist-background-color": "#1e2030",
|
||||
"roomlist-highlights-color": "#494d64",
|
||||
"roomlist-separator-color": "#8087a2",
|
||||
"roomlist-text-color": "#cad3f5",
|
||||
"roomlist-text-secondary-color": "#24273a",
|
||||
"secondary-content": "#cad3f5",
|
||||
"sidebar-color": "#181926",
|
||||
"tertiary-content": "#cad3f5",
|
||||
"timeline-background-color": "#24273a",
|
||||
"timeline-highlights-color": "#1e2030",
|
||||
"timeline-text-color": "#cad3f5",
|
||||
"timeline-text-secondary-color": "#a5adcb",
|
||||
"togglesw-off-color": "#939ab7",
|
||||
"username-colors": [
|
||||
"#c6a0f6",
|
||||
"#ee99a0",
|
||||
"#f5a97f",
|
||||
"#a6da95",
|
||||
"#8bd5ca",
|
||||
"#91d7e3",
|
||||
"#7dc4e4",
|
||||
"#b7bdf8"
|
||||
],
|
||||
"warning-color": "#ed8796"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Catppuccin Macchiato"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#7287fd",
|
||||
"alert": "#df8e1d",
|
||||
"avatar-background-colors": [
|
||||
"#1e66f5",
|
||||
"#8839ef",
|
||||
"#40a02b"
|
||||
],
|
||||
"focus-bg-color": "#acb0be",
|
||||
"menu-selected-color": "#bcc0cc",
|
||||
"other-user-pill-bg-color": "#04a5e5",
|
||||
"primary-color": "#7287fd",
|
||||
"reaction-row-button-selected-bg-color": "#bcc0cc",
|
||||
"room-highlight-color": "#04a5e5",
|
||||
"roomlist-background-color": "#e6e9ef",
|
||||
"roomlist-highlights-color": "#bcc0cc",
|
||||
"roomlist-separator-color": "#8c8fa1",
|
||||
"roomlist-text-color": "#4c4f69",
|
||||
"roomlist-text-secondary-color": "#4c4f69",
|
||||
"secondary-content": "#4c4f69",
|
||||
"sidebar-color": "#dce0e8",
|
||||
"tertiary-content": "#4c4f69",
|
||||
"timeline-background-color": "#eff1f5",
|
||||
"timeline-highlights-color": "#bcc0cc",
|
||||
"timeline-text-color": "#4c4f69",
|
||||
"timeline-text-secondary-color": "#6c6f85",
|
||||
"togglesw-off-color": "#7c7f93",
|
||||
"username-colors": [
|
||||
"#8839ef",
|
||||
"#e64553",
|
||||
"#fe640b",
|
||||
"#40a02b",
|
||||
"#179299",
|
||||
"#04a5e5",
|
||||
"#209fb5",
|
||||
"#7287fd"
|
||||
],
|
||||
"warning-color": "#d20f39"
|
||||
},
|
||||
"is_dark": false,
|
||||
"name": "Catppuccin Latte"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#D9BC00",
|
||||
"primary-color": "#FFDD00",
|
||||
"reaction-row-button-selected-bg-color": "#FFEC70",
|
||||
"roomlist-background-color": "#011223",
|
||||
"roomlist-highlights-color": "#1E354A",
|
||||
"roomlist-separator-color": "#05192D",
|
||||
"roomlist-text-color": "#FFEC70",
|
||||
"roomlist-text-secondary-color": "#FFF3A4",
|
||||
"secondary-content": "#FFF3A4",
|
||||
"sidebar-color": "#020F1B",
|
||||
"tertiary-content": "#FFF3A4",
|
||||
"timeline-background-color": "#05192D",
|
||||
"timeline-highlights-color": "#011223",
|
||||
"timeline-text-color": "#FFF3A4",
|
||||
"timeline-text-secondary-color": "#A79000",
|
||||
"warning-color": "#FBC403"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Luxury Dark theme"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent": "#747ff4",
|
||||
"accent-color": "#747ff4",
|
||||
"alert": "#faa81ad9",
|
||||
"focus-bg-color": "#4752c4",
|
||||
"menu-selected-color": "#4752c4",
|
||||
"other-user-pill-bg-color": "#4752c4",
|
||||
"primary-color": "#00aff4",
|
||||
"reaction-row-button-selected-bg-color": "#4752c4",
|
||||
"room-highlight-color": "#4752c4",
|
||||
"roomlist-background-color": "#2f3136",
|
||||
"roomlist-highlights-color": "#4f545c52",
|
||||
"roomlist-separator-color": "#40444b",
|
||||
"roomlist-text-color": "#dcddde",
|
||||
"roomlist-text-secondary-color": "#8e9297",
|
||||
"secondary-content": "#dcddde",
|
||||
"sidebar-color": "#202225",
|
||||
"tertiary-content": "#dcddde",
|
||||
"timeline-background-color": "#36393f",
|
||||
"timeline-highlights-color": "#04040512",
|
||||
"timeline-text-color": "#dcddde",
|
||||
"timeline-text-secondary-color": "#b9bbbe",
|
||||
"togglesw-off-color": "#72767d",
|
||||
"warning-color": "#faa81ad9"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Discord Dark"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent": "#747ff4",
|
||||
"accent-color": "#747ff4",
|
||||
"alert": "#faa81ad9",
|
||||
"focus-bg-color": "#4752c4",
|
||||
"menu-selected-color": "#4752c4",
|
||||
"other-user-pill-bg-color": "#4752c4",
|
||||
"primary-color": "#00aff4",
|
||||
"reaction-row-button-selected-bg-color": "#4752c4",
|
||||
"room-highlight-color": "#4752c4",
|
||||
"roomlist-background-color": "#191919",
|
||||
"roomlist-highlights-color": "#4f545c52",
|
||||
"roomlist-separator-color": "#40444b",
|
||||
"roomlist-text-color": "#dcddde",
|
||||
"roomlist-text-secondary-color": "#8e9297",
|
||||
"secondary-content": "#dcddde",
|
||||
"sidebar-color": "#000000",
|
||||
"tertiary-content": "#dcddde",
|
||||
"timeline-background-color": "#000000",
|
||||
"timeline-highlights-color": "#04040512",
|
||||
"timeline-text-color": "#dcddde",
|
||||
"timeline-text-secondary-color": "#b9bbbe",
|
||||
"togglesw-off-color": "#72767d",
|
||||
"warning-color": "#faa81ad9"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Discord Black"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#a7c080",
|
||||
"primary-color": "#a7c080",
|
||||
"reaction-row-button-selected-bg-color": "#4b565c",
|
||||
"roomlist-background-color": "#2f383e",
|
||||
"roomlist-highlights-color": "#4b565c",
|
||||
"roomlist-separator-color": "#4b565c",
|
||||
"roomlist-text-color": "#d3c6aa",
|
||||
"roomlist-text-secondary-color": "#d3c6aa",
|
||||
"secondary-content": "#d3c6aa",
|
||||
"sidebar-color": "#323d43",
|
||||
"tertiary-content": "#d3c6aa",
|
||||
"timeline-background-color": "#2b3339",
|
||||
"timeline-highlights-color": "#4b565c",
|
||||
"timeline-text-color": "#d3c6aa",
|
||||
"timeline-text-secondary-color": "#a7c080",
|
||||
"warning-color": "#e67e80"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Everforest dark hard"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#bd93f9",
|
||||
"primary-color": "#bd93f9",
|
||||
"reaction-row-button-selected-bg-color": "#b9bbbe",
|
||||
"roomlist-background-color": "#1e1f29",
|
||||
"roomlist-highlights-color": "#00000030",
|
||||
"roomlist-separator-color": "#00000000",
|
||||
"roomlist-text-color": "#eeeeee",
|
||||
"roomlist-text-secondary-color": "#eeeeee",
|
||||
"secondary-content": "#eeeeee",
|
||||
"sidebar-color": "#1e1f29",
|
||||
"tertiary-content": "#eeeeee",
|
||||
"timeline-background-color": "#1e1f29",
|
||||
"timeline-highlights-color": "#00000030",
|
||||
"timeline-text-color": "#eeeeee",
|
||||
"timeline-text-secondary-color": "#dddddd",
|
||||
"warning-color": "#bd93f9"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Dracula Flat"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#bd93f9",
|
||||
"primary-color": "#bd93f9",
|
||||
"reaction-row-button-selected-bg-color": "#b9bbbe",
|
||||
"roomlist-background-color": "#1e1f29",
|
||||
"roomlist-highlights-color": "#00000030",
|
||||
"roomlist-separator-color": "#4d4d4d90",
|
||||
"roomlist-text-color": "#eeeeee",
|
||||
"roomlist-text-secondary-color": "#eeeeee",
|
||||
"secondary-content": "#eeeeee",
|
||||
"sidebar-color": "#1e1f29",
|
||||
"tertiary-content": "#eeeeee",
|
||||
"timeline-background-color": "#282A36",
|
||||
"timeline-highlights-color": "#00000030",
|
||||
"timeline-text-color": "#eeeeee",
|
||||
"timeline-text-secondary-color": "#dddddd",
|
||||
"warning-color": "#bd93f9"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Dracula"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#b58900",
|
||||
"primary-color": "#268bd2",
|
||||
"reaction-row-button-selected-bg-color": "#268bd2",
|
||||
"roomlist-background-color": "#073642",
|
||||
"roomlist-highlights-color": "#586e75",
|
||||
"roomlist-text-color": "#839496",
|
||||
"roomlist-text-secondary-color": "#93a1a1",
|
||||
"secondary-content": "#839496",
|
||||
"sidebar-color": "#002b36",
|
||||
"tertiary-content": "#839496",
|
||||
"timeline-background-color": "#002b36",
|
||||
"timeline-highlights-color": "#073642",
|
||||
"timeline-text-color": "#839496",
|
||||
"timeline-text-secondary-color": "#586e75",
|
||||
"warning-color": "#dc322f"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Solarized Dark"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#b58900",
|
||||
"primary-color": "#268bd2",
|
||||
"reaction-row-button-selected-bg-color": "#268bd2",
|
||||
"roomlist-background-color": "#eee8d5",
|
||||
"roomlist-highlights-color": "#93a1a1",
|
||||
"roomlist-text-color": "#657b83",
|
||||
"roomlist-text-secondary-color": "#586e75",
|
||||
"secondary-content": "#657b83",
|
||||
"sidebar-color": "#fdf6e3",
|
||||
"tertiary-content": "#657b83",
|
||||
"timeline-background-color": "#fdf6e3",
|
||||
"timeline-highlights-color": "#eee8d5",
|
||||
"timeline-text-color": "#657b83",
|
||||
"timeline-text-secondary-color": "#93a1a1",
|
||||
"warning-color": "#dc322f"
|
||||
},
|
||||
"is_dark": false,
|
||||
"name": "Solarized Light"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#73ba25",
|
||||
"primary-color": "#35b9ab",
|
||||
"reaction-row-button-selected-bg-color": "#bf616a",
|
||||
"roomlist-background-color": "#4a4a4a",
|
||||
"roomlist-highlights-color": "#2a2a2a",
|
||||
"roomlist-separator-color": "#3a3a3a",
|
||||
"roomlist-text-color": "#ffffff",
|
||||
"roomlist-text-secondary-color": "#dddddd",
|
||||
"secondary-content": "#eeeeee",
|
||||
"sidebar-color": "#2a2a2a",
|
||||
"tertiary-content": "#eeeeee",
|
||||
"timeline-background-color": "#3a3a3a",
|
||||
"timeline-highlights-color": "#bf616a",
|
||||
"timeline-text-color": "#eeeeee",
|
||||
"timeline-text-secondary-color": "#6da741",
|
||||
"warning-color": "#bf616a"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Geeko dark theme"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#41c7b9",
|
||||
"primary-color": "#4695f7",
|
||||
"reaction-row-button-selected-bg-color": "#4695f7",
|
||||
"roomlist-background-color": "#184956",
|
||||
"roomlist-highlights-color": "#2d5b69",
|
||||
"roomlist-separator-color": "#2d5b69",
|
||||
"roomlist-text-color": "#dbb32d",
|
||||
"roomlist-text-secondary-color": "#FFFFFF",
|
||||
"secondary-content": "#FFFFFF",
|
||||
"sidebar-color": "#103c48",
|
||||
"tertiary-content": "#FFFFFF",
|
||||
"timeline-background-color": "#2d5b69",
|
||||
"timeline-highlights-color": "#184956",
|
||||
"timeline-text-color": "#FFFFFF",
|
||||
"timeline-text-secondary-color": "#72898f",
|
||||
"warning-color": "#fa5750"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Selenized dark theme"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#ad8900",
|
||||
"primary-color": "#009c8f",
|
||||
"reaction-row-button-selected-bg-color": "#4695f7",
|
||||
"roomlist-background-color": "#ece3cc",
|
||||
"roomlist-highlights-color": "#fbf3db",
|
||||
"roomlist-separator-color": "#fbf3db",
|
||||
"roomlist-text-color": "#c25d1e",
|
||||
"roomlist-text-secondary-color": "#000000",
|
||||
"secondary-content": "#000000",
|
||||
"sidebar-color": "#d5cdb6",
|
||||
"tertiary-content": "#000000",
|
||||
"timeline-background-color": "#fbf3db",
|
||||
"timeline-highlights-color": "#ece3cc",
|
||||
"timeline-text-color": "#000000",
|
||||
"timeline-text-secondary-color": "#777777",
|
||||
"warning-color": "#d2212d"
|
||||
},
|
||||
"is_dark": false,
|
||||
"name": "Selenized light theme"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#70b433",
|
||||
"primary-color": "#4695f7",
|
||||
"reaction-row-button-selected-bg-color": "#4695f7",
|
||||
"roomlist-background-color": "#252525",
|
||||
"roomlist-highlights-color": "#3b3b3b",
|
||||
"roomlist-separator-color": "#121212",
|
||||
"roomlist-text-color": "#ffffff",
|
||||
"roomlist-text-secondary-color": "#b9b9b9",
|
||||
"secondary-content": "#FFFFFF",
|
||||
"sidebar-color": "#181818",
|
||||
"tertiary-content": "#FFFFFF",
|
||||
"timeline-background-color": "#181818",
|
||||
"timeline-highlights-color": "#252525",
|
||||
"timeline-text-color": "#FFFFFF",
|
||||
"timeline-text-secondary-color": "#777777",
|
||||
"warning-color": "#ed4a46"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Selenized black theme"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#a3be8c",
|
||||
"primary-color": "#5e81ac",
|
||||
"reaction-row-button-selected-bg-color": "#bf616a",
|
||||
"roomlist-background-color": "#e5e9f0",
|
||||
"roomlist-highlights-color": "#eceff4",
|
||||
"roomlist-separator-color": "#eceff4",
|
||||
"roomlist-text-color": "#d08770",
|
||||
"roomlist-text-secondary-color": "#3b4252",
|
||||
"secondary-content": "#2e3440",
|
||||
"sidebar-color": "#d8dee9",
|
||||
"tertiary-content": "#2e3440",
|
||||
"timeline-background-color": "#eceff4",
|
||||
"timeline-highlights-color": "#e5e9f0",
|
||||
"timeline-text-color": "#2e3440",
|
||||
"timeline-text-secondary-color": "#3b4252",
|
||||
"warning-color": "#bf616a"
|
||||
},
|
||||
"is_dark": false,
|
||||
"name": "Nord light theme"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#a3be8c",
|
||||
"primary-color": "#88c0d0",
|
||||
"reaction-row-button-selected-bg-color": "#bf616a",
|
||||
"roomlist-background-color": "#3b4252",
|
||||
"roomlist-highlights-color": "#2e3440",
|
||||
"roomlist-separator-color": "#434c5e",
|
||||
"roomlist-text-color": "#ebcb8b",
|
||||
"roomlist-text-secondary-color": "#e5e9f0",
|
||||
"secondary-content": "#eceff4",
|
||||
"sidebar-color": "#2e3440",
|
||||
"tertiary-content": "#eceff4",
|
||||
"timeline-background-color": "#434c5e",
|
||||
"timeline-highlights-color": "#3b4252",
|
||||
"timeline-text-color": "#eceff4",
|
||||
"timeline-text-secondary-color": "#81a1c1",
|
||||
"warning-color": "#bf616a"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Nord dark theme"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent": "#d6deeb",
|
||||
"accent-color": "#122d42",
|
||||
"alert": "#b39554",
|
||||
"focus-bg-color": "#234d708c",
|
||||
"menu-selected-color": "#234d708c",
|
||||
"other-user-pill-bg-color": "#234d708c",
|
||||
"primary-color": "#122d42",
|
||||
"reaction-row-button-selected-bg-color": "#7e57c25a",
|
||||
"room-highlight-color": "#234d708c",
|
||||
"roomlist-background-color": "#011627",
|
||||
"roomlist-highlights-color": "#1085bb5d",
|
||||
"roomlist-separator-color": "#5f7e97",
|
||||
"roomlist-text-color": "#d6deeb",
|
||||
"roomlist-text-secondary-color": "#5f7e97",
|
||||
"secondary-content": "#5f7e97",
|
||||
"sidebar-color": "#011627",
|
||||
"tertiary-content": "#5f7e97",
|
||||
"timeline-background-color": "#011627",
|
||||
"timeline-highlights-color": "#5F7E9779",
|
||||
"timeline-text-color": "#5f7e97",
|
||||
"timeline-text-secondary-color": "#d6deeb",
|
||||
"togglesw-off-color": "#010b14",
|
||||
"warning-color": "#b39554"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Night Owl"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#25863c",
|
||||
"primary-color": "#4695f7",
|
||||
"reaction-row-button-selected-bg-color": "#132338",
|
||||
"roomlist-background-color": "#0d1117",
|
||||
"roomlist-highlights-color": "#161b22",
|
||||
"roomlist-separator-color": "#21262d",
|
||||
"roomlist-text-color": "#c9d1d9",
|
||||
"roomlist-text-secondary-color": "#b9b9b9",
|
||||
"secondary-content": "#c9d1d9",
|
||||
"sidebar-color": "#161b22",
|
||||
"tertiary-content": "#c9d1d9",
|
||||
"timeline-background-color": "#0d1117",
|
||||
"timeline-highlights-color": "#252525",
|
||||
"timeline-text-color": "#c9d1d9",
|
||||
"timeline-text-secondary-color": "#8b949e",
|
||||
"username-colors": [
|
||||
"#f85149",
|
||||
"#d29922",
|
||||
"#42b958",
|
||||
"#58a6fc",
|
||||
"#a271f3",
|
||||
"#f9524a",
|
||||
"#43ba59",
|
||||
"#a372f4"
|
||||
],
|
||||
"warning-color": "#ed4a46"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Covalence"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent": "#fd6883",
|
||||
"accent-color": "#fff1f3",
|
||||
"alert": "#fd6883",
|
||||
"avatar-background-colors": [
|
||||
"#458588",
|
||||
"#b16286",
|
||||
"#adda78"
|
||||
],
|
||||
"icon-button-color": "#f9cc6c",
|
||||
"menu-selected-color": "#f9cc6c",
|
||||
"primary-color": "#f38d70",
|
||||
"quinary-content": "#221f22",
|
||||
"reaction-row-button-selected-bg-color": "#adda78",
|
||||
"roomlist-background-color": "#221f22",
|
||||
"roomlist-highlights-color": "#3b394a",
|
||||
"roomlist-separator-color": "#2D2a2e",
|
||||
"roomlist-text-color": "#fff1ff",
|
||||
"roomlist-text-secondary-color": "#f9cc6c",
|
||||
"secondary-content": "#fff1f3",
|
||||
"sidebar-color": "#2d2a2e",
|
||||
"tertiary-content": "#fff1f3",
|
||||
"timeline-background-color": "#2D2a2e",
|
||||
"timeline-highlights-color": "#00000030",
|
||||
"timeline-text-color": "#fff1ff",
|
||||
"timeline-text-secondary-color": "#fff1ff",
|
||||
"username-colors": [
|
||||
"#cc241d",
|
||||
"#689d6a",
|
||||
"#f9cc6c",
|
||||
"#b16286",
|
||||
"#85dacc",
|
||||
"#adda78",
|
||||
"#a89984",
|
||||
"#f38d70"
|
||||
],
|
||||
"warning-color": "#fd6883"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Monokai Pro"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent": "#689d6a",
|
||||
"accent-color": "#bd93f9",
|
||||
"alert": "#cc241d",
|
||||
"avatar-background-colors": [
|
||||
"#458588",
|
||||
"#b16286",
|
||||
"#689d6a"
|
||||
],
|
||||
"icon-button-color": "#928374",
|
||||
"menu-selected-color": "#504945",
|
||||
"primary-color": "#fe8019",
|
||||
"quinary-content": "#504945",
|
||||
"reaction-row-button-selected-bg-color": "#689d6a",
|
||||
"roomlist-background-color": "#1d2021",
|
||||
"roomlist-highlights-color": "#00000030",
|
||||
"roomlist-separator-color": "#4d4d4d90",
|
||||
"roomlist-text-color": "#a89984",
|
||||
"roomlist-text-secondary-color": "#00ff00",
|
||||
"secondary-content": "#928374",
|
||||
"sidebar-color": "#282828",
|
||||
"tertiary-content": "#928374",
|
||||
"timeline-background-color": "#282828",
|
||||
"timeline-highlights-color": "#00000030",
|
||||
"timeline-text-color": "#ebdbb2",
|
||||
"timeline-text-secondary-color": "#a89984",
|
||||
"username-colors": [
|
||||
"#cc241d",
|
||||
"#98971a",
|
||||
"#d79921",
|
||||
"#458588",
|
||||
"#b16286",
|
||||
"#689d6a",
|
||||
"#a89984",
|
||||
"#d65d0e"
|
||||
],
|
||||
"warning-color": "#fb4934"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Gruvbox Dark"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent": "#689d6a",
|
||||
"accent-color": "#cc241d",
|
||||
"alert": "#cc241d",
|
||||
"avatar-background-colors": [
|
||||
"#458588",
|
||||
"#b16286",
|
||||
"#689d6a"
|
||||
],
|
||||
"icon-button-color": "#928374",
|
||||
"menu-selected-color": "#d5c4a1",
|
||||
"primary-color": "#af3a03",
|
||||
"quinary-content": "#d5c4a1",
|
||||
"reaction-row-button-selected-bg-color": "#689d6a",
|
||||
"roomlist-background-color": "#f9f5d7",
|
||||
"roomlist-highlights-color": "#ebdbb2",
|
||||
"roomlist-separator-color": "#d5c4a1",
|
||||
"roomlist-text-color": "#7c6f64",
|
||||
"roomlist-text-secondary-color": "#504945",
|
||||
"secondary-content": "#928374",
|
||||
"sidebar-color": "#fbf1c7",
|
||||
"system": "#fbf1c7",
|
||||
"tertiary-content": "#928374",
|
||||
"timeline-background-color": "#fbf1c7",
|
||||
"timeline-highlights-color": "#00000030",
|
||||
"timeline-text-color": "#3c3836",
|
||||
"timeline-text-secondary-color": "#7c6f64",
|
||||
"username-colors": [
|
||||
"#cc241d",
|
||||
"#98971a",
|
||||
"#d79921",
|
||||
"#458588",
|
||||
"#b16286",
|
||||
"#689d6a",
|
||||
"#a89984",
|
||||
"#d65d0e"
|
||||
],
|
||||
"warning-color": "#9d0006"
|
||||
},
|
||||
"is_dark": false,
|
||||
"name": "Gruvbox Light"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#cc7b19",
|
||||
"primary-color": "#9F8652",
|
||||
"reaction-row-button-selected-bg-color": "#cc7b19",
|
||||
"roomlist-background-color": "#191919",
|
||||
"roomlist-highlights-color": "#323232",
|
||||
"roomlist-separator-color": "#4c4c4c",
|
||||
"roomlist-text-color": "#cc7b19",
|
||||
"roomlist-text-secondary-color": "#e5e5e5",
|
||||
"secondary-content": "#e5e5e5",
|
||||
"sidebar-color": "#000000",
|
||||
"tertiary-content": "#e5e5e5",
|
||||
"timeline-background-color": "#000000",
|
||||
"timeline-highlights-color": "#212121",
|
||||
"timeline-text-color": "#e5e5e5",
|
||||
"timeline-text-secondary-color": "#b2b2b2",
|
||||
"warning-color": "#f9c003"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "ThomCat black theme"
|
||||
}
|
||||
]
|
||||
},
|
||||
"element_call": {
|
||||
"url": "https://call.element.dev"
|
||||
},
|
||||
"map_style_url": "https://api.maptiler.com/maps/streets/style.json?key=fU3vlMsMn4Jb6dnEIFsx"
|
||||
"map_style_url": "https://api.maptiler.com/maps/streets/style.json?key=fU3vlMsMn4Jb6dnEIFsx",
|
||||
"default_server_name": "ellis.link"
|
||||
}
|
||||
|
|
@ -1,5 +1,4 @@
|
|||
{
|
||||
"default_server_name": "pissing.dev",
|
||||
"default_server_config": {
|
||||
"m.homeserver": {
|
||||
"base_url": "https://matrix.pissing.dev/"
|
||||
|
|
@ -39,8 +38,10 @@
|
|||
]
|
||||
},
|
||||
"enable_presence_by_hs_url": {
|
||||
"https://matrix.org": false,
|
||||
"https://matrix-client.matrix.org": false,
|
||||
"https://matrix.org": false,
|
||||
"https://matrix.raim.ist": false,
|
||||
"https://mozilla.modular.im": false,
|
||||
"https://matrix.ellis.link": true,
|
||||
"https://ellis.link": true,
|
||||
"https://matrix.pissing.dev": true,
|
||||
|
|
@ -63,14 +64,722 @@
|
|||
"feature_element_call_video_rooms": true,
|
||||
"feature_latex_maths": true,
|
||||
"feature_bridge_state": true,
|
||||
"feature_render_reaction_images": true
|
||||
"feature_render_reaction_images": true,
|
||||
"feature_custom_themes": true,
|
||||
"feature_hidden_read_receipts": true,
|
||||
"feature_mjolnir": true
|
||||
},
|
||||
"setting_defaults": {
|
||||
"RustCrypto.staged_rollout_percent": 100,
|
||||
"Registration.mobileRegistrationHelper": true
|
||||
"Registration.mobileRegistrationHelper": true,
|
||||
"custom_themes": [
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#b4befe",
|
||||
"alert": "#e5c890",
|
||||
"avatar-background-colors": [
|
||||
"#89b4fa",
|
||||
"#cba6f7",
|
||||
"#a6e3a1"
|
||||
],
|
||||
"focus-bg-color": "#585b70",
|
||||
"menu-selected-color": "#45475a",
|
||||
"other-user-pill-bg-color": "#89dceb",
|
||||
"primary-color": "#b4befe",
|
||||
"reaction-row-button-selected-bg-color": "#585b70",
|
||||
"room-highlight-color": "#89dceb",
|
||||
"roomlist-background-color": "#181825",
|
||||
"roomlist-highlights-color": "#45475a",
|
||||
"roomlist-separator-color": "#7f849c",
|
||||
"roomlist-text-color": "#cdd6f4",
|
||||
"roomlist-text-secondary-color": "#313234",
|
||||
"secondary-content": "#cdd6f4",
|
||||
"sidebar-color": "#11111b",
|
||||
"tertiary-content": "#cdd6f4",
|
||||
"timeline-background-color": "#1e1e2e",
|
||||
"timeline-highlights-color": "#181825",
|
||||
"timeline-text-color": "#cdd6f4",
|
||||
"timeline-text-secondary-color": "#a6adc8",
|
||||
"togglesw-off-color": "#9399b2",
|
||||
"username-colors": [
|
||||
"#cba6f7",
|
||||
"#eba0ac",
|
||||
"#fab387",
|
||||
"#a6e3a1",
|
||||
"#94e2d5",
|
||||
"#89dceb",
|
||||
"#74c7ec",
|
||||
"#b4befe"
|
||||
],
|
||||
"warning-color": "#f38ba8"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Catppuccin Mocha"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#babbf1",
|
||||
"alert": "#faa81a",
|
||||
"avatar-background-colors": [
|
||||
"#8caaee",
|
||||
"#ca9ee6",
|
||||
"#a6d189"
|
||||
],
|
||||
"focus-bg-color": "#626880",
|
||||
"menu-selected-color": "#51576d",
|
||||
"other-user-pill-bg-color": "#99d1db",
|
||||
"primary-color": "#babbf1",
|
||||
"reaction-row-button-selected-bg-color": "#51576d",
|
||||
"room-highlight-color": "#99d1db",
|
||||
"roomlist-background-color": "#292c3c",
|
||||
"roomlist-highlights-color": "#51576d",
|
||||
"roomlist-separator-color": "#838ba7",
|
||||
"roomlist-text-color": "#c6d0f5",
|
||||
"roomlist-text-secondary-color": "#303446",
|
||||
"secondary-content": "#c6d0f5",
|
||||
"sidebar-color": "#232634",
|
||||
"tertiary-content": "#c6d0f5",
|
||||
"timeline-background-color": "#303446",
|
||||
"timeline-highlights-color": "#292c3c",
|
||||
"timeline-text-color": "#c6d0f5",
|
||||
"timeline-text-secondary-color": "#a5adce",
|
||||
"togglesw-off-color": "#949cbb",
|
||||
"username-colors": [
|
||||
"#ca9ee6",
|
||||
"#ea999c",
|
||||
"#ef9f76",
|
||||
"#a6d189",
|
||||
"#81c8be",
|
||||
"#99d1db",
|
||||
"#85c1dc",
|
||||
"#babbf1"
|
||||
],
|
||||
"warning-color": "#e78284"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Catppuccin Frappe"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#b7bdf8",
|
||||
"alert": "#eed49f",
|
||||
"avatar-background-colors": [
|
||||
"#8aadf4",
|
||||
"#c6a0f6",
|
||||
"#a6da95"
|
||||
],
|
||||
"focus-bg-color": "#5b6078",
|
||||
"menu-selected-color": "#494d64",
|
||||
"other-user-pill-bg-color": "#91d7e3",
|
||||
"primary-color": "#b7bdf8",
|
||||
"reaction-row-button-selected-bg-color": "#494d64",
|
||||
"room-highlight-color": "#91d7e3",
|
||||
"roomlist-background-color": "#1e2030",
|
||||
"roomlist-highlights-color": "#494d64",
|
||||
"roomlist-separator-color": "#8087a2",
|
||||
"roomlist-text-color": "#cad3f5",
|
||||
"roomlist-text-secondary-color": "#24273a",
|
||||
"secondary-content": "#cad3f5",
|
||||
"sidebar-color": "#181926",
|
||||
"tertiary-content": "#cad3f5",
|
||||
"timeline-background-color": "#24273a",
|
||||
"timeline-highlights-color": "#1e2030",
|
||||
"timeline-text-color": "#cad3f5",
|
||||
"timeline-text-secondary-color": "#a5adcb",
|
||||
"togglesw-off-color": "#939ab7",
|
||||
"username-colors": [
|
||||
"#c6a0f6",
|
||||
"#ee99a0",
|
||||
"#f5a97f",
|
||||
"#a6da95",
|
||||
"#8bd5ca",
|
||||
"#91d7e3",
|
||||
"#7dc4e4",
|
||||
"#b7bdf8"
|
||||
],
|
||||
"warning-color": "#ed8796"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Catppuccin Macchiato"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#7287fd",
|
||||
"alert": "#df8e1d",
|
||||
"avatar-background-colors": [
|
||||
"#1e66f5",
|
||||
"#8839ef",
|
||||
"#40a02b"
|
||||
],
|
||||
"focus-bg-color": "#acb0be",
|
||||
"menu-selected-color": "#bcc0cc",
|
||||
"other-user-pill-bg-color": "#04a5e5",
|
||||
"primary-color": "#7287fd",
|
||||
"reaction-row-button-selected-bg-color": "#bcc0cc",
|
||||
"room-highlight-color": "#04a5e5",
|
||||
"roomlist-background-color": "#e6e9ef",
|
||||
"roomlist-highlights-color": "#bcc0cc",
|
||||
"roomlist-separator-color": "#8c8fa1",
|
||||
"roomlist-text-color": "#4c4f69",
|
||||
"roomlist-text-secondary-color": "#4c4f69",
|
||||
"secondary-content": "#4c4f69",
|
||||
"sidebar-color": "#dce0e8",
|
||||
"tertiary-content": "#4c4f69",
|
||||
"timeline-background-color": "#eff1f5",
|
||||
"timeline-highlights-color": "#bcc0cc",
|
||||
"timeline-text-color": "#4c4f69",
|
||||
"timeline-text-secondary-color": "#6c6f85",
|
||||
"togglesw-off-color": "#7c7f93",
|
||||
"username-colors": [
|
||||
"#8839ef",
|
||||
"#e64553",
|
||||
"#fe640b",
|
||||
"#40a02b",
|
||||
"#179299",
|
||||
"#04a5e5",
|
||||
"#209fb5",
|
||||
"#7287fd"
|
||||
],
|
||||
"warning-color": "#d20f39"
|
||||
},
|
||||
"is_dark": false,
|
||||
"name": "Catppuccin Latte"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#D9BC00",
|
||||
"primary-color": "#FFDD00",
|
||||
"reaction-row-button-selected-bg-color": "#FFEC70",
|
||||
"roomlist-background-color": "#011223",
|
||||
"roomlist-highlights-color": "#1E354A",
|
||||
"roomlist-separator-color": "#05192D",
|
||||
"roomlist-text-color": "#FFEC70",
|
||||
"roomlist-text-secondary-color": "#FFF3A4",
|
||||
"secondary-content": "#FFF3A4",
|
||||
"sidebar-color": "#020F1B",
|
||||
"tertiary-content": "#FFF3A4",
|
||||
"timeline-background-color": "#05192D",
|
||||
"timeline-highlights-color": "#011223",
|
||||
"timeline-text-color": "#FFF3A4",
|
||||
"timeline-text-secondary-color": "#A79000",
|
||||
"warning-color": "#FBC403"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Luxury Dark theme"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent": "#747ff4",
|
||||
"accent-color": "#747ff4",
|
||||
"alert": "#faa81ad9",
|
||||
"focus-bg-color": "#4752c4",
|
||||
"menu-selected-color": "#4752c4",
|
||||
"other-user-pill-bg-color": "#4752c4",
|
||||
"primary-color": "#00aff4",
|
||||
"reaction-row-button-selected-bg-color": "#4752c4",
|
||||
"room-highlight-color": "#4752c4",
|
||||
"roomlist-background-color": "#2f3136",
|
||||
"roomlist-highlights-color": "#4f545c52",
|
||||
"roomlist-separator-color": "#40444b",
|
||||
"roomlist-text-color": "#dcddde",
|
||||
"roomlist-text-secondary-color": "#8e9297",
|
||||
"secondary-content": "#dcddde",
|
||||
"sidebar-color": "#202225",
|
||||
"tertiary-content": "#dcddde",
|
||||
"timeline-background-color": "#36393f",
|
||||
"timeline-highlights-color": "#04040512",
|
||||
"timeline-text-color": "#dcddde",
|
||||
"timeline-text-secondary-color": "#b9bbbe",
|
||||
"togglesw-off-color": "#72767d",
|
||||
"warning-color": "#faa81ad9"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Discord Dark"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent": "#747ff4",
|
||||
"accent-color": "#747ff4",
|
||||
"alert": "#faa81ad9",
|
||||
"focus-bg-color": "#4752c4",
|
||||
"menu-selected-color": "#4752c4",
|
||||
"other-user-pill-bg-color": "#4752c4",
|
||||
"primary-color": "#00aff4",
|
||||
"reaction-row-button-selected-bg-color": "#4752c4",
|
||||
"room-highlight-color": "#4752c4",
|
||||
"roomlist-background-color": "#191919",
|
||||
"roomlist-highlights-color": "#4f545c52",
|
||||
"roomlist-separator-color": "#40444b",
|
||||
"roomlist-text-color": "#dcddde",
|
||||
"roomlist-text-secondary-color": "#8e9297",
|
||||
"secondary-content": "#dcddde",
|
||||
"sidebar-color": "#000000",
|
||||
"tertiary-content": "#dcddde",
|
||||
"timeline-background-color": "#000000",
|
||||
"timeline-highlights-color": "#04040512",
|
||||
"timeline-text-color": "#dcddde",
|
||||
"timeline-text-secondary-color": "#b9bbbe",
|
||||
"togglesw-off-color": "#72767d",
|
||||
"warning-color": "#faa81ad9"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Discord Black"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#a7c080",
|
||||
"primary-color": "#a7c080",
|
||||
"reaction-row-button-selected-bg-color": "#4b565c",
|
||||
"roomlist-background-color": "#2f383e",
|
||||
"roomlist-highlights-color": "#4b565c",
|
||||
"roomlist-separator-color": "#4b565c",
|
||||
"roomlist-text-color": "#d3c6aa",
|
||||
"roomlist-text-secondary-color": "#d3c6aa",
|
||||
"secondary-content": "#d3c6aa",
|
||||
"sidebar-color": "#323d43",
|
||||
"tertiary-content": "#d3c6aa",
|
||||
"timeline-background-color": "#2b3339",
|
||||
"timeline-highlights-color": "#4b565c",
|
||||
"timeline-text-color": "#d3c6aa",
|
||||
"timeline-text-secondary-color": "#a7c080",
|
||||
"warning-color": "#e67e80"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Everforest dark hard"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#bd93f9",
|
||||
"primary-color": "#bd93f9",
|
||||
"reaction-row-button-selected-bg-color": "#b9bbbe",
|
||||
"roomlist-background-color": "#1e1f29",
|
||||
"roomlist-highlights-color": "#00000030",
|
||||
"roomlist-separator-color": "#00000000",
|
||||
"roomlist-text-color": "#eeeeee",
|
||||
"roomlist-text-secondary-color": "#eeeeee",
|
||||
"secondary-content": "#eeeeee",
|
||||
"sidebar-color": "#1e1f29",
|
||||
"tertiary-content": "#eeeeee",
|
||||
"timeline-background-color": "#1e1f29",
|
||||
"timeline-highlights-color": "#00000030",
|
||||
"timeline-text-color": "#eeeeee",
|
||||
"timeline-text-secondary-color": "#dddddd",
|
||||
"warning-color": "#bd93f9"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Dracula Flat"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#bd93f9",
|
||||
"primary-color": "#bd93f9",
|
||||
"reaction-row-button-selected-bg-color": "#b9bbbe",
|
||||
"roomlist-background-color": "#1e1f29",
|
||||
"roomlist-highlights-color": "#00000030",
|
||||
"roomlist-separator-color": "#4d4d4d90",
|
||||
"roomlist-text-color": "#eeeeee",
|
||||
"roomlist-text-secondary-color": "#eeeeee",
|
||||
"secondary-content": "#eeeeee",
|
||||
"sidebar-color": "#1e1f29",
|
||||
"tertiary-content": "#eeeeee",
|
||||
"timeline-background-color": "#282A36",
|
||||
"timeline-highlights-color": "#00000030",
|
||||
"timeline-text-color": "#eeeeee",
|
||||
"timeline-text-secondary-color": "#dddddd",
|
||||
"warning-color": "#bd93f9"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Dracula"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#b58900",
|
||||
"primary-color": "#268bd2",
|
||||
"reaction-row-button-selected-bg-color": "#268bd2",
|
||||
"roomlist-background-color": "#073642",
|
||||
"roomlist-highlights-color": "#586e75",
|
||||
"roomlist-text-color": "#839496",
|
||||
"roomlist-text-secondary-color": "#93a1a1",
|
||||
"secondary-content": "#839496",
|
||||
"sidebar-color": "#002b36",
|
||||
"tertiary-content": "#839496",
|
||||
"timeline-background-color": "#002b36",
|
||||
"timeline-highlights-color": "#073642",
|
||||
"timeline-text-color": "#839496",
|
||||
"timeline-text-secondary-color": "#586e75",
|
||||
"warning-color": "#dc322f"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Solarized Dark"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#b58900",
|
||||
"primary-color": "#268bd2",
|
||||
"reaction-row-button-selected-bg-color": "#268bd2",
|
||||
"roomlist-background-color": "#eee8d5",
|
||||
"roomlist-highlights-color": "#93a1a1",
|
||||
"roomlist-text-color": "#657b83",
|
||||
"roomlist-text-secondary-color": "#586e75",
|
||||
"secondary-content": "#657b83",
|
||||
"sidebar-color": "#fdf6e3",
|
||||
"tertiary-content": "#657b83",
|
||||
"timeline-background-color": "#fdf6e3",
|
||||
"timeline-highlights-color": "#eee8d5",
|
||||
"timeline-text-color": "#657b83",
|
||||
"timeline-text-secondary-color": "#93a1a1",
|
||||
"warning-color": "#dc322f"
|
||||
},
|
||||
"is_dark": false,
|
||||
"name": "Solarized Light"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#73ba25",
|
||||
"primary-color": "#35b9ab",
|
||||
"reaction-row-button-selected-bg-color": "#bf616a",
|
||||
"roomlist-background-color": "#4a4a4a",
|
||||
"roomlist-highlights-color": "#2a2a2a",
|
||||
"roomlist-separator-color": "#3a3a3a",
|
||||
"roomlist-text-color": "#ffffff",
|
||||
"roomlist-text-secondary-color": "#dddddd",
|
||||
"secondary-content": "#eeeeee",
|
||||
"sidebar-color": "#2a2a2a",
|
||||
"tertiary-content": "#eeeeee",
|
||||
"timeline-background-color": "#3a3a3a",
|
||||
"timeline-highlights-color": "#bf616a",
|
||||
"timeline-text-color": "#eeeeee",
|
||||
"timeline-text-secondary-color": "#6da741",
|
||||
"warning-color": "#bf616a"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Geeko dark theme"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#41c7b9",
|
||||
"primary-color": "#4695f7",
|
||||
"reaction-row-button-selected-bg-color": "#4695f7",
|
||||
"roomlist-background-color": "#184956",
|
||||
"roomlist-highlights-color": "#2d5b69",
|
||||
"roomlist-separator-color": "#2d5b69",
|
||||
"roomlist-text-color": "#dbb32d",
|
||||
"roomlist-text-secondary-color": "#FFFFFF",
|
||||
"secondary-content": "#FFFFFF",
|
||||
"sidebar-color": "#103c48",
|
||||
"tertiary-content": "#FFFFFF",
|
||||
"timeline-background-color": "#2d5b69",
|
||||
"timeline-highlights-color": "#184956",
|
||||
"timeline-text-color": "#FFFFFF",
|
||||
"timeline-text-secondary-color": "#72898f",
|
||||
"warning-color": "#fa5750"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Selenized dark theme"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#ad8900",
|
||||
"primary-color": "#009c8f",
|
||||
"reaction-row-button-selected-bg-color": "#4695f7",
|
||||
"roomlist-background-color": "#ece3cc",
|
||||
"roomlist-highlights-color": "#fbf3db",
|
||||
"roomlist-separator-color": "#fbf3db",
|
||||
"roomlist-text-color": "#c25d1e",
|
||||
"roomlist-text-secondary-color": "#000000",
|
||||
"secondary-content": "#000000",
|
||||
"sidebar-color": "#d5cdb6",
|
||||
"tertiary-content": "#000000",
|
||||
"timeline-background-color": "#fbf3db",
|
||||
"timeline-highlights-color": "#ece3cc",
|
||||
"timeline-text-color": "#000000",
|
||||
"timeline-text-secondary-color": "#777777",
|
||||
"warning-color": "#d2212d"
|
||||
},
|
||||
"is_dark": false,
|
||||
"name": "Selenized light theme"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#70b433",
|
||||
"primary-color": "#4695f7",
|
||||
"reaction-row-button-selected-bg-color": "#4695f7",
|
||||
"roomlist-background-color": "#252525",
|
||||
"roomlist-highlights-color": "#3b3b3b",
|
||||
"roomlist-separator-color": "#121212",
|
||||
"roomlist-text-color": "#ffffff",
|
||||
"roomlist-text-secondary-color": "#b9b9b9",
|
||||
"secondary-content": "#FFFFFF",
|
||||
"sidebar-color": "#181818",
|
||||
"tertiary-content": "#FFFFFF",
|
||||
"timeline-background-color": "#181818",
|
||||
"timeline-highlights-color": "#252525",
|
||||
"timeline-text-color": "#FFFFFF",
|
||||
"timeline-text-secondary-color": "#777777",
|
||||
"warning-color": "#ed4a46"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Selenized black theme"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#a3be8c",
|
||||
"primary-color": "#5e81ac",
|
||||
"reaction-row-button-selected-bg-color": "#bf616a",
|
||||
"roomlist-background-color": "#e5e9f0",
|
||||
"roomlist-highlights-color": "#eceff4",
|
||||
"roomlist-separator-color": "#eceff4",
|
||||
"roomlist-text-color": "#d08770",
|
||||
"roomlist-text-secondary-color": "#3b4252",
|
||||
"secondary-content": "#2e3440",
|
||||
"sidebar-color": "#d8dee9",
|
||||
"tertiary-content": "#2e3440",
|
||||
"timeline-background-color": "#eceff4",
|
||||
"timeline-highlights-color": "#e5e9f0",
|
||||
"timeline-text-color": "#2e3440",
|
||||
"timeline-text-secondary-color": "#3b4252",
|
||||
"warning-color": "#bf616a"
|
||||
},
|
||||
"is_dark": false,
|
||||
"name": "Nord light theme"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#a3be8c",
|
||||
"primary-color": "#88c0d0",
|
||||
"reaction-row-button-selected-bg-color": "#bf616a",
|
||||
"roomlist-background-color": "#3b4252",
|
||||
"roomlist-highlights-color": "#2e3440",
|
||||
"roomlist-separator-color": "#434c5e",
|
||||
"roomlist-text-color": "#ebcb8b",
|
||||
"roomlist-text-secondary-color": "#e5e9f0",
|
||||
"secondary-content": "#eceff4",
|
||||
"sidebar-color": "#2e3440",
|
||||
"tertiary-content": "#eceff4",
|
||||
"timeline-background-color": "#434c5e",
|
||||
"timeline-highlights-color": "#3b4252",
|
||||
"timeline-text-color": "#eceff4",
|
||||
"timeline-text-secondary-color": "#81a1c1",
|
||||
"warning-color": "#bf616a"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Nord dark theme"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent": "#d6deeb",
|
||||
"accent-color": "#122d42",
|
||||
"alert": "#b39554",
|
||||
"focus-bg-color": "#234d708c",
|
||||
"menu-selected-color": "#234d708c",
|
||||
"other-user-pill-bg-color": "#234d708c",
|
||||
"primary-color": "#122d42",
|
||||
"reaction-row-button-selected-bg-color": "#7e57c25a",
|
||||
"room-highlight-color": "#234d708c",
|
||||
"roomlist-background-color": "#011627",
|
||||
"roomlist-highlights-color": "#1085bb5d",
|
||||
"roomlist-separator-color": "#5f7e97",
|
||||
"roomlist-text-color": "#d6deeb",
|
||||
"roomlist-text-secondary-color": "#5f7e97",
|
||||
"secondary-content": "#5f7e97",
|
||||
"sidebar-color": "#011627",
|
||||
"tertiary-content": "#5f7e97",
|
||||
"timeline-background-color": "#011627",
|
||||
"timeline-highlights-color": "#5F7E9779",
|
||||
"timeline-text-color": "#5f7e97",
|
||||
"timeline-text-secondary-color": "#d6deeb",
|
||||
"togglesw-off-color": "#010b14",
|
||||
"warning-color": "#b39554"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Night Owl"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#25863c",
|
||||
"primary-color": "#4695f7",
|
||||
"reaction-row-button-selected-bg-color": "#132338",
|
||||
"roomlist-background-color": "#0d1117",
|
||||
"roomlist-highlights-color": "#161b22",
|
||||
"roomlist-separator-color": "#21262d",
|
||||
"roomlist-text-color": "#c9d1d9",
|
||||
"roomlist-text-secondary-color": "#b9b9b9",
|
||||
"secondary-content": "#c9d1d9",
|
||||
"sidebar-color": "#161b22",
|
||||
"tertiary-content": "#c9d1d9",
|
||||
"timeline-background-color": "#0d1117",
|
||||
"timeline-highlights-color": "#252525",
|
||||
"timeline-text-color": "#c9d1d9",
|
||||
"timeline-text-secondary-color": "#8b949e",
|
||||
"username-colors": [
|
||||
"#f85149",
|
||||
"#d29922",
|
||||
"#42b958",
|
||||
"#58a6fc",
|
||||
"#a271f3",
|
||||
"#f9524a",
|
||||
"#43ba59",
|
||||
"#a372f4"
|
||||
],
|
||||
"warning-color": "#ed4a46"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Covalence"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent": "#fd6883",
|
||||
"accent-color": "#fff1f3",
|
||||
"alert": "#fd6883",
|
||||
"avatar-background-colors": [
|
||||
"#458588",
|
||||
"#b16286",
|
||||
"#adda78"
|
||||
],
|
||||
"icon-button-color": "#f9cc6c",
|
||||
"menu-selected-color": "#f9cc6c",
|
||||
"primary-color": "#f38d70",
|
||||
"quinary-content": "#221f22",
|
||||
"reaction-row-button-selected-bg-color": "#adda78",
|
||||
"roomlist-background-color": "#221f22",
|
||||
"roomlist-highlights-color": "#3b394a",
|
||||
"roomlist-separator-color": "#2D2a2e",
|
||||
"roomlist-text-color": "#fff1ff",
|
||||
"roomlist-text-secondary-color": "#f9cc6c",
|
||||
"secondary-content": "#fff1f3",
|
||||
"sidebar-color": "#2d2a2e",
|
||||
"tertiary-content": "#fff1f3",
|
||||
"timeline-background-color": "#2D2a2e",
|
||||
"timeline-highlights-color": "#00000030",
|
||||
"timeline-text-color": "#fff1ff",
|
||||
"timeline-text-secondary-color": "#fff1ff",
|
||||
"username-colors": [
|
||||
"#cc241d",
|
||||
"#689d6a",
|
||||
"#f9cc6c",
|
||||
"#b16286",
|
||||
"#85dacc",
|
||||
"#adda78",
|
||||
"#a89984",
|
||||
"#f38d70"
|
||||
],
|
||||
"warning-color": "#fd6883"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Monokai Pro"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent": "#689d6a",
|
||||
"accent-color": "#bd93f9",
|
||||
"alert": "#cc241d",
|
||||
"avatar-background-colors": [
|
||||
"#458588",
|
||||
"#b16286",
|
||||
"#689d6a"
|
||||
],
|
||||
"icon-button-color": "#928374",
|
||||
"menu-selected-color": "#504945",
|
||||
"primary-color": "#fe8019",
|
||||
"quinary-content": "#504945",
|
||||
"reaction-row-button-selected-bg-color": "#689d6a",
|
||||
"roomlist-background-color": "#1d2021",
|
||||
"roomlist-highlights-color": "#00000030",
|
||||
"roomlist-separator-color": "#4d4d4d90",
|
||||
"roomlist-text-color": "#a89984",
|
||||
"roomlist-text-secondary-color": "#00ff00",
|
||||
"secondary-content": "#928374",
|
||||
"sidebar-color": "#282828",
|
||||
"tertiary-content": "#928374",
|
||||
"timeline-background-color": "#282828",
|
||||
"timeline-highlights-color": "#00000030",
|
||||
"timeline-text-color": "#ebdbb2",
|
||||
"timeline-text-secondary-color": "#a89984",
|
||||
"username-colors": [
|
||||
"#cc241d",
|
||||
"#98971a",
|
||||
"#d79921",
|
||||
"#458588",
|
||||
"#b16286",
|
||||
"#689d6a",
|
||||
"#a89984",
|
||||
"#d65d0e"
|
||||
],
|
||||
"warning-color": "#fb4934"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Gruvbox Dark"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent": "#689d6a",
|
||||
"accent-color": "#cc241d",
|
||||
"alert": "#cc241d",
|
||||
"avatar-background-colors": [
|
||||
"#458588",
|
||||
"#b16286",
|
||||
"#689d6a"
|
||||
],
|
||||
"icon-button-color": "#928374",
|
||||
"menu-selected-color": "#d5c4a1",
|
||||
"primary-color": "#af3a03",
|
||||
"quinary-content": "#d5c4a1",
|
||||
"reaction-row-button-selected-bg-color": "#689d6a",
|
||||
"roomlist-background-color": "#f9f5d7",
|
||||
"roomlist-highlights-color": "#ebdbb2",
|
||||
"roomlist-separator-color": "#d5c4a1",
|
||||
"roomlist-text-color": "#7c6f64",
|
||||
"roomlist-text-secondary-color": "#504945",
|
||||
"secondary-content": "#928374",
|
||||
"sidebar-color": "#fbf1c7",
|
||||
"system": "#fbf1c7",
|
||||
"tertiary-content": "#928374",
|
||||
"timeline-background-color": "#fbf1c7",
|
||||
"timeline-highlights-color": "#00000030",
|
||||
"timeline-text-color": "#3c3836",
|
||||
"timeline-text-secondary-color": "#7c6f64",
|
||||
"username-colors": [
|
||||
"#cc241d",
|
||||
"#98971a",
|
||||
"#d79921",
|
||||
"#458588",
|
||||
"#b16286",
|
||||
"#689d6a",
|
||||
"#a89984",
|
||||
"#d65d0e"
|
||||
],
|
||||
"warning-color": "#9d0006"
|
||||
},
|
||||
"is_dark": false,
|
||||
"name": "Gruvbox Light"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#cc7b19",
|
||||
"primary-color": "#9F8652",
|
||||
"reaction-row-button-selected-bg-color": "#cc7b19",
|
||||
"roomlist-background-color": "#191919",
|
||||
"roomlist-highlights-color": "#323232",
|
||||
"roomlist-separator-color": "#4c4c4c",
|
||||
"roomlist-text-color": "#cc7b19",
|
||||
"roomlist-text-secondary-color": "#e5e5e5",
|
||||
"secondary-content": "#e5e5e5",
|
||||
"sidebar-color": "#000000",
|
||||
"tertiary-content": "#e5e5e5",
|
||||
"timeline-background-color": "#000000",
|
||||
"timeline-highlights-color": "#212121",
|
||||
"timeline-text-color": "#e5e5e5",
|
||||
"timeline-text-secondary-color": "#b2b2b2",
|
||||
"warning-color": "#f9c003"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "ThomCat black theme"
|
||||
}
|
||||
]
|
||||
},
|
||||
"element_call": {
|
||||
"url": "https://call.element.dev"
|
||||
},
|
||||
"map_style_url": "https://api.maptiler.com/maps/streets/style.json?key=fU3vlMsMn4Jb6dnEIFsx"
|
||||
"map_style_url": "https://api.maptiler.com/maps/streets/style.json?key=fU3vlMsMn4Jb6dnEIFsx",
|
||||
"default_server_name": "pissing.dev"
|
||||
}
|
||||
|
|
@ -1,5 +1,4 @@
|
|||
{
|
||||
"default_server_name": "ellis.link",
|
||||
"default_server_config": {
|
||||
"m.homeserver": {
|
||||
"base_url": "https://matrix.ellis.link/"
|
||||
|
|
@ -39,8 +38,10 @@
|
|||
]
|
||||
},
|
||||
"enable_presence_by_hs_url": {
|
||||
"https://matrix.org": false,
|
||||
"https://matrix-client.matrix.org": false,
|
||||
"https://matrix.org": false,
|
||||
"https://matrix.raim.ist": false,
|
||||
"https://mozilla.modular.im": false,
|
||||
"https://matrix.ellis.link": true,
|
||||
"https://ellis.link": true,
|
||||
"https://matrix.pissing.dev": true,
|
||||
|
|
@ -63,14 +64,722 @@
|
|||
"feature_element_call_video_rooms": true,
|
||||
"feature_latex_maths": true,
|
||||
"feature_bridge_state": true,
|
||||
"feature_render_reaction_images": true
|
||||
"feature_render_reaction_images": true,
|
||||
"feature_custom_themes": true,
|
||||
"feature_hidden_read_receipts": true,
|
||||
"feature_mjolnir": true
|
||||
},
|
||||
"setting_defaults": {
|
||||
"RustCrypto.staged_rollout_percent": 100,
|
||||
"Registration.mobileRegistrationHelper": true
|
||||
"Registration.mobileRegistrationHelper": true,
|
||||
"custom_themes": [
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#b4befe",
|
||||
"alert": "#e5c890",
|
||||
"avatar-background-colors": [
|
||||
"#89b4fa",
|
||||
"#cba6f7",
|
||||
"#a6e3a1"
|
||||
],
|
||||
"focus-bg-color": "#585b70",
|
||||
"menu-selected-color": "#45475a",
|
||||
"other-user-pill-bg-color": "#89dceb",
|
||||
"primary-color": "#b4befe",
|
||||
"reaction-row-button-selected-bg-color": "#585b70",
|
||||
"room-highlight-color": "#89dceb",
|
||||
"roomlist-background-color": "#181825",
|
||||
"roomlist-highlights-color": "#45475a",
|
||||
"roomlist-separator-color": "#7f849c",
|
||||
"roomlist-text-color": "#cdd6f4",
|
||||
"roomlist-text-secondary-color": "#313234",
|
||||
"secondary-content": "#cdd6f4",
|
||||
"sidebar-color": "#11111b",
|
||||
"tertiary-content": "#cdd6f4",
|
||||
"timeline-background-color": "#1e1e2e",
|
||||
"timeline-highlights-color": "#181825",
|
||||
"timeline-text-color": "#cdd6f4",
|
||||
"timeline-text-secondary-color": "#a6adc8",
|
||||
"togglesw-off-color": "#9399b2",
|
||||
"username-colors": [
|
||||
"#cba6f7",
|
||||
"#eba0ac",
|
||||
"#fab387",
|
||||
"#a6e3a1",
|
||||
"#94e2d5",
|
||||
"#89dceb",
|
||||
"#74c7ec",
|
||||
"#b4befe"
|
||||
],
|
||||
"warning-color": "#f38ba8"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Catppuccin Mocha"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#babbf1",
|
||||
"alert": "#faa81a",
|
||||
"avatar-background-colors": [
|
||||
"#8caaee",
|
||||
"#ca9ee6",
|
||||
"#a6d189"
|
||||
],
|
||||
"focus-bg-color": "#626880",
|
||||
"menu-selected-color": "#51576d",
|
||||
"other-user-pill-bg-color": "#99d1db",
|
||||
"primary-color": "#babbf1",
|
||||
"reaction-row-button-selected-bg-color": "#51576d",
|
||||
"room-highlight-color": "#99d1db",
|
||||
"roomlist-background-color": "#292c3c",
|
||||
"roomlist-highlights-color": "#51576d",
|
||||
"roomlist-separator-color": "#838ba7",
|
||||
"roomlist-text-color": "#c6d0f5",
|
||||
"roomlist-text-secondary-color": "#303446",
|
||||
"secondary-content": "#c6d0f5",
|
||||
"sidebar-color": "#232634",
|
||||
"tertiary-content": "#c6d0f5",
|
||||
"timeline-background-color": "#303446",
|
||||
"timeline-highlights-color": "#292c3c",
|
||||
"timeline-text-color": "#c6d0f5",
|
||||
"timeline-text-secondary-color": "#a5adce",
|
||||
"togglesw-off-color": "#949cbb",
|
||||
"username-colors": [
|
||||
"#ca9ee6",
|
||||
"#ea999c",
|
||||
"#ef9f76",
|
||||
"#a6d189",
|
||||
"#81c8be",
|
||||
"#99d1db",
|
||||
"#85c1dc",
|
||||
"#babbf1"
|
||||
],
|
||||
"warning-color": "#e78284"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Catppuccin Frappe"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#b7bdf8",
|
||||
"alert": "#eed49f",
|
||||
"avatar-background-colors": [
|
||||
"#8aadf4",
|
||||
"#c6a0f6",
|
||||
"#a6da95"
|
||||
],
|
||||
"focus-bg-color": "#5b6078",
|
||||
"menu-selected-color": "#494d64",
|
||||
"other-user-pill-bg-color": "#91d7e3",
|
||||
"primary-color": "#b7bdf8",
|
||||
"reaction-row-button-selected-bg-color": "#494d64",
|
||||
"room-highlight-color": "#91d7e3",
|
||||
"roomlist-background-color": "#1e2030",
|
||||
"roomlist-highlights-color": "#494d64",
|
||||
"roomlist-separator-color": "#8087a2",
|
||||
"roomlist-text-color": "#cad3f5",
|
||||
"roomlist-text-secondary-color": "#24273a",
|
||||
"secondary-content": "#cad3f5",
|
||||
"sidebar-color": "#181926",
|
||||
"tertiary-content": "#cad3f5",
|
||||
"timeline-background-color": "#24273a",
|
||||
"timeline-highlights-color": "#1e2030",
|
||||
"timeline-text-color": "#cad3f5",
|
||||
"timeline-text-secondary-color": "#a5adcb",
|
||||
"togglesw-off-color": "#939ab7",
|
||||
"username-colors": [
|
||||
"#c6a0f6",
|
||||
"#ee99a0",
|
||||
"#f5a97f",
|
||||
"#a6da95",
|
||||
"#8bd5ca",
|
||||
"#91d7e3",
|
||||
"#7dc4e4",
|
||||
"#b7bdf8"
|
||||
],
|
||||
"warning-color": "#ed8796"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Catppuccin Macchiato"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#7287fd",
|
||||
"alert": "#df8e1d",
|
||||
"avatar-background-colors": [
|
||||
"#1e66f5",
|
||||
"#8839ef",
|
||||
"#40a02b"
|
||||
],
|
||||
"focus-bg-color": "#acb0be",
|
||||
"menu-selected-color": "#bcc0cc",
|
||||
"other-user-pill-bg-color": "#04a5e5",
|
||||
"primary-color": "#7287fd",
|
||||
"reaction-row-button-selected-bg-color": "#bcc0cc",
|
||||
"room-highlight-color": "#04a5e5",
|
||||
"roomlist-background-color": "#e6e9ef",
|
||||
"roomlist-highlights-color": "#bcc0cc",
|
||||
"roomlist-separator-color": "#8c8fa1",
|
||||
"roomlist-text-color": "#4c4f69",
|
||||
"roomlist-text-secondary-color": "#4c4f69",
|
||||
"secondary-content": "#4c4f69",
|
||||
"sidebar-color": "#dce0e8",
|
||||
"tertiary-content": "#4c4f69",
|
||||
"timeline-background-color": "#eff1f5",
|
||||
"timeline-highlights-color": "#bcc0cc",
|
||||
"timeline-text-color": "#4c4f69",
|
||||
"timeline-text-secondary-color": "#6c6f85",
|
||||
"togglesw-off-color": "#7c7f93",
|
||||
"username-colors": [
|
||||
"#8839ef",
|
||||
"#e64553",
|
||||
"#fe640b",
|
||||
"#40a02b",
|
||||
"#179299",
|
||||
"#04a5e5",
|
||||
"#209fb5",
|
||||
"#7287fd"
|
||||
],
|
||||
"warning-color": "#d20f39"
|
||||
},
|
||||
"is_dark": false,
|
||||
"name": "Catppuccin Latte"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#D9BC00",
|
||||
"primary-color": "#FFDD00",
|
||||
"reaction-row-button-selected-bg-color": "#FFEC70",
|
||||
"roomlist-background-color": "#011223",
|
||||
"roomlist-highlights-color": "#1E354A",
|
||||
"roomlist-separator-color": "#05192D",
|
||||
"roomlist-text-color": "#FFEC70",
|
||||
"roomlist-text-secondary-color": "#FFF3A4",
|
||||
"secondary-content": "#FFF3A4",
|
||||
"sidebar-color": "#020F1B",
|
||||
"tertiary-content": "#FFF3A4",
|
||||
"timeline-background-color": "#05192D",
|
||||
"timeline-highlights-color": "#011223",
|
||||
"timeline-text-color": "#FFF3A4",
|
||||
"timeline-text-secondary-color": "#A79000",
|
||||
"warning-color": "#FBC403"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Luxury Dark theme"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent": "#747ff4",
|
||||
"accent-color": "#747ff4",
|
||||
"alert": "#faa81ad9",
|
||||
"focus-bg-color": "#4752c4",
|
||||
"menu-selected-color": "#4752c4",
|
||||
"other-user-pill-bg-color": "#4752c4",
|
||||
"primary-color": "#00aff4",
|
||||
"reaction-row-button-selected-bg-color": "#4752c4",
|
||||
"room-highlight-color": "#4752c4",
|
||||
"roomlist-background-color": "#2f3136",
|
||||
"roomlist-highlights-color": "#4f545c52",
|
||||
"roomlist-separator-color": "#40444b",
|
||||
"roomlist-text-color": "#dcddde",
|
||||
"roomlist-text-secondary-color": "#8e9297",
|
||||
"secondary-content": "#dcddde",
|
||||
"sidebar-color": "#202225",
|
||||
"tertiary-content": "#dcddde",
|
||||
"timeline-background-color": "#36393f",
|
||||
"timeline-highlights-color": "#04040512",
|
||||
"timeline-text-color": "#dcddde",
|
||||
"timeline-text-secondary-color": "#b9bbbe",
|
||||
"togglesw-off-color": "#72767d",
|
||||
"warning-color": "#faa81ad9"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Discord Dark"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent": "#747ff4",
|
||||
"accent-color": "#747ff4",
|
||||
"alert": "#faa81ad9",
|
||||
"focus-bg-color": "#4752c4",
|
||||
"menu-selected-color": "#4752c4",
|
||||
"other-user-pill-bg-color": "#4752c4",
|
||||
"primary-color": "#00aff4",
|
||||
"reaction-row-button-selected-bg-color": "#4752c4",
|
||||
"room-highlight-color": "#4752c4",
|
||||
"roomlist-background-color": "#191919",
|
||||
"roomlist-highlights-color": "#4f545c52",
|
||||
"roomlist-separator-color": "#40444b",
|
||||
"roomlist-text-color": "#dcddde",
|
||||
"roomlist-text-secondary-color": "#8e9297",
|
||||
"secondary-content": "#dcddde",
|
||||
"sidebar-color": "#000000",
|
||||
"tertiary-content": "#dcddde",
|
||||
"timeline-background-color": "#000000",
|
||||
"timeline-highlights-color": "#04040512",
|
||||
"timeline-text-color": "#dcddde",
|
||||
"timeline-text-secondary-color": "#b9bbbe",
|
||||
"togglesw-off-color": "#72767d",
|
||||
"warning-color": "#faa81ad9"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Discord Black"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#a7c080",
|
||||
"primary-color": "#a7c080",
|
||||
"reaction-row-button-selected-bg-color": "#4b565c",
|
||||
"roomlist-background-color": "#2f383e",
|
||||
"roomlist-highlights-color": "#4b565c",
|
||||
"roomlist-separator-color": "#4b565c",
|
||||
"roomlist-text-color": "#d3c6aa",
|
||||
"roomlist-text-secondary-color": "#d3c6aa",
|
||||
"secondary-content": "#d3c6aa",
|
||||
"sidebar-color": "#323d43",
|
||||
"tertiary-content": "#d3c6aa",
|
||||
"timeline-background-color": "#2b3339",
|
||||
"timeline-highlights-color": "#4b565c",
|
||||
"timeline-text-color": "#d3c6aa",
|
||||
"timeline-text-secondary-color": "#a7c080",
|
||||
"warning-color": "#e67e80"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Everforest dark hard"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#bd93f9",
|
||||
"primary-color": "#bd93f9",
|
||||
"reaction-row-button-selected-bg-color": "#b9bbbe",
|
||||
"roomlist-background-color": "#1e1f29",
|
||||
"roomlist-highlights-color": "#00000030",
|
||||
"roomlist-separator-color": "#00000000",
|
||||
"roomlist-text-color": "#eeeeee",
|
||||
"roomlist-text-secondary-color": "#eeeeee",
|
||||
"secondary-content": "#eeeeee",
|
||||
"sidebar-color": "#1e1f29",
|
||||
"tertiary-content": "#eeeeee",
|
||||
"timeline-background-color": "#1e1f29",
|
||||
"timeline-highlights-color": "#00000030",
|
||||
"timeline-text-color": "#eeeeee",
|
||||
"timeline-text-secondary-color": "#dddddd",
|
||||
"warning-color": "#bd93f9"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Dracula Flat"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#bd93f9",
|
||||
"primary-color": "#bd93f9",
|
||||
"reaction-row-button-selected-bg-color": "#b9bbbe",
|
||||
"roomlist-background-color": "#1e1f29",
|
||||
"roomlist-highlights-color": "#00000030",
|
||||
"roomlist-separator-color": "#4d4d4d90",
|
||||
"roomlist-text-color": "#eeeeee",
|
||||
"roomlist-text-secondary-color": "#eeeeee",
|
||||
"secondary-content": "#eeeeee",
|
||||
"sidebar-color": "#1e1f29",
|
||||
"tertiary-content": "#eeeeee",
|
||||
"timeline-background-color": "#282A36",
|
||||
"timeline-highlights-color": "#00000030",
|
||||
"timeline-text-color": "#eeeeee",
|
||||
"timeline-text-secondary-color": "#dddddd",
|
||||
"warning-color": "#bd93f9"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Dracula"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#b58900",
|
||||
"primary-color": "#268bd2",
|
||||
"reaction-row-button-selected-bg-color": "#268bd2",
|
||||
"roomlist-background-color": "#073642",
|
||||
"roomlist-highlights-color": "#586e75",
|
||||
"roomlist-text-color": "#839496",
|
||||
"roomlist-text-secondary-color": "#93a1a1",
|
||||
"secondary-content": "#839496",
|
||||
"sidebar-color": "#002b36",
|
||||
"tertiary-content": "#839496",
|
||||
"timeline-background-color": "#002b36",
|
||||
"timeline-highlights-color": "#073642",
|
||||
"timeline-text-color": "#839496",
|
||||
"timeline-text-secondary-color": "#586e75",
|
||||
"warning-color": "#dc322f"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Solarized Dark"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#b58900",
|
||||
"primary-color": "#268bd2",
|
||||
"reaction-row-button-selected-bg-color": "#268bd2",
|
||||
"roomlist-background-color": "#eee8d5",
|
||||
"roomlist-highlights-color": "#93a1a1",
|
||||
"roomlist-text-color": "#657b83",
|
||||
"roomlist-text-secondary-color": "#586e75",
|
||||
"secondary-content": "#657b83",
|
||||
"sidebar-color": "#fdf6e3",
|
||||
"tertiary-content": "#657b83",
|
||||
"timeline-background-color": "#fdf6e3",
|
||||
"timeline-highlights-color": "#eee8d5",
|
||||
"timeline-text-color": "#657b83",
|
||||
"timeline-text-secondary-color": "#93a1a1",
|
||||
"warning-color": "#dc322f"
|
||||
},
|
||||
"is_dark": false,
|
||||
"name": "Solarized Light"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#73ba25",
|
||||
"primary-color": "#35b9ab",
|
||||
"reaction-row-button-selected-bg-color": "#bf616a",
|
||||
"roomlist-background-color": "#4a4a4a",
|
||||
"roomlist-highlights-color": "#2a2a2a",
|
||||
"roomlist-separator-color": "#3a3a3a",
|
||||
"roomlist-text-color": "#ffffff",
|
||||
"roomlist-text-secondary-color": "#dddddd",
|
||||
"secondary-content": "#eeeeee",
|
||||
"sidebar-color": "#2a2a2a",
|
||||
"tertiary-content": "#eeeeee",
|
||||
"timeline-background-color": "#3a3a3a",
|
||||
"timeline-highlights-color": "#bf616a",
|
||||
"timeline-text-color": "#eeeeee",
|
||||
"timeline-text-secondary-color": "#6da741",
|
||||
"warning-color": "#bf616a"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Geeko dark theme"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#41c7b9",
|
||||
"primary-color": "#4695f7",
|
||||
"reaction-row-button-selected-bg-color": "#4695f7",
|
||||
"roomlist-background-color": "#184956",
|
||||
"roomlist-highlights-color": "#2d5b69",
|
||||
"roomlist-separator-color": "#2d5b69",
|
||||
"roomlist-text-color": "#dbb32d",
|
||||
"roomlist-text-secondary-color": "#FFFFFF",
|
||||
"secondary-content": "#FFFFFF",
|
||||
"sidebar-color": "#103c48",
|
||||
"tertiary-content": "#FFFFFF",
|
||||
"timeline-background-color": "#2d5b69",
|
||||
"timeline-highlights-color": "#184956",
|
||||
"timeline-text-color": "#FFFFFF",
|
||||
"timeline-text-secondary-color": "#72898f",
|
||||
"warning-color": "#fa5750"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Selenized dark theme"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#ad8900",
|
||||
"primary-color": "#009c8f",
|
||||
"reaction-row-button-selected-bg-color": "#4695f7",
|
||||
"roomlist-background-color": "#ece3cc",
|
||||
"roomlist-highlights-color": "#fbf3db",
|
||||
"roomlist-separator-color": "#fbf3db",
|
||||
"roomlist-text-color": "#c25d1e",
|
||||
"roomlist-text-secondary-color": "#000000",
|
||||
"secondary-content": "#000000",
|
||||
"sidebar-color": "#d5cdb6",
|
||||
"tertiary-content": "#000000",
|
||||
"timeline-background-color": "#fbf3db",
|
||||
"timeline-highlights-color": "#ece3cc",
|
||||
"timeline-text-color": "#000000",
|
||||
"timeline-text-secondary-color": "#777777",
|
||||
"warning-color": "#d2212d"
|
||||
},
|
||||
"is_dark": false,
|
||||
"name": "Selenized light theme"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#70b433",
|
||||
"primary-color": "#4695f7",
|
||||
"reaction-row-button-selected-bg-color": "#4695f7",
|
||||
"roomlist-background-color": "#252525",
|
||||
"roomlist-highlights-color": "#3b3b3b",
|
||||
"roomlist-separator-color": "#121212",
|
||||
"roomlist-text-color": "#ffffff",
|
||||
"roomlist-text-secondary-color": "#b9b9b9",
|
||||
"secondary-content": "#FFFFFF",
|
||||
"sidebar-color": "#181818",
|
||||
"tertiary-content": "#FFFFFF",
|
||||
"timeline-background-color": "#181818",
|
||||
"timeline-highlights-color": "#252525",
|
||||
"timeline-text-color": "#FFFFFF",
|
||||
"timeline-text-secondary-color": "#777777",
|
||||
"warning-color": "#ed4a46"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Selenized black theme"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#a3be8c",
|
||||
"primary-color": "#5e81ac",
|
||||
"reaction-row-button-selected-bg-color": "#bf616a",
|
||||
"roomlist-background-color": "#e5e9f0",
|
||||
"roomlist-highlights-color": "#eceff4",
|
||||
"roomlist-separator-color": "#eceff4",
|
||||
"roomlist-text-color": "#d08770",
|
||||
"roomlist-text-secondary-color": "#3b4252",
|
||||
"secondary-content": "#2e3440",
|
||||
"sidebar-color": "#d8dee9",
|
||||
"tertiary-content": "#2e3440",
|
||||
"timeline-background-color": "#eceff4",
|
||||
"timeline-highlights-color": "#e5e9f0",
|
||||
"timeline-text-color": "#2e3440",
|
||||
"timeline-text-secondary-color": "#3b4252",
|
||||
"warning-color": "#bf616a"
|
||||
},
|
||||
"is_dark": false,
|
||||
"name": "Nord light theme"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#a3be8c",
|
||||
"primary-color": "#88c0d0",
|
||||
"reaction-row-button-selected-bg-color": "#bf616a",
|
||||
"roomlist-background-color": "#3b4252",
|
||||
"roomlist-highlights-color": "#2e3440",
|
||||
"roomlist-separator-color": "#434c5e",
|
||||
"roomlist-text-color": "#ebcb8b",
|
||||
"roomlist-text-secondary-color": "#e5e9f0",
|
||||
"secondary-content": "#eceff4",
|
||||
"sidebar-color": "#2e3440",
|
||||
"tertiary-content": "#eceff4",
|
||||
"timeline-background-color": "#434c5e",
|
||||
"timeline-highlights-color": "#3b4252",
|
||||
"timeline-text-color": "#eceff4",
|
||||
"timeline-text-secondary-color": "#81a1c1",
|
||||
"warning-color": "#bf616a"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Nord dark theme"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent": "#d6deeb",
|
||||
"accent-color": "#122d42",
|
||||
"alert": "#b39554",
|
||||
"focus-bg-color": "#234d708c",
|
||||
"menu-selected-color": "#234d708c",
|
||||
"other-user-pill-bg-color": "#234d708c",
|
||||
"primary-color": "#122d42",
|
||||
"reaction-row-button-selected-bg-color": "#7e57c25a",
|
||||
"room-highlight-color": "#234d708c",
|
||||
"roomlist-background-color": "#011627",
|
||||
"roomlist-highlights-color": "#1085bb5d",
|
||||
"roomlist-separator-color": "#5f7e97",
|
||||
"roomlist-text-color": "#d6deeb",
|
||||
"roomlist-text-secondary-color": "#5f7e97",
|
||||
"secondary-content": "#5f7e97",
|
||||
"sidebar-color": "#011627",
|
||||
"tertiary-content": "#5f7e97",
|
||||
"timeline-background-color": "#011627",
|
||||
"timeline-highlights-color": "#5F7E9779",
|
||||
"timeline-text-color": "#5f7e97",
|
||||
"timeline-text-secondary-color": "#d6deeb",
|
||||
"togglesw-off-color": "#010b14",
|
||||
"warning-color": "#b39554"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Night Owl"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#25863c",
|
||||
"primary-color": "#4695f7",
|
||||
"reaction-row-button-selected-bg-color": "#132338",
|
||||
"roomlist-background-color": "#0d1117",
|
||||
"roomlist-highlights-color": "#161b22",
|
||||
"roomlist-separator-color": "#21262d",
|
||||
"roomlist-text-color": "#c9d1d9",
|
||||
"roomlist-text-secondary-color": "#b9b9b9",
|
||||
"secondary-content": "#c9d1d9",
|
||||
"sidebar-color": "#161b22",
|
||||
"tertiary-content": "#c9d1d9",
|
||||
"timeline-background-color": "#0d1117",
|
||||
"timeline-highlights-color": "#252525",
|
||||
"timeline-text-color": "#c9d1d9",
|
||||
"timeline-text-secondary-color": "#8b949e",
|
||||
"username-colors": [
|
||||
"#f85149",
|
||||
"#d29922",
|
||||
"#42b958",
|
||||
"#58a6fc",
|
||||
"#a271f3",
|
||||
"#f9524a",
|
||||
"#43ba59",
|
||||
"#a372f4"
|
||||
],
|
||||
"warning-color": "#ed4a46"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Covalence"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent": "#fd6883",
|
||||
"accent-color": "#fff1f3",
|
||||
"alert": "#fd6883",
|
||||
"avatar-background-colors": [
|
||||
"#458588",
|
||||
"#b16286",
|
||||
"#adda78"
|
||||
],
|
||||
"icon-button-color": "#f9cc6c",
|
||||
"menu-selected-color": "#f9cc6c",
|
||||
"primary-color": "#f38d70",
|
||||
"quinary-content": "#221f22",
|
||||
"reaction-row-button-selected-bg-color": "#adda78",
|
||||
"roomlist-background-color": "#221f22",
|
||||
"roomlist-highlights-color": "#3b394a",
|
||||
"roomlist-separator-color": "#2D2a2e",
|
||||
"roomlist-text-color": "#fff1ff",
|
||||
"roomlist-text-secondary-color": "#f9cc6c",
|
||||
"secondary-content": "#fff1f3",
|
||||
"sidebar-color": "#2d2a2e",
|
||||
"tertiary-content": "#fff1f3",
|
||||
"timeline-background-color": "#2D2a2e",
|
||||
"timeline-highlights-color": "#00000030",
|
||||
"timeline-text-color": "#fff1ff",
|
||||
"timeline-text-secondary-color": "#fff1ff",
|
||||
"username-colors": [
|
||||
"#cc241d",
|
||||
"#689d6a",
|
||||
"#f9cc6c",
|
||||
"#b16286",
|
||||
"#85dacc",
|
||||
"#adda78",
|
||||
"#a89984",
|
||||
"#f38d70"
|
||||
],
|
||||
"warning-color": "#fd6883"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Monokai Pro"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent": "#689d6a",
|
||||
"accent-color": "#bd93f9",
|
||||
"alert": "#cc241d",
|
||||
"avatar-background-colors": [
|
||||
"#458588",
|
||||
"#b16286",
|
||||
"#689d6a"
|
||||
],
|
||||
"icon-button-color": "#928374",
|
||||
"menu-selected-color": "#504945",
|
||||
"primary-color": "#fe8019",
|
||||
"quinary-content": "#504945",
|
||||
"reaction-row-button-selected-bg-color": "#689d6a",
|
||||
"roomlist-background-color": "#1d2021",
|
||||
"roomlist-highlights-color": "#00000030",
|
||||
"roomlist-separator-color": "#4d4d4d90",
|
||||
"roomlist-text-color": "#a89984",
|
||||
"roomlist-text-secondary-color": "#00ff00",
|
||||
"secondary-content": "#928374",
|
||||
"sidebar-color": "#282828",
|
||||
"tertiary-content": "#928374",
|
||||
"timeline-background-color": "#282828",
|
||||
"timeline-highlights-color": "#00000030",
|
||||
"timeline-text-color": "#ebdbb2",
|
||||
"timeline-text-secondary-color": "#a89984",
|
||||
"username-colors": [
|
||||
"#cc241d",
|
||||
"#98971a",
|
||||
"#d79921",
|
||||
"#458588",
|
||||
"#b16286",
|
||||
"#689d6a",
|
||||
"#a89984",
|
||||
"#d65d0e"
|
||||
],
|
||||
"warning-color": "#fb4934"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "Gruvbox Dark"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent": "#689d6a",
|
||||
"accent-color": "#cc241d",
|
||||
"alert": "#cc241d",
|
||||
"avatar-background-colors": [
|
||||
"#458588",
|
||||
"#b16286",
|
||||
"#689d6a"
|
||||
],
|
||||
"icon-button-color": "#928374",
|
||||
"menu-selected-color": "#d5c4a1",
|
||||
"primary-color": "#af3a03",
|
||||
"quinary-content": "#d5c4a1",
|
||||
"reaction-row-button-selected-bg-color": "#689d6a",
|
||||
"roomlist-background-color": "#f9f5d7",
|
||||
"roomlist-highlights-color": "#ebdbb2",
|
||||
"roomlist-separator-color": "#d5c4a1",
|
||||
"roomlist-text-color": "#7c6f64",
|
||||
"roomlist-text-secondary-color": "#504945",
|
||||
"secondary-content": "#928374",
|
||||
"sidebar-color": "#fbf1c7",
|
||||
"system": "#fbf1c7",
|
||||
"tertiary-content": "#928374",
|
||||
"timeline-background-color": "#fbf1c7",
|
||||
"timeline-highlights-color": "#00000030",
|
||||
"timeline-text-color": "#3c3836",
|
||||
"timeline-text-secondary-color": "#7c6f64",
|
||||
"username-colors": [
|
||||
"#cc241d",
|
||||
"#98971a",
|
||||
"#d79921",
|
||||
"#458588",
|
||||
"#b16286",
|
||||
"#689d6a",
|
||||
"#a89984",
|
||||
"#d65d0e"
|
||||
],
|
||||
"warning-color": "#9d0006"
|
||||
},
|
||||
"is_dark": false,
|
||||
"name": "Gruvbox Light"
|
||||
},
|
||||
{
|
||||
"colors": {
|
||||
"accent-color": "#cc7b19",
|
||||
"primary-color": "#9F8652",
|
||||
"reaction-row-button-selected-bg-color": "#cc7b19",
|
||||
"roomlist-background-color": "#191919",
|
||||
"roomlist-highlights-color": "#323232",
|
||||
"roomlist-separator-color": "#4c4c4c",
|
||||
"roomlist-text-color": "#cc7b19",
|
||||
"roomlist-text-secondary-color": "#e5e5e5",
|
||||
"secondary-content": "#e5e5e5",
|
||||
"sidebar-color": "#000000",
|
||||
"tertiary-content": "#e5e5e5",
|
||||
"timeline-background-color": "#000000",
|
||||
"timeline-highlights-color": "#212121",
|
||||
"timeline-text-color": "#e5e5e5",
|
||||
"timeline-text-secondary-color": "#b2b2b2",
|
||||
"warning-color": "#f9c003"
|
||||
},
|
||||
"is_dark": true,
|
||||
"name": "ThomCat black theme"
|
||||
}
|
||||
]
|
||||
},
|
||||
"element_call": {
|
||||
"url": "https://call.element.dev"
|
||||
},
|
||||
"map_style_url": "https://api.maptiler.com/maps/streets/style.json?key=fU3vlMsMn4Jb6dnEIFsx"
|
||||
"map_style_url": "https://api.maptiler.com/maps/streets/style.json?key=fU3vlMsMn4Jb6dnEIFsx",
|
||||
"default_server_name": "ellis.link"
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue