diff options
Diffstat (limited to 'users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes')
34 files changed, 1089 insertions, 0 deletions
diff --git a/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/amarena.js b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/amarena.js new file mode 100755 index 0000000..91561c1 --- /dev/null +++ b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/amarena.js | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | export const theme = { | ||
| 2 | name: "Amarena", | ||
| 3 | kind: "dark", | ||
| 4 | main: "#1a2026", | ||
| 5 | mainAlt: "#526170", | ||
| 6 | minor: "#242d35", | ||
| 7 | red: "#f26190", | ||
| 8 | green: "#fb6396", | ||
| 9 | yellow: "#f92d72", | ||
| 10 | orange: "#c269bc", | ||
| 11 | blue: "#4cb9d6", | ||
| 12 | magenta: "#58d6bf", | ||
| 13 | cyan: "#6ccb6e", | ||
| 14 | black: "#1a2026", | ||
| 15 | white: "#f4f5f2", | ||
| 16 | foreground: "#f4f5f2", | ||
| 17 | transparentDark: "rgba(0, 0, 0, 0.05)", | ||
| 18 | defaultFont: "MesloLGS NF, JetBrains Mono, Monaco, Menlo, monospace", | ||
| 19 | barHeight: "34px", | ||
| 20 | compactBarHeight: "28px", | ||
| 21 | barRadius: "3px", | ||
| 22 | barBorder: "0px solid transparent", | ||
| 23 | barInnerMargin: "3px", | ||
| 24 | itemRadius: "3px", | ||
| 25 | itemInnerMargin: "3px 7px", | ||
| 26 | itemOuterMargin: "0 0 0 4px", | ||
| 27 | hoverRing: "0 0 0 1px rgba(249, 45, 114, 0.75)", | ||
| 28 | focusRing: "0 0 0 1px rgb(249, 45, 114)", | ||
| 29 | lightShadow: "0 5px 10px rgba(0, 0, 0, 0)", | ||
| 30 | transitionEasing: "cubic-bezier(0.4, 0, 0.2, 1)", | ||
| 31 | clickEffect: "rgba(255, 255, 255, 0.3)", | ||
| 32 | }; | ||
diff --git a/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/catppuccin-frappe.js b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/catppuccin-frappe.js new file mode 100755 index 0000000..7f6ab49 --- /dev/null +++ b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/catppuccin-frappe.js | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | export const theme = { | ||
| 2 | name: "Catppuccin Frappe", | ||
| 3 | kind: "dark", | ||
| 4 | main: "#303446", // Base | ||
| 5 | mainAlt: "#292c3c", // Mantle | ||
| 6 | minor: "#232634", // Crust | ||
| 7 | red: "#e78284", // Red | ||
| 8 | green: "#a6d189", // Green | ||
| 9 | yellow: "#e5c890", // Yellow | ||
| 10 | orange: "#ef9f76", // Peach | ||
| 11 | blue: "#8caaee", // Blue | ||
| 12 | magenta: "#ca9ee6", // Mauve | ||
| 13 | cyan: "#99d1db", // Sky | ||
| 14 | black: "#303446", // Base | ||
| 15 | white: "#c6d0f5", // Text | ||
| 16 | foreground: "#c6d0f5", // Text | ||
| 17 | transparentDark: "rgba(0, 0, 0, 0.05)", | ||
| 18 | defaultFont: "JetBrains Mono, Monaco, Menlo, monospace", | ||
| 19 | barHeight: "34px", | ||
| 20 | compactBarHeight: "28px", | ||
| 21 | barRadius: "3px", | ||
| 22 | barBorder: "0px solid transparent", | ||
| 23 | barInnerMargin: "3px", | ||
| 24 | itemRadius: "2px", | ||
| 25 | itemInnerMargin: "3px 7px", | ||
| 26 | itemOuterMargin: "0 0 0 5px", | ||
| 27 | hoverRing: "0 0 0 2px rgba(255, 255, 255, 0.75)", | ||
| 28 | focusRing: "0 0 0 2px rgb(255, 255, 255)", | ||
| 29 | lightShadow: "0 5px 10px rgba(0, 0, 0, 0.24)", | ||
| 30 | transitionEasing: "cubic-bezier(0.4, 0, 0.2, 1)", | ||
| 31 | clickEffect: "rgba(255, 255, 255, 0.3)", | ||
| 32 | }; | ||
diff --git a/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/catppuccin-latte.js b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/catppuccin-latte.js new file mode 100755 index 0000000..dd53fec --- /dev/null +++ b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/catppuccin-latte.js | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | export const theme = { | ||
| 2 | name: "Catppuccin Latte", | ||
| 3 | kind: "light", | ||
| 4 | main: "#eff1f5", // Base | ||
| 5 | mainAlt: "#e6e9ef", // Mantle | ||
| 6 | minor: "#dce0e8", // Crust | ||
| 7 | red: "#d20f39", // Red | ||
| 8 | green: "#40a02b", // Green | ||
| 9 | yellow: "#df8e1d", // Yellow | ||
| 10 | orange: "#fe640b", // Peach | ||
| 11 | blue: "#1e66f5", // Blue | ||
| 12 | magenta: "#8839ef", // Mauve | ||
| 13 | cyan: "#04a5e5", // Sky | ||
| 14 | black: "#4c4f69", // Text | ||
| 15 | white: "#eff1f5", // Base | ||
| 16 | foreground: "#4c4f69", // Text | ||
| 17 | transparentDark: "rgba(0, 0, 0, 0.05)", | ||
| 18 | defaultFont: "JetBrains Mono, Monaco, Menlo, monospace", | ||
| 19 | barHeight: "34px", | ||
| 20 | compactBarHeight: "28px", | ||
| 21 | barRadius: "3px", | ||
| 22 | barBorder: "0px solid transparent", | ||
| 23 | barInnerMargin: "3px", | ||
| 24 | itemRadius: "2px", | ||
| 25 | itemInnerMargin: "3px 7px", | ||
| 26 | itemOuterMargin: "0 0 0 5px", | ||
| 27 | hoverRing: "0 0 0 2px rgba(255, 255, 255, 0.75)", | ||
| 28 | focusRing: "0 0 0 2px rgb(255, 255, 255)", | ||
| 29 | lightShadow: "0 5px 10px rgba(0, 0, 0, 0.24)", | ||
| 30 | transitionEasing: "cubic-bezier(0.4, 0, 0.2, 1)", | ||
| 31 | clickEffect: "rgba(255, 255, 255, 0.3)", | ||
| 32 | }; | ||
diff --git a/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/catppuccin-macchiato.js b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/catppuccin-macchiato.js new file mode 100755 index 0000000..f1db514 --- /dev/null +++ b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/catppuccin-macchiato.js | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | export const theme = { | ||
| 2 | name: "Catppuccin Macchiato", | ||
| 3 | kind: "dark", | ||
| 4 | main: "#24273a", // Base | ||
| 5 | mainAlt: "#1e2030", // Mantle | ||
| 6 | minor: "#181926", // Crust | ||
| 7 | red: "#ed8796", // Red | ||
| 8 | green: "#a6da95", // Green | ||
| 9 | yellow: "#eed49f", // Yellow | ||
| 10 | orange: "#f5a97f", // Peach | ||
| 11 | blue: "#8aadf4", // Blue | ||
| 12 | magenta: "#c6a0f6", // Mauve | ||
| 13 | cyan: "#91d7e3", // Sky | ||
| 14 | black: "#24273a", // Base | ||
| 15 | white: "#cad3f5", // Text | ||
| 16 | foreground: "#cad3f5", // Text | ||
| 17 | transparentDark: "rgba(0, 0, 0, 0.05)", | ||
| 18 | defaultFont: "JetBrains Mono, Monaco, Menlo, monospace", | ||
| 19 | barHeight: "34px", | ||
| 20 | compactBarHeight: "28px", | ||
| 21 | barRadius: "3px", | ||
| 22 | barBorder: "0px solid transparent", | ||
| 23 | barInnerMargin: "3px", | ||
| 24 | itemRadius: "2px", | ||
| 25 | itemInnerMargin: "3px 7px", | ||
| 26 | itemOuterMargin: "0 0 0 5px", | ||
| 27 | hoverRing: "0 0 0 2px rgba(255, 255, 255, 0.75)", | ||
| 28 | focusRing: "0 0 0 2px rgb(255, 255, 255)", | ||
| 29 | lightShadow: "0 5px 10px rgba(0, 0, 0, 0.24)", | ||
| 30 | transitionEasing: "cubic-bezier(0.4, 0, 0.2, 1)", | ||
| 31 | clickEffect: "rgba(255, 255, 255, 0.3)", | ||
| 32 | }; | ||
diff --git a/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/catppuccin-mocha.js b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/catppuccin-mocha.js new file mode 100755 index 0000000..64b1cc2 --- /dev/null +++ b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/catppuccin-mocha.js | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | export const theme = { | ||
| 2 | name: "Catppuccin Mocha", | ||
| 3 | kind: "dark", | ||
| 4 | main: "#1e1e2e", // Base | ||
| 5 | mainAlt: "#181825", // Mantle | ||
| 6 | minor: "#11111b", // Crust | ||
| 7 | red: "#f38ba8", // Red | ||
| 8 | green: "#a6e3a1", // Green | ||
| 9 | yellow: "#f9e2af", // Yellow | ||
| 10 | orange: "#fab387", // Peach | ||
| 11 | blue: "#89b4fa", // Blue | ||
| 12 | magenta: "#cba6f7", // Mauve | ||
| 13 | cyan: "#89dceb", // Sky | ||
| 14 | black: "#1e1e2e", // Base | ||
| 15 | white: "#cdd6f4", // Text | ||
| 16 | foreground: "#cdd6f4", // Text | ||
| 17 | transparentDark: "rgba(0, 0, 0, 0.05)", | ||
| 18 | defaultFont: "JetBrains Mono, Monaco, Menlo, monospace", | ||
| 19 | barHeight: "34px", | ||
| 20 | compactBarHeight: "28px", | ||
| 21 | barRadius: "3px", | ||
| 22 | barBorder: "0px solid transparent", | ||
| 23 | barInnerMargin: "3px", | ||
| 24 | itemRadius: "2px", | ||
| 25 | itemInnerMargin: "3px 7px", | ||
| 26 | itemOuterMargin: "0 0 0 5px", | ||
| 27 | hoverRing: "0 0 0 2px rgba(255, 255, 255, 0.75)", | ||
| 28 | focusRing: "0 0 0 2px rgb(255, 255, 255)", | ||
| 29 | lightShadow: "0 5px 10px rgba(0, 0, 0, 0.24)", | ||
| 30 | transitionEasing: "cubic-bezier(0.4, 0, 0.2, 1)", | ||
| 31 | clickEffect: "rgba(255, 255, 255, 0.3)", | ||
| 32 | }; | ||
diff --git a/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/catppuccin.js b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/catppuccin.js new file mode 100755 index 0000000..2ac8520 --- /dev/null +++ b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/catppuccin.js | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | export const theme = { | ||
| 2 | name: "Catppuccin (old)", | ||
| 3 | kind: "dark", | ||
| 4 | main: "#1E1E2E", | ||
| 5 | mainAlt: "#302D41", | ||
| 6 | minor: "#575268", | ||
| 7 | red: "#F28FAD", | ||
| 8 | green: "#ABE9B3", | ||
| 9 | yellow: "#FAE3B0", | ||
| 10 | orange: "#F8BD96", | ||
| 11 | blue: "#96CDFB", | ||
| 12 | magenta: "#DDB6F2", | ||
| 13 | cyan: "#89DCEB", | ||
| 14 | black: "#161320", | ||
| 15 | white: "#D9E0EE", | ||
| 16 | foreground: "#D9E0EE", | ||
| 17 | transparentDark: "rgba(0, 0, 0, 0.05)", | ||
| 18 | defaultFont: "JetBrains Mono, Monaco, Menlo, monospace", | ||
| 19 | barHeight: "34px", | ||
| 20 | compactBarHeight: "28px", | ||
| 21 | barRadius: "3px", | ||
| 22 | barBorder: "0px solid transparent", | ||
| 23 | barInnerMargin: "3px", | ||
| 24 | itemRadius: "2px", | ||
| 25 | itemInnerMargin: "3px 7px", | ||
| 26 | itemOuterMargin: "0 0 0 5px", | ||
| 27 | hoverRing: "0 0 0 2px rgba(255, 255, 255, 0.75)", | ||
| 28 | focusRing: "0 0 0 2px rgb(255, 255, 255)", | ||
| 29 | lightShadow: "0 5px 10px rgba(0, 0, 0, 0.24)", | ||
| 30 | transitionEasing: "cubic-bezier(0.4, 0, 0.2, 1)", | ||
| 31 | clickEffect: "rgba(255, 255, 255, 0.3)", | ||
| 32 | }; | ||
diff --git a/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/cisco.js b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/cisco.js new file mode 100755 index 0000000..a4d84f3 --- /dev/null +++ b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/cisco.js | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | export const theme = { | ||
| 2 | name: "Cisco", | ||
| 3 | kind: "dark", | ||
| 4 | main: "#282a36", | ||
| 5 | mainAlt: "#8E2F91", | ||
| 6 | minor: "#543185", | ||
| 7 | red: "#8E2F91", | ||
| 8 | green: "#8E2F91", | ||
| 9 | yellow: "#BE3161", | ||
| 10 | orange: "#008CD1", | ||
| 11 | blue: "#6E5BC2", | ||
| 12 | magenta: "#8E2F91", | ||
| 13 | cyan: "#CC60CB", | ||
| 14 | black: "#292a2b", | ||
| 15 | white: "#f5f5f5", | ||
| 16 | foreground: "#9E70B5", | ||
| 17 | transparentDark: "rgba(0, 0, 0, 0.05)", | ||
| 18 | defaultFont: "JetBrains Mono, Monaco, Menlo, monospace", | ||
| 19 | barHeight: "34px", | ||
| 20 | compactBarHeight: "28px", | ||
| 21 | barRadius: "3px", | ||
| 22 | barBorder: "0px solid transparent", | ||
| 23 | barInnerMargin: "3px", | ||
| 24 | itemRadius: "2px", | ||
| 25 | itemInnerMargin: "3px 7px", | ||
| 26 | itemOuterMargin: "0 0 0 5px", | ||
| 27 | hoverRing: "0 0 0 2px rgba(255, 255, 255, 0.75)", | ||
| 28 | focusRing: "0 0 0 2px rgb(255, 255, 255)", | ||
| 29 | lightShadow: "0 5px 10px rgba(0, 0, 0, 0.24)", | ||
| 30 | transitionEasing: "cubic-bezier(0.4, 0, 0.2, 1)", | ||
| 31 | clickEffect: "rgba(255, 255, 255, 0.3)", | ||
| 32 | }; | ||
diff --git a/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/cyberdream-dark.js b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/cyberdream-dark.js new file mode 100755 index 0000000..a192d37 --- /dev/null +++ b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/cyberdream-dark.js | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | export const theme = { | ||
| 2 | name: "Cyberdream Dark", | ||
| 3 | kind: "dark", | ||
| 4 | main: "rgba(22, 24, 26, 0.6)", // Base - with 40% transparency | ||
| 5 | mainAlt: "rgba(30, 33, 36, 0.6)", // Mantle - with 40% transparency | ||
| 6 | minor: "rgba(60, 64, 72, 0.6)", // Crust - with 40% transparency | ||
| 7 | red: "#ff6e5e", // Red | ||
| 8 | green: "#5eff6c", // Neon Green | ||
| 9 | yellow: "#f1ff5e", // Yellow | ||
| 10 | orange: "#ffbd5e", // Orange | ||
| 11 | blue: "#5ea1ff", // Blue | ||
| 12 | magenta: "#ff5ef1", // Magenta | ||
| 13 | cyan: "#5ef1ff", // Cyan | ||
| 14 | black: "#16181a", // Base | ||
| 15 | white: "#ffffff", // Text | ||
| 16 | foreground: "#ffffff", // Text | ||
| 17 | transparentDark: "rgba(0, 0, 0, 0.05)", | ||
| 18 | defaultFont: "JetBrains Mono, Monaco, Menlo, monospace", | ||
| 19 | barHeight: "34px", | ||
| 20 | compactBarHeight: "28px", | ||
| 21 | barRadius: "3px", | ||
| 22 | barBorder: "0px solid transparent", | ||
| 23 | barInnerMargin: "3px", | ||
| 24 | itemRadius: "2px", | ||
| 25 | itemInnerMargin: "3px 7px", | ||
| 26 | itemOuterMargin: "0 0 0 5px", | ||
| 27 | hoverRing: "0 0 0 2px rgba(255, 255, 255, 0.75)", | ||
| 28 | focusRing: "0 0 0 2px rgb(255, 255, 255)", | ||
| 29 | lightShadow: "0 5px 10px rgba(0, 0, 0, 0.24)", | ||
| 30 | transitionEasing: "cubic-bezier(0.4, 0, 0.2, 1)", | ||
| 31 | clickEffect: "rgba(255, 255, 255, 0.3)", | ||
| 32 | }; | ||
diff --git a/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/cyberdream-light.js b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/cyberdream-light.js new file mode 100755 index 0000000..4403ec4 --- /dev/null +++ b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/cyberdream-light.js | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | export const theme = { | ||
| 2 | name: "Cyberdream Light", | ||
| 3 | kind: "light", | ||
| 4 | main: "rgba(255, 255, 255, 0.6)", // Base - with 40% transparency | ||
| 5 | mainAlt: "rgba(234, 234, 234, 0.6)", // Mantle - with 40% transparency | ||
| 6 | minor: "rgba(172, 172, 172, 0.6)", // Crust - with 40% transparency | ||
| 7 | red: "#d11500", // Red | ||
| 8 | green: "#008b0c", // Green | ||
| 9 | yellow: "#997b00", // Bronze | ||
| 10 | orange: "#d17c00", // Orange | ||
| 11 | blue: "#0057d1", // Indigo | ||
| 12 | magenta: "#d100bf", // Magenta | ||
| 13 | cyan: "#008c99", // Aqua | ||
| 14 | black: "#16181a", // Text | ||
| 15 | white: "#ffffff", // Base | ||
| 16 | foreground: "#16181a", // Text | ||
| 17 | transparentDark: "rgba(0, 0, 0, 0.05)", | ||
| 18 | defaultFont: "JetBrains Mono, Monaco, Menlo, monospace", | ||
| 19 | barHeight: "34px", | ||
| 20 | compactBarHeight: "28px", | ||
| 21 | barRadius: "3px", | ||
| 22 | barBorder: "0px solid transparent", | ||
| 23 | barInnerMargin: "3px", | ||
| 24 | itemRadius: "2px", | ||
| 25 | itemInnerMargin: "3px 7px", | ||
| 26 | itemOuterMargin: "0 0 0 5px", | ||
| 27 | hoverRing: "0 0 0 2px rgba(255, 255, 255, 0.75)", | ||
| 28 | focusRing: "0 0 0 2px rgb(255, 255, 255)", | ||
| 29 | lightShadow: "0 5px 10px rgba(0, 0, 0, 0.24)", | ||
| 30 | transitionEasing: "cubic-bezier(0.4, 0, 0.2, 1)", | ||
| 31 | clickEffect: "rgba(255, 255, 255, 0.3)", | ||
| 32 | }; | ||
diff --git a/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/dracula.js b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/dracula.js new file mode 100755 index 0000000..8eb6b28 --- /dev/null +++ b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/dracula.js | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | export const theme = { | ||
| 2 | name: "Dracula", | ||
| 3 | kind: "dark", | ||
| 4 | main: "#282a36", | ||
| 5 | mainAlt: "#ff79c6", | ||
| 6 | minor: "#44475a", | ||
| 7 | red: "#ff5555", | ||
| 8 | green: "#50fa7b", | ||
| 9 | yellow: "#f1fa8c", | ||
| 10 | orange: "#ffb86c", | ||
| 11 | blue: "#bd93f9", | ||
| 12 | magenta: "#ff79c6", | ||
| 13 | cyan: "#8be9fd", | ||
| 14 | black: "#282a36", | ||
| 15 | white: "#f8f8f2", | ||
| 16 | foreground: "#f8f8f2", | ||
| 17 | transparentDark: "rgba(0, 0, 0, 0.05)", | ||
| 18 | defaultFont: "JetBrains Mono, Monaco, Menlo, monospace", | ||
| 19 | barHeight: "34px", | ||
| 20 | compactBarHeight: "28px", | ||
| 21 | barRadius: "3px", | ||
| 22 | barBorder: "0px solid transparent", | ||
| 23 | barInnerMargin: "3px", | ||
| 24 | itemRadius: "2px", | ||
| 25 | itemInnerMargin: "3px 7px", | ||
| 26 | itemOuterMargin: "0 0 0 5px", | ||
| 27 | hoverRing: "0 0 0 2px rgba(255, 255, 255, 0.75)", | ||
| 28 | focusRing: "0 0 0 2px rgb(255, 255, 255)", | ||
| 29 | lightShadow: "0 5px 10px rgba(0, 0, 0, 0.24)", | ||
| 30 | transitionEasing: "cubic-bezier(0.4, 0, 0.2, 1)", | ||
| 31 | clickEffect: "rgba(255, 255, 255, 0.3)", | ||
| 32 | }; | ||
diff --git a/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/gruvbox-dark.js b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/gruvbox-dark.js new file mode 100755 index 0000000..e61884c --- /dev/null +++ b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/gruvbox-dark.js | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | export const theme = { | ||
| 2 | name: "Gruvbox Dark", | ||
| 3 | kind: "dark", | ||
| 4 | main: "#282828", | ||
| 5 | mainAlt: "#ff0000", | ||
| 6 | minor: "#3c3836", | ||
| 7 | red: "#cc241d", | ||
| 8 | green: "#98971a", | ||
| 9 | yellow: "#d79921", | ||
| 10 | orange: "#d65d0e", | ||
| 11 | blue: "#458588", | ||
| 12 | magenta: "#b16286", | ||
| 13 | cyan: "#689d6a", | ||
| 14 | black: "#282828", | ||
| 15 | white: "#ebdbb2", | ||
| 16 | foreground: "#ebdbb2", | ||
| 17 | transparentDark: "rgba(0, 0, 0, 0.05)", | ||
| 18 | defaultFont: "JetBrains Mono, Monaco, Menlo, monospace", | ||
| 19 | barHeight: "34px", | ||
| 20 | compactBarHeight: "28px", | ||
| 21 | barRadius: "3px", | ||
| 22 | barBorder: "0px solid transparent", | ||
| 23 | barInnerMargin: "3px", | ||
| 24 | itemRadius: "2px", | ||
| 25 | itemInnerMargin: "3px 7px", | ||
| 26 | itemOuterMargin: "0 0 0 5px", | ||
| 27 | hoverRing: "0 0 0 2px rgba(255, 255, 255, 0.75)", | ||
| 28 | focusRing: "0 0 0 2px rgb(255, 255, 255)", | ||
| 29 | lightShadow: "0 5px 10px rgba(0, 0, 0, 0.24)", | ||
| 30 | transitionEasing: "cubic-bezier(0.4, 0, 0.2, 1)", | ||
| 31 | clickEffect: "rgba(255, 255, 255, 0.3)", | ||
| 32 | }; | ||
diff --git a/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/gruvbox-light.js b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/gruvbox-light.js new file mode 100755 index 0000000..153a38d --- /dev/null +++ b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/gruvbox-light.js | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | export const theme = { | ||
| 2 | name: "Gruvbox Light", | ||
| 3 | kind: "light", | ||
| 4 | main: "#fbf1c7", | ||
| 5 | mainAlt: "#7c6f64", | ||
| 6 | minor: "#ebdbb2", | ||
| 7 | red: "#cc241d", | ||
| 8 | green: "#98971a", | ||
| 9 | yellow: "#d79921", | ||
| 10 | orange: "#d65d0e", | ||
| 11 | blue: "#458588", | ||
| 12 | magenta: "#b16286", | ||
| 13 | cyan: "#689d6a", | ||
| 14 | black: "#fbf1c7", | ||
| 15 | white: "#3c3836", | ||
| 16 | foreground: "#3c3836", | ||
| 17 | transparentDark: "rgba(0, 0, 0, 0.05)", | ||
| 18 | defaultFont: "JetBrains Mono, Monaco, Menlo, monospace", | ||
| 19 | barHeight: "34px", | ||
| 20 | compactBarHeight: "28px", | ||
| 21 | barRadius: "3px", | ||
| 22 | barBorder: "0px solid transparent", | ||
| 23 | barInnerMargin: "3px", | ||
| 24 | itemRadius: "2px", | ||
| 25 | itemInnerMargin: "3px 7px", | ||
| 26 | itemOuterMargin: "0 0 0 5px", | ||
| 27 | hoverRing: "0 0 0 2px rgba(255, 255, 255, 0.75)", | ||
| 28 | focusRing: "0 0 0 2px rgb(255, 255, 255)", | ||
| 29 | lightShadow: "0 5px 10px rgba(0, 0, 0, 0.24)", | ||
| 30 | transitionEasing: "cubic-bezier(0.4, 0, 0.2, 1)", | ||
| 31 | clickEffect: "rgba(255, 255, 255, 0.3)", | ||
| 32 | }; | ||
diff --git a/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/gruvbox-material.js b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/gruvbox-material.js new file mode 100755 index 0000000..1de9fff --- /dev/null +++ b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/gruvbox-material.js | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | export const theme = { | ||
| 2 | name: "Gruvbox Material", | ||
| 3 | kind: "dark", | ||
| 4 | main: "#282828", | ||
| 5 | mainAlt: "#ea6962", | ||
| 6 | minor: "#32302f", | ||
| 7 | red: "#ea6962", | ||
| 8 | green: "#a9b665", | ||
| 9 | yellow: "#e3a84e", | ||
| 10 | orange: "#e78a4e", | ||
| 11 | blue: "#7daea3", | ||
| 12 | magenta: "#d3869b", | ||
| 13 | cyan: "#89b482", | ||
| 14 | black: "#282828", | ||
| 15 | white: "#928374", | ||
| 16 | foreground: "#dfbf8e", | ||
| 17 | transparentDark: "rgba(0, 0, 0, 0.05)", | ||
| 18 | defaultFont: "JetBrains Mono, Monaco, Menlo, monospace", | ||
| 19 | barHeight: "34px", | ||
| 20 | compactBarHeight: "28px", | ||
| 21 | barRadius: "8px", | ||
| 22 | barBorder: "0px solid transparent", | ||
| 23 | barInnerMargin: "3px", | ||
| 24 | itemRadius: "6px", | ||
| 25 | itemInnerMargin: "3px 7px", | ||
| 26 | itemOuterMargin: "0 0 0 5px", | ||
| 27 | hoverRing: "0 0 0 2px rgba(255, 255, 255, 0.75)", | ||
| 28 | focusRing: "0 0 0 2px rgb(255, 255, 255)", | ||
| 29 | lightShadow: "0 5px 10px rgba(0, 0, 0, 0.24)", | ||
| 30 | transitionEasing: "cubic-bezier(0.4, 0, 0.2, 1)", | ||
| 31 | clickEffect: "rgba(255, 255, 255, 0.3)", | ||
| 32 | }; | ||
diff --git a/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/mac-os-dark.js b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/mac-os-dark.js new file mode 100755 index 0000000..f658960 --- /dev/null +++ b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/mac-os-dark.js | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | export const theme = { | ||
| 2 | name: "Mac OS Dark", | ||
| 3 | kind: "dark", | ||
| 4 | main: "#292a2b", | ||
| 5 | mainAlt: "#5f5f60", | ||
| 6 | minor: "#3c3d3e", | ||
| 7 | red: "#ee5f5c", | ||
| 8 | green: "#77b756", | ||
| 9 | yellow: "#f8c644", | ||
| 10 | orange: "#ca8739", | ||
| 11 | blue: "#2b7bf7", | ||
| 12 | magenta: "#9b57a2", | ||
| 13 | cyan: "#e65d9c", | ||
| 14 | black: "#292a2b", | ||
| 15 | white: "#f5f5f5", | ||
| 16 | foreground: "#fff", | ||
| 17 | transparentDark: "rgba(0, 0, 0, 0.05)", | ||
| 18 | defaultFont: "JetBrains Mono, Monaco, Menlo, monospace", | ||
| 19 | barHeight: "34px", | ||
| 20 | compactBarHeight: "28px", | ||
| 21 | barRadius: "16px", | ||
| 22 | barBorder: "0px solid transparent", | ||
| 23 | barInnerMargin: "3px", | ||
| 24 | itemRadius: "14px", | ||
| 25 | itemInnerMargin: "3px 7px", | ||
| 26 | itemOuterMargin: "0 0 0 5px", | ||
| 27 | hoverRing: "0 0 0 2px rgba(255, 255, 255, 0.75)", | ||
| 28 | focusRing: "0 0 0 2px rgb(255, 255, 255)", | ||
| 29 | lightShadow: "0 5px 10px rgba(0, 0, 0, 0.24)", | ||
| 30 | transitionEasing: "cubic-bezier(0.4, 0, 0.2, 1)", | ||
| 31 | clickEffect: "rgba(255, 255, 255, 0.3)", | ||
| 32 | }; | ||
diff --git a/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/mac-os-light.js b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/mac-os-light.js new file mode 100755 index 0000000..61229f9 --- /dev/null +++ b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/mac-os-light.js | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | export const theme = { | ||
| 2 | name: "Mac OS Light", | ||
| 3 | kind: "light", | ||
| 4 | main: "#ececed", | ||
| 5 | mainAlt: "#5f5f60", | ||
| 6 | minor: "#fff", | ||
| 7 | red: "#ee5f5c", | ||
| 8 | green: "#77b756", | ||
| 9 | yellow: "#f8c644", | ||
| 10 | orange: "#ca8739", | ||
| 11 | blue: "#2b7bf7", | ||
| 12 | magenta: "#9b57a2", | ||
| 13 | cyan: "#e65d9c", | ||
| 14 | black: "#292a2b", | ||
| 15 | white: "#f5f5f5", | ||
| 16 | foreground: "#292a2b", | ||
| 17 | transparentDark: "rgba(0, 0, 0, 0.05)", | ||
| 18 | defaultFont: "JetBrains Mono, Monaco, Menlo, monospace", | ||
| 19 | barHeight: "34px", | ||
| 20 | compactBarHeight: "28px", | ||
| 21 | barRadius: "16px", | ||
| 22 | barBorder: "0px solid transparent", | ||
| 23 | barInnerMargin: "3px", | ||
| 24 | itemRadius: "14px", | ||
| 25 | itemInnerMargin: "3px 7px", | ||
| 26 | itemOuterMargin: "0 0 0 5px", | ||
| 27 | hoverRing: "0 0 0 2px rgba(152, 168, 198, 0.5)", | ||
| 28 | focusRing: "0 0 0 2px rgba(152, 168, 198, 0.5)", | ||
| 29 | lightShadow: "0 5px 10px rgba(0, 0, 0, 0.24)", | ||
| 30 | transitionEasing: "cubic-bezier(0.4, 0, 0.2, 1)", | ||
| 31 | clickEffect: "rgba(0, 0, 0, 0.15)", | ||
| 32 | }; | ||
diff --git a/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/material-ocean.js b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/material-ocean.js new file mode 100755 index 0000000..ad521b1 --- /dev/null +++ b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/material-ocean.js | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | export const theme = { | ||
| 2 | name: "Material Theme - Ocean", | ||
| 3 | kind: "dark", | ||
| 4 | main: "rgb(15, 17, 26)", | ||
| 5 | mainAlt: "#0F111A", | ||
| 6 | minor: "#3c3d3e", | ||
| 7 | red: "#f07178", | ||
| 8 | green: "#C3E88D", | ||
| 9 | yellow: "#FFCB6B", | ||
| 10 | orange: "#F78C6C", | ||
| 11 | blue: "#82AAFF", | ||
| 12 | magenta: "#C792EA", | ||
| 13 | cyan: "#89DDFF", | ||
| 14 | black: "#000000", | ||
| 15 | white: "#ffffff", | ||
| 16 | foreground: "#A6ACCD", | ||
| 17 | transparentDark: "rgba(0, 0, 0, 0.05)", | ||
| 18 | defaultFont: "Roboto Mono, monospace", | ||
| 19 | barHeight: "30px", | ||
| 20 | compactBarHeight: "28px", | ||
| 21 | barRadius: "16px", | ||
| 22 | barBorder: "0px solid transparent", | ||
| 23 | barInnerMargin: "3px", | ||
| 24 | itemRadius: "14px", | ||
| 25 | itemInnerMargin: "3px 7px", | ||
| 26 | itemOuterMargin: "0 0 0 5px", | ||
| 27 | hoverRing: "0 0 0 2px rgba(255, 255, 255, 0.75)", | ||
| 28 | focusRing: "0 0 0 2px rgb(255, 255, 255)", | ||
| 29 | lightShadow: "0 5px 10px rgba(0, 0, 0, 0.24)", | ||
| 30 | transitionEasing: "cubic-bezier(0.4, 0, 0.2, 1)", | ||
| 31 | clickEffect: "rgba(255, 255, 255, 0.3)", | ||
| 32 | }; | ||
diff --git a/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/midsummer-night-dark.js b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/midsummer-night-dark.js new file mode 100755 index 0000000..d5358e4 --- /dev/null +++ b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/midsummer-night-dark.js | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | export const theme = { | ||
| 2 | name: "Midsummer Night Dark", | ||
| 3 | kind: "dark", | ||
| 4 | main: "#1c1e27", | ||
| 5 | mainAlt: "#212831", | ||
| 6 | minor: "#212831", | ||
| 7 | red: "#e43d6a", | ||
| 8 | green: "#0af29d", | ||
| 9 | yellow: "#eea585", | ||
| 10 | orange: "#e88376", | ||
| 11 | blue: "#56c2ea", | ||
| 12 | magenta: "#b468d0", | ||
| 13 | cyan: "#00ccbb", | ||
| 14 | black: "#1b222d", | ||
| 15 | white: "#fff", | ||
| 16 | foreground: "#fff", | ||
| 17 | transparentDark: "rgba(0, 0, 0, 0.05)", | ||
| 18 | defaultFont: "JetBrains Mono, Monaco, Menlo, monospace", | ||
| 19 | barHeight: "34px", | ||
| 20 | compactBarHeight: "28px", | ||
| 21 | barRadius: "3px", | ||
| 22 | barBorder: "0px solid transparent", | ||
| 23 | barInnerMargin: "3px", | ||
| 24 | itemRadius: "2px", | ||
| 25 | itemInnerMargin: "3px 7px", | ||
| 26 | itemOuterMargin: "0 0 0 5px", | ||
| 27 | hoverRing: "0 0 0 2px rgba(255, 255, 255, 0.75)", | ||
| 28 | focusRing: "0 0 0 2px rgb(255, 255, 255)", | ||
| 29 | lightShadow: "0 5px 10px rgba(0, 0, 0, 0.24)", | ||
| 30 | transitionEasing: "cubic-bezier(0.4, 0, 0.2, 1)", | ||
| 31 | clickEffect: "rgba(255, 255, 255, 0.3)", | ||
| 32 | }; | ||
diff --git a/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/night-owl.js b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/night-owl.js new file mode 100755 index 0000000..b883b9c --- /dev/null +++ b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/night-owl.js | |||
| @@ -0,0 +1,33 @@ | |||
| 1 | export const theme = { | ||
| 2 | name: "NightOwl", | ||
| 3 | kind: "dark", | ||
| 4 | main: "#011627", | ||
| 5 | mainAlt: "#0b253a", | ||
| 6 | minor: "#084d8180", | ||
| 7 | red: "#ef5350", | ||
| 8 | green: "#22da6e", | ||
| 9 | yellow: "#FFCA28", | ||
| 10 | orange: "#F78C6C", | ||
| 11 | blue: "#82AAFF", | ||
| 12 | magenta: "#C792EA", | ||
| 13 | cyan: "#7fdbca", | ||
| 14 | black: "#011627", | ||
| 15 | white: "#ffffff", | ||
| 16 | foreground: "#d2dee7", | ||
| 17 | transparentDark: "rgba(0, 0, 0, 0.05)", | ||
| 18 | defaultFont: "JetBrains Mono, Monaco, Menlo, monospace", | ||
| 19 | barHeight: "34px", | ||
| 20 | compactBarHeight: "28px", | ||
| 21 | barRadius: "3px", | ||
| 22 | barBorder: "0px solid transparent", | ||
| 23 | barInnerMargin: "3px", | ||
| 24 | itemRadius: "2px", | ||
| 25 | itemInnerMargin: "3px 7px", | ||
| 26 | itemOuterMargin: "0 0 0 5px", | ||
| 27 | hoverRing: "0 0 0 2px rgba(214, 222, 235, 0.5)", | ||
| 28 | focusRing: "0 0 0 2px rgb(214, 222, 235, 0.2)", | ||
| 29 | lightShadow: "0 5px 10px rgba(0, 0, 0, 0.24)", | ||
| 30 | foregroundShadow: "0 0 0 rgba(0, 0, 0, 0)", | ||
| 31 | transitionEasing: "cubic-bezier(0.4, 0, 0.2, 1)", | ||
| 32 | clickEffect: "rgba(214, 222, 235, 0.3)", | ||
| 33 | }; | ||
diff --git a/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/night-shift-dark.js b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/night-shift-dark.js new file mode 100755 index 0000000..dd3e3b3 --- /dev/null +++ b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/night-shift-dark.js | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | export const theme = { | ||
| 2 | name: "Night Shift Dark", | ||
| 3 | kind: "dark", | ||
| 4 | main: "#1b222d", | ||
| 5 | mainAlt: "#98a8c5", | ||
| 6 | minor: "#39465e", | ||
| 7 | red: "#e78482", | ||
| 8 | green: "#8fc8BB", | ||
| 9 | yellow: "#ffd484", | ||
| 10 | orange: "#ffb374", | ||
| 11 | blue: "#6db3cE", | ||
| 12 | magenta: "#ad82cB", | ||
| 13 | cyan: "#7eddde", | ||
| 14 | black: "#1b222d", | ||
| 15 | white: "#fff", | ||
| 16 | foreground: "#fff", | ||
| 17 | transparentDark: "rgba(0, 0, 0, 0.05)", | ||
| 18 | defaultFont: "JetBrains Mono, Monaco, Menlo, monospace", | ||
| 19 | barHeight: "34px", | ||
| 20 | compactBarHeight: "28px", | ||
| 21 | barRadius: "6px", | ||
| 22 | barBorder: "0px solid transparent", | ||
| 23 | barInnerMargin: "3px", | ||
| 24 | itemRadius: "5px", | ||
| 25 | itemInnerMargin: "3px 7px", | ||
| 26 | itemOuterMargin: "0 0 0 5px", | ||
| 27 | hoverRing: "0 0 0 2px rgba(255, 255, 255, 0.75)", | ||
| 28 | focusRing: "0 0 0 2px rgb(255, 255, 255)", | ||
| 29 | lightShadow: "0 5px 10px rgba(0, 0, 0, 0.24)", | ||
| 30 | transitionEasing: "cubic-bezier(0.4, 0, 0.2, 1)", | ||
| 31 | clickEffect: "rgba(255, 255, 255, 0.3)", | ||
| 32 | }; | ||
diff --git a/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/night-shift-light.js b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/night-shift-light.js new file mode 100755 index 0000000..92e7038 --- /dev/null +++ b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/night-shift-light.js | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | export const theme = { | ||
| 2 | name: "Night Shift Light", | ||
| 3 | kind: "light", | ||
| 4 | main: "#fff", | ||
| 5 | mainAlt: "#98a8c5", | ||
| 6 | minor: "#f5f5f5", | ||
| 7 | red: "#e78482", | ||
| 8 | green: "#8fc8bb", | ||
| 9 | yellow: "#d1ab66", | ||
| 10 | orange: "#ffb374", | ||
| 11 | blue: "#6db3ce", | ||
| 12 | magenta: "#ad82cb", | ||
| 13 | cyan: "#2fc2c3", | ||
| 14 | black: "#1b222d", | ||
| 15 | white: "#f5f5f5", | ||
| 16 | foreground: "#1b222d", | ||
| 17 | transparentDark: "rgba(0, 0, 0, 0.05)", | ||
| 18 | defaultFont: "JetBrains Mono, Monaco, Menlo, monospace", | ||
| 19 | barHeight: "34px", | ||
| 20 | compactBarHeight: "28px", | ||
| 21 | barRadius: "6px", | ||
| 22 | barBorder: "0px solid transparent", | ||
| 23 | barInnerMargin: "3px", | ||
| 24 | itemRadius: "5px", | ||
| 25 | itemInnerMargin: "3px 7px", | ||
| 26 | itemOuterMargin: "0 0 0 5px", | ||
| 27 | hoverRing: "0 0 0 2px rgba(152, 168, 198, 0.5)", | ||
| 28 | focusRing: "0 0 0 2px rgba(152, 168, 198, 0.5)", | ||
| 29 | lightShadow: "0 5px 10px rgba(0, 0, 0, 0.24)", | ||
| 30 | transitionEasing: "cubic-bezier(0.4, 0, 0.2, 1)", | ||
| 31 | clickEffect: "rgba(0, 0, 0, 0.15)", | ||
| 32 | }; | ||
diff --git a/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/nightfox-dark.js b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/nightfox-dark.js new file mode 100755 index 0000000..0e8fd6a --- /dev/null +++ b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/nightfox-dark.js | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | export const theme = { | ||
| 2 | name: "Nightfox Dark", | ||
| 3 | kind: "dark", | ||
| 4 | main: "#192330", | ||
| 5 | mainAlt: "#131a24", | ||
| 6 | minor: "#29394f", | ||
| 7 | red: "#c94f6d", | ||
| 8 | green: "#81b29a", | ||
| 9 | yellow: "#dbc074", | ||
| 10 | orange: "#f4a261", | ||
| 11 | blue: "#719cd6", | ||
| 12 | magenta: "#9d79d6", | ||
| 13 | cyan: "#63cdcf", | ||
| 14 | black: "#192330", | ||
| 15 | white: "#dfdfe0", | ||
| 16 | foreground: "#cdcecf", | ||
| 17 | transparentDark: "rgba(0, 0, 0, 0.05)", | ||
| 18 | defaultFont: "JetBrains Mono, Monaco, Menlo, monospace", | ||
| 19 | barHeight: "34px", | ||
| 20 | compactBarHeight: "28px", | ||
| 21 | barRadius: "7px", | ||
| 22 | barBorder: "0px solid transparent", | ||
| 23 | barInnerMargin: "3px", | ||
| 24 | itemRadius: "5px", | ||
| 25 | itemInnerMargin: "3px 9px", | ||
| 26 | itemOuterMargin: "0 0 0 5px", | ||
| 27 | hoverRing: "0 0 0 2px rgba(205, 206, 207, 0.75)", | ||
| 28 | focusRing: "0 0 0 2px rgb(205, 206, 207)", | ||
| 29 | lightShadow: "0 5px 10px rgba(0, 0, 0, 0.24)", | ||
| 30 | transitionEasing: "cubic-bezier(0.4, 0, 0.2, 1)", | ||
| 31 | clickEffect: "rgba(214, 222, 235, 0.3)", | ||
| 32 | }; | ||
diff --git a/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/nightfox-light.js b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/nightfox-light.js new file mode 100755 index 0000000..72d885f --- /dev/null +++ b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/nightfox-light.js | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | export const theme = { | ||
| 2 | name: "Nightfox Light", | ||
| 3 | kind: "light", | ||
| 4 | main: "#f6f2ee", | ||
| 5 | mainAlt: "#e4dcd4", | ||
| 6 | minor: "#d3c7bb", | ||
| 7 | red: "#a5222f", | ||
| 8 | green: "#396847", | ||
| 9 | yellow: "#AC5402", | ||
| 10 | orange: "#955f61", | ||
| 11 | blue: "#2848a9", | ||
| 12 | magenta: "#6e33ce", | ||
| 13 | cyan: "#287980", | ||
| 14 | black: "#352c24", | ||
| 15 | white: "#f2e9e1", | ||
| 16 | foreground: "#3d2b5a", | ||
| 17 | transparentDark: "rgba(0, 0, 0, 0.05)", | ||
| 18 | defaultFont: "JetBrains Mono, Monaco, Menlo, monospace", | ||
| 19 | barHeight: "34px", | ||
| 20 | compactBarHeight: "28px", | ||
| 21 | barRadius: "7px", | ||
| 22 | barBorder: "0px solid transparent", | ||
| 23 | barInnerMargin: "3px", | ||
| 24 | itemRadius: "5px", | ||
| 25 | itemInnerMargin: "3px 9px", | ||
| 26 | itemOuterMargin: "0 0 0 5px", | ||
| 27 | hoverRing: "0 0 0 2px rgba(61, 43, 90, 0.75)", | ||
| 28 | focusRing: "0 0 0 2px rgb(61, 43, 90)", | ||
| 29 | lightShadow: "0 5px 10px rgba(0, 0, 0, 0.24)", | ||
| 30 | transitionEasing: "cubic-bezier(0.4, 0, 0.2, 1)", | ||
| 31 | clickEffect: "rgba(214, 222, 235, 0.3)", | ||
| 32 | }; | ||
diff --git a/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/nord.js b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/nord.js new file mode 100755 index 0000000..0bdf1a7 --- /dev/null +++ b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/nord.js | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | export const theme = { | ||
| 2 | name: "Nord", | ||
| 3 | kind: "dark", | ||
| 4 | main: "#3b4252", | ||
| 5 | mainAlt: "#eceef4", | ||
| 6 | minor: "#4c566a", | ||
| 7 | red: "#bf616a", | ||
| 8 | green: "#a3be8c", | ||
| 9 | yellow: "#ebcb8b", | ||
| 10 | orange: "#d08770", | ||
| 11 | blue: "#81a1c1", | ||
| 12 | magenta: "#b48ead", | ||
| 13 | cyan: "#88c0d0", | ||
| 14 | black: "#2e3440", | ||
| 15 | white: "#eceff4", | ||
| 16 | foreground: "#d8dee9", | ||
| 17 | transparentDark: "rgba(0, 0, 0, 0.05)", | ||
| 18 | defaultFont: "Source Code Pro", | ||
| 19 | barHeight: "34px", | ||
| 20 | compactBarHeight: "28px", | ||
| 21 | barRadius: "16px", | ||
| 22 | barBorder: "0px solid transparent", | ||
| 23 | barInnerMargin: "3px", | ||
| 24 | itemRadius: "14px", | ||
| 25 | itemInnerMargin: "3px 9px", | ||
| 26 | itemOuterMargin: "0 0 0 5px", | ||
| 27 | hoverRing: "0 0 0 2px rgba(255, 255, 255, 0.75)", | ||
| 28 | focusRing: "0 0 0 2px rgb(255, 255, 255)", | ||
| 29 | lightShadow: "0 5px 10px rgba(0, 0, 0, 0.24)", | ||
| 30 | transitionEasing: "cubic-bezier(0.4, 0, 0.2, 1)", | ||
| 31 | clickEffect: "rgba(255, 255, 255, 0.3)", | ||
| 32 | }; | ||
diff --git a/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/one-dark.js b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/one-dark.js new file mode 100755 index 0000000..e73da4f --- /dev/null +++ b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/one-dark.js | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | export const theme = { | ||
| 2 | name: "One Dark", | ||
| 3 | kind: "dark", | ||
| 4 | main: "#21252b", | ||
| 5 | mainAlt: "#e6e6e6", | ||
| 6 | minor: "#323842", | ||
| 7 | red: "#e05561", | ||
| 8 | green: "#8cc265", | ||
| 9 | yellow: "#d18f52", | ||
| 10 | orange: "#ffb374", | ||
| 11 | blue: "#6db3ce", | ||
| 12 | magenta: "#c162de", | ||
| 13 | cyan: "#42b3c2", | ||
| 14 | black: "#21252b", | ||
| 15 | white: "#fff", | ||
| 16 | foreground: "#abb2bf", | ||
| 17 | transparentDark: "rgba(0, 0, 0, 0.05)", | ||
| 18 | defaultFont: "JetBrains Mono, Monaco, Menlo, monospace", | ||
| 19 | barHeight: "34px", | ||
| 20 | compactBarHeight: "28px", | ||
| 21 | barRadius: "16px", | ||
| 22 | barBorder: "0px solid transparent", | ||
| 23 | barInnerMargin: "3px", | ||
| 24 | itemRadius: "20px", | ||
| 25 | itemInnerMargin: "3px 9px", | ||
| 26 | itemOuterMargin: "0 0 0 5px", | ||
| 27 | hoverRing: "0 0 0 2px rgba(255, 255, 255, 0.75)", | ||
| 28 | focusRing: "0 0 0 2px rgb(255, 255, 255)", | ||
| 29 | lightShadow: "0 5px 10px rgba(0, 0, 0, 0.24)", | ||
| 30 | transitionEasing: "cubic-bezier(0.4, 0, 0.2, 1)", | ||
| 31 | clickEffect: "rgba(255, 255, 255, 0.3)", | ||
| 32 | }; | ||
diff --git a/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/one-light.js b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/one-light.js new file mode 100755 index 0000000..64fbb4a --- /dev/null +++ b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/one-light.js | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | export const theme = { | ||
| 2 | name: "One Light", | ||
| 3 | kind: "light", | ||
| 4 | main: "#f5f5f5", | ||
| 5 | mainAlt: "#21252b", | ||
| 6 | minor: "#fff", | ||
| 7 | red: "#e05561", | ||
| 8 | green: "#8cc265", | ||
| 9 | yellow: "#d18f52", | ||
| 10 | orange: "#FFB374", | ||
| 11 | blue: "#6DB3CE", | ||
| 12 | magenta: "#c162de", | ||
| 13 | cyan: "#42b3c2", | ||
| 14 | black: "#21252b", | ||
| 15 | white: "#fff", | ||
| 16 | foreground: "#21252b", | ||
| 17 | transparentDark: "rgba(0, 0, 0, 0.05)", | ||
| 18 | defaultFont: "JetBrains Mono, Monaco, Menlo, monospace", | ||
| 19 | barHeight: "34px", | ||
| 20 | compactBarHeight: "28px", | ||
| 21 | barRadius: "16px", | ||
| 22 | barBorder: "0px solid transparent", | ||
| 23 | barInnerMargin: "3px", | ||
| 24 | itemRadius: "20px", | ||
| 25 | itemInnerMargin: "3px 9px", | ||
| 26 | itemOuterMargin: "0 0 0 5px", | ||
| 27 | hoverRing: "0 0 0 2px rgba(152, 168, 198, 0.5)", | ||
| 28 | focusRing: "0 0 0 2px rgba(152, 168, 198, 0.5)", | ||
| 29 | lightShadow: "0 5px 10px rgba(0, 0, 0, 0.24)", | ||
| 30 | transitionEasing: "cubic-bezier(0.4, 0, 0.2, 1)", | ||
| 31 | clickEffect: "rgba(0, 0, 0, 0.15)", | ||
| 32 | }; | ||
diff --git a/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/rose-pine-dawn.js b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/rose-pine-dawn.js new file mode 100755 index 0000000..50b6b49 --- /dev/null +++ b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/rose-pine-dawn.js | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | export const theme = { | ||
| 2 | name: "Rosé Pine Dawn", | ||
| 3 | kind: "light", | ||
| 4 | main: "#faf4ed", | ||
| 5 | mainAlt: "#fffaf3", | ||
| 6 | minor: "#f2e9e1", | ||
| 7 | red: "#b4637a", | ||
| 8 | green: "#286983", | ||
| 9 | yellow: "#ea9d34", | ||
| 10 | orange: "#d7827e", | ||
| 11 | blue: "#56949f", | ||
| 12 | magenta: "#907aa9", | ||
| 13 | cyan: "#d7827e", | ||
| 14 | black: "#575279", | ||
| 15 | white: "#faf4ed", | ||
| 16 | foreground: "#575279", | ||
| 17 | transparentDark: "rgba(0, 0, 0, 0.05)", | ||
| 18 | defaultFont: "JetBrains Mono, Monaco, Menlo, monospace", | ||
| 19 | barHeight: "34px", | ||
| 20 | compactBarHeight: "28px", | ||
| 21 | barRadius: "3px", | ||
| 22 | barBorder: "0px solid transparent", | ||
| 23 | barInnerMargin: "3px", | ||
| 24 | itemRadius: "2px", | ||
| 25 | itemInnerMargin: "3px 7px", | ||
| 26 | itemOuterMargin: "0 0 0 5px", | ||
| 27 | hoverRing: "0 0 0 2px rgba(152, 168, 198, 0.5)", | ||
| 28 | focusRing: "0 0 0 2px rgba(152, 168, 198, 0.5)", | ||
| 29 | lightShadow: "0 5px 10px rgba(0, 0, 0, 0.24)", | ||
| 30 | transitionEasing: "cubic-bezier(0.4, 0, 0.2, 1)", | ||
| 31 | clickEffect: "rgba(0, 0, 0, 0.15)", | ||
| 32 | }; | ||
diff --git a/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/rose-pine-moon.js b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/rose-pine-moon.js new file mode 100755 index 0000000..d0d3e2b --- /dev/null +++ b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/rose-pine-moon.js | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | export const theme = { | ||
| 2 | name: "Rosé Pine Moon", | ||
| 3 | kind: "dark", | ||
| 4 | main: "#232136", | ||
| 5 | mainAlt: "#2a273f", | ||
| 6 | minor: "#393552", | ||
| 7 | red: "#eb6f92", | ||
| 8 | green: "#3e8fb0", | ||
| 9 | yellow: "#f6c177", | ||
| 10 | orange: "#ea9a97", | ||
| 11 | blue: "#9ccfd8", | ||
| 12 | magenta: "#c4a7e7", | ||
| 13 | cyan: "#ea9a97", | ||
| 14 | black: "#232136", | ||
| 15 | white: "#e0def4", | ||
| 16 | foreground: "#e0def4", | ||
| 17 | transparentDark: "rgba(0, 0, 0, 0.05)", | ||
| 18 | defaultFont: "JetBrains Mono, Monaco, Menlo, monospace", | ||
| 19 | barHeight: "34px", | ||
| 20 | compactBarHeight: "28px", | ||
| 21 | barRadius: "3px", | ||
| 22 | barBorder: "0px solid transparent", | ||
| 23 | barInnerMargin: "3px", | ||
| 24 | itemRadius: "2px", | ||
| 25 | itemInnerMargin: "3px 7px", | ||
| 26 | itemOuterMargin: "0 0 0 5px", | ||
| 27 | hoverRing: "0 0 0 2px rgba(255, 255, 255, 0.75)", | ||
| 28 | focusRing: "0 0 0 2px rgb(255, 255, 255)", | ||
| 29 | lightShadow: "0 5px 10px rgba(0, 0, 0, 0.24)", | ||
| 30 | transitionEasing: "cubic-bezier(0.4, 0, 0.2, 1)", | ||
| 31 | clickEffect: "rgba(255, 255, 255, 0.3)", | ||
| 32 | }; | ||
diff --git a/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/rose-pine.js b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/rose-pine.js new file mode 100755 index 0000000..1c20f58 --- /dev/null +++ b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/rose-pine.js | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | export const theme = { | ||
| 2 | name: "Rosé Pine", | ||
| 3 | kind: "dark", | ||
| 4 | main: "#191724", | ||
| 5 | mainAlt: "#1f1d2e", | ||
| 6 | minor: "#26233a", | ||
| 7 | red: "#eb6f92", | ||
| 8 | green: "#31748f", | ||
| 9 | yellow: "#f6c177", | ||
| 10 | orange: "#ebbcba", | ||
| 11 | blue: "#9ccfd8", | ||
| 12 | magenta: "#c4a7e7", | ||
| 13 | cyan: "#ebbcba", | ||
| 14 | black: "#191724", | ||
| 15 | white: "#e0def4", | ||
| 16 | foreground: "#e0def4", | ||
| 17 | transparentDark: "rgba(0, 0, 0, 0.05)", | ||
| 18 | defaultFont: "JetBrains Mono, Monaco, Menlo, monospace", | ||
| 19 | barHeight: "34px", | ||
| 20 | compactBarHeight: "28px", | ||
| 21 | barRadius: "3px", | ||
| 22 | barBorder: "0px solid transparent", | ||
| 23 | barInnerMargin: "3px", | ||
| 24 | itemRadius: "2px", | ||
| 25 | itemInnerMargin: "3px 7px", | ||
| 26 | itemOuterMargin: "0 0 0 5px", | ||
| 27 | hoverRing: "0 0 0 2px rgba(255, 255, 255, 0.75)", | ||
| 28 | focusRing: "0 0 0 2px rgb(255, 255, 255)", | ||
| 29 | lightShadow: "0 5px 10px rgba(0, 0, 0, 0.24)", | ||
| 30 | transitionEasing: "cubic-bezier(0.4, 0, 0.2, 1)", | ||
| 31 | clickEffect: "rgba(255, 255, 255, 0.3)", | ||
| 32 | }; | ||
diff --git a/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/solarized-dark.js b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/solarized-dark.js new file mode 100755 index 0000000..1beef76 --- /dev/null +++ b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/solarized-dark.js | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | export const theme = { | ||
| 2 | name: "Solarized Dark", | ||
| 3 | kind: "dark", | ||
| 4 | main: "#002b36", | ||
| 5 | mainAlt: "#002b36", | ||
| 6 | minor: "#073642", | ||
| 7 | red: "#dc322f", | ||
| 8 | green: "#859900", | ||
| 9 | yellow: "#b58900", | ||
| 10 | orange: "#cb4b16", | ||
| 11 | blue: "#0087ff", | ||
| 12 | magenta: "#d33682", | ||
| 13 | cyan: "#2aa198", | ||
| 14 | black: "#262626", | ||
| 15 | white: "#e4e4e4", | ||
| 16 | foreground: "#93a1a1", | ||
| 17 | transparentDark: "rgba(0, 0, 0, 0.05)", | ||
| 18 | defaultFont: "JetBrains Mono, Monaco, Menlo, monospace", | ||
| 19 | barHeight: "34px", | ||
| 20 | compactBarHeight: "28px", | ||
| 21 | barRadius: "16px", | ||
| 22 | barBorder: "0px solid transparent", | ||
| 23 | barInnerMargin: "3px", | ||
| 24 | itemRadius: "20px", | ||
| 25 | itemInnerMargin: "3px 9px", | ||
| 26 | itemOuterMargin: "0 0 0 5px", | ||
| 27 | hoverRing: "0 0 0 2px rgba(152, 168, 198, 0.5)", | ||
| 28 | focusRing: "0 0 0 2px rgba(152, 168, 198, 0.5)", | ||
| 29 | lightShadow: "0 5px 10px rgba(0, 0, 0, 0.24)", | ||
| 30 | transitionEasing: "cubic-bezier(0.4, 0, 0.2, 1)", | ||
| 31 | clickEffect: "rgba(0, 0, 0, 0.15)", | ||
| 32 | }; | ||
diff --git a/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/solarized-light.js b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/solarized-light.js new file mode 100755 index 0000000..b90aa81 --- /dev/null +++ b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/solarized-light.js | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | export const theme = { | ||
| 2 | name: "Solarized Light", | ||
| 3 | kind: "light", | ||
| 4 | main: "#fdf6e3", | ||
| 5 | mainAlt: "#fdf6e3", | ||
| 6 | minor: "#eee8d5", | ||
| 7 | red: "#dc322f", | ||
| 8 | green: "#859900", | ||
| 9 | yellow: "#b58900", | ||
| 10 | orange: "#cb4b16", | ||
| 11 | blue: "#0087ff", | ||
| 12 | magenta: "#d33682", | ||
| 13 | cyan: "#2aa198", | ||
| 14 | black: "#262626", | ||
| 15 | white: "#e4e4e4", | ||
| 16 | foreground: "#657b83", | ||
| 17 | transparentDark: "rgba(0, 0, 0, 0.05)", | ||
| 18 | defaultFont: "JetBrains Mono, Monaco, Menlo, monospace", | ||
| 19 | barHeight: "34px", | ||
| 20 | compactBarHeight: "28px", | ||
| 21 | barRadius: "16px", | ||
| 22 | barBorder: "0px solid transparent", | ||
| 23 | barInnerMargin: "3px", | ||
| 24 | itemRadius: "20px", | ||
| 25 | itemInnerMargin: "3px 9px", | ||
| 26 | itemOuterMargin: "0 0 0 5px", | ||
| 27 | hoverRing: "0 0 0 2px rgba(152, 168, 198, 0.5)", | ||
| 28 | focusRing: "0 0 0 2px rgba(152, 168, 198, 0.5)", | ||
| 29 | lightShadow: "0 5px 10px rgba(0, 0, 0, 0.24)", | ||
| 30 | transitionEasing: "cubic-bezier(0.4, 0, 0.2, 1)", | ||
| 31 | clickEffect: "rgba(0, 0, 0, 0.15)", | ||
| 32 | }; | ||
diff --git a/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/spaceduck.js b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/spaceduck.js new file mode 100755 index 0000000..45d4ca9 --- /dev/null +++ b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/spaceduck.js | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | export const theme = { | ||
| 2 | name: "SpaceDuck", | ||
| 3 | kind: "dark", | ||
| 4 | main: "#0f111b", | ||
| 5 | mainAlt: "#b3a1e6", | ||
| 6 | minor: "#1b1c36", | ||
| 7 | red: "#e33400", | ||
| 8 | green: "#5ccc96", | ||
| 9 | yellow: "#f2ce00", | ||
| 10 | orange: "#e39400", | ||
| 11 | blue: "#686f9a", | ||
| 12 | magenta: "#ce6f8f", | ||
| 13 | cyan: "#00a3cc", | ||
| 14 | black: "#000000", | ||
| 15 | white: "#FFF", | ||
| 16 | foreground: "#ecf0c1", | ||
| 17 | transparentDark: "rgba(0, 0, 0, 0.05)", | ||
| 18 | defaultFont: "JetBrains Mono, Monaco, Menlo, monospace", | ||
| 19 | barHeight: "34px", | ||
| 20 | compactBarHeight: "28px", | ||
| 21 | barRadius: "3px", | ||
| 22 | barBorder: "0px solid transparent", | ||
| 23 | barInnerMargin: "5px", | ||
| 24 | itemRadius: "3px", | ||
| 25 | itemInnerMargin: "5px 10px", | ||
| 26 | itemOuterMargin: "0 0 0 4px", | ||
| 27 | hoverRing: "0 0 0 2px rgba(92, 204, 150, 0.75)", | ||
| 28 | focusRing: "0 0 0 2px rgb(92, 204, 150)", | ||
| 29 | lightShadow: "0 5px 10px rgba(0, 0, 0, 0)", | ||
| 30 | transitionEasing: "cubic-bezier(0.4, 0, 0.2, 0)", | ||
| 31 | clickEffect: "rgba(255, 255, 255, 0.3)", | ||
| 32 | }; | ||
diff --git a/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/sylens.js b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/sylens.js new file mode 100755 index 0000000..1d3f8ec --- /dev/null +++ b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/sylens.js | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | export const theme = { | ||
| 2 | name: "Sylens", | ||
| 3 | kind: "dark", | ||
| 4 | main: "#1B2229", | ||
| 5 | mainAlt: "#7d5a15", | ||
| 6 | minor: "#1b2229", | ||
| 7 | red: "#7d5a15", | ||
| 8 | green: "#BF6832", | ||
| 9 | yellow: "#d65d0e", | ||
| 10 | orange: "#475090", | ||
| 11 | blue: "#33736A", | ||
| 12 | magenta: "#814b42", | ||
| 13 | cyan: "#346a97", | ||
| 14 | black: "#a77822", | ||
| 15 | white: "#1b2229", | ||
| 16 | foreground: "#a77822", | ||
| 17 | transparentDark: "rgba(0, 0, 0, 0.05)", | ||
| 18 | defaultFont: "MonoLisa", | ||
| 19 | barHeight: "34px", | ||
| 20 | compactBarHeight: "28px", | ||
| 21 | barRadius: "3px", | ||
| 22 | barBorder: "0px solid transparent", | ||
| 23 | barInnerMargin: "3px", | ||
| 24 | itemRadius: "2px", | ||
| 25 | itemInnerMargin: "3px 7px", | ||
| 26 | itemOuterMargin: "0 0 0 5px", | ||
| 27 | hoverRing: "0 0 0 2px rgba(167, 120, 34, 0.75)", | ||
| 28 | focusRing: "0 0 0 2px rgb(167, 120, 34)", | ||
| 29 | lightShadow: "0 5px 10px rgba(0, 0, 0, 0.24)", | ||
| 30 | transitionEasing: "cubic-bezier(0.4, 0, 0.2, 1)", | ||
| 31 | clickEffect: "rgba(167, 120, 34, H0.3)", | ||
| 32 | }; | ||
diff --git a/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/tokyo-night.js b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/tokyo-night.js new file mode 100755 index 0000000..9982420 --- /dev/null +++ b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/tokyo-night.js | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | export const theme = { | ||
| 2 | name: "Tokyo Night", | ||
| 3 | kind: "dark", | ||
| 4 | main: "#15161E", | ||
| 5 | mainAlt: "#302D41", | ||
| 6 | minor: "#15161E", | ||
| 7 | red: "#F7768E", | ||
| 8 | green: "#9ECE6A", | ||
| 9 | yellow: "#E0AF68", | ||
| 10 | orange: "#F8BD96", | ||
| 11 | blue: "#7AA2F7", | ||
| 12 | magenta: "#BB9AF7", | ||
| 13 | cyan: "#7DCFFF", | ||
| 14 | black: "#15161E", | ||
| 15 | white: "#A9B1D6", | ||
| 16 | foreground: "#A9B1D6", | ||
| 17 | transparentDark: "rgba(0, 0, 0, 0.05)", | ||
| 18 | defaultFont: "JetBrains Mono, Monaco, Menlo, monospace", | ||
| 19 | barHeight: "34px", | ||
| 20 | compactBarHeight: "28px", | ||
| 21 | barRadius: "9px", | ||
| 22 | barBorder: "0px solid transparent", | ||
| 23 | barInnerMargin: "0px", | ||
| 24 | itemRadius: "5px", | ||
| 25 | itemInnerMargin: "0px 9px", | ||
| 26 | itemOuterMargin: "0 0 0 4px", | ||
| 27 | hoverRing: "0 0 0 2px rgba(255, 255, 255, 0.75)", | ||
| 28 | focusRing: "0 0 0 2px rgb(255, 255, 255)", | ||
| 29 | lightShadow: "0 5px 10px rgba(0, 0, 0, 0.24)", | ||
| 30 | transitionEasing: "cubic-bezier(0.4, 0, 0.2, 1)", | ||
| 31 | clickEffect: "rgba(255, 255, 255, 0.3)", | ||
| 32 | }; | ||
diff --git a/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/vscode-dark-modern.js b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/vscode-dark-modern.js new file mode 100755 index 0000000..d997e77 --- /dev/null +++ b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes/vscode-dark-modern.js | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | export const theme = { | ||
| 2 | name: "Vscode Dark Modern", | ||
| 3 | kind: "dark", | ||
| 4 | main: "#181818", | ||
| 5 | mainAlt: "#1f1f1f", | ||
| 6 | minor: "#2a2a2a", | ||
| 7 | red: "#e78482", | ||
| 8 | green: "#4ec6ae", | ||
| 9 | yellow: "#dcdcaa", | ||
| 10 | orange: "#ffb374", | ||
| 11 | blue: "#4fc1ff", | ||
| 12 | magenta: "#c586c0", | ||
| 13 | cyan: "#9cdcfe", | ||
| 14 | black: "#181818", | ||
| 15 | white: "#fff", | ||
| 16 | foreground: "#fff", | ||
| 17 | transparentDark: "rgba(0, 0, 0, 0.05)", | ||
| 18 | defaultFont: "JetBrains Mono, Monaco, Menlo, monospace", | ||
| 19 | barHeight: "34px", | ||
| 20 | compactBarHeight: "28px", | ||
| 21 | barRadius: "3px", | ||
| 22 | barBorder: "0px solid transparent", | ||
| 23 | barInnerMargin: "3px", | ||
| 24 | itemRadius: "7px", | ||
| 25 | itemInnerMargin: "2px 6px", | ||
| 26 | itemOuterMargin: "0 0 0 5px", | ||
| 27 | hoverRing: "0 0 0 2px rgba(255, 255, 255, 0.75)", | ||
| 28 | focusRing: "0 0 0 2px rgb(255, 255, 255)", | ||
| 29 | lightShadow: "0 5px 10px rgba(0, 0, 0, 0.24)", | ||
| 30 | transitionEasing: "cubic-bezier(0.4, 0, 0.2, 1)", | ||
| 31 | clickEffect: "rgba(255, 255, 255, 0.3)", | ||
| 32 | }; | ||
