mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
Attempt to templaterize the theme specific files
This commit is contained in:
@@ -1,29 +0,0 @@
|
||||
[colors]
|
||||
[colors.primary]
|
||||
background = '#1a1b26'
|
||||
foreground = '#a9b1d6'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#32344a'
|
||||
red = '#f7768e'
|
||||
green = '#9ece6a'
|
||||
yellow = '#e0af68'
|
||||
blue = '#7aa2f7'
|
||||
magenta = '#ad8ee6'
|
||||
cyan = '#449dab'
|
||||
white = '#787c99'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#444b6a'
|
||||
red = '#ff7a93'
|
||||
green = '#b9f27c'
|
||||
yellow = '#ff9e64'
|
||||
blue = '#7da6ff'
|
||||
magenta = '#bb9af7'
|
||||
cyan = '#0db9d7'
|
||||
white = '#acb0d0'
|
||||
|
||||
[colors.selection]
|
||||
background = '#7aa2f7'
|
||||
@@ -1,82 +0,0 @@
|
||||
# Theme: tokyo-night
|
||||
# By: Pascal Jaeger
|
||||
|
||||
# Main bg
|
||||
theme[main_bg]="#1a1b26"
|
||||
|
||||
# Main text color
|
||||
theme[main_fg]="#cfc9c2"
|
||||
|
||||
# Title color for boxes
|
||||
theme[title]="#cfc9c2"
|
||||
|
||||
# Highlight color for keyboard shortcuts
|
||||
theme[hi_fg]="#7dcfff"
|
||||
|
||||
# Background color of selected item in processes box
|
||||
theme[selected_bg]="#414868"
|
||||
|
||||
# Foreground color of selected item in processes box
|
||||
theme[selected_fg]="#cfc9c2"
|
||||
|
||||
# Color of inactive/disabled text
|
||||
theme[inactive_fg]="#565f89"
|
||||
|
||||
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
|
||||
theme[proc_misc]="#7dcfff"
|
||||
|
||||
# Cpu box outline color
|
||||
theme[cpu_box]="#565f89"
|
||||
|
||||
# Memory/disks box outline color
|
||||
theme[mem_box]="#565f89"
|
||||
|
||||
# Net up/down box outline color
|
||||
theme[net_box]="#565f89"
|
||||
|
||||
# Processes box outline color
|
||||
theme[proc_box]="#565f89"
|
||||
|
||||
# Box divider line and small boxes line color
|
||||
theme[div_line]="#565f89"
|
||||
|
||||
# Temperature graph colors
|
||||
theme[temp_start]="#9ece6a"
|
||||
theme[temp_mid]="#e0af68"
|
||||
theme[temp_end]="#f7768e"
|
||||
|
||||
# CPU graph colors
|
||||
theme[cpu_start]="#9ece6a"
|
||||
theme[cpu_mid]="#e0af68"
|
||||
theme[cpu_end]="#f7768e"
|
||||
|
||||
# Mem/Disk free meter
|
||||
theme[free_start]="#9ece6a"
|
||||
theme[free_mid]="#e0af68"
|
||||
theme[free_end]="#f7768e"
|
||||
|
||||
# Mem/Disk cached meter
|
||||
theme[cached_start]="#9ece6a"
|
||||
theme[cached_mid]="#e0af68"
|
||||
theme[cached_end]="#f7768e"
|
||||
|
||||
# Mem/Disk available meter
|
||||
theme[available_start]="#9ece6a"
|
||||
theme[available_mid]="#e0af68"
|
||||
theme[available_end]="#f7768e"
|
||||
|
||||
# Mem/Disk used meter
|
||||
theme[used_start]="#9ece6a"
|
||||
theme[used_mid]="#e0af68"
|
||||
theme[used_end]="#f7768e"
|
||||
|
||||
# Download graph colors
|
||||
theme[download_start]="#9ece6a"
|
||||
theme[download_mid]="#e0af68"
|
||||
theme[download_end]="#f7768e"
|
||||
|
||||
# Upload graph colors
|
||||
theme[upload_start]="#9ece6a"
|
||||
theme[upload_mid]="#e0af68"
|
||||
theme[upload_end]="#f7768e"
|
||||
|
||||
24
themes/tokyo-night/colors.toml
Normal file
24
themes/tokyo-night/colors.toml
Normal file
@@ -0,0 +1,24 @@
|
||||
accent = "#7aa2f7"
|
||||
active_border_color = "#7aa2f7"
|
||||
active_tab_background = "#7aa2f7"
|
||||
background = "#1a1b26"
|
||||
color0 = "#32344a"
|
||||
color1 = "#f7768e"
|
||||
color10 = "#b9f27c"
|
||||
color11 = "#ff9e64"
|
||||
color12 = "#7da6ff"
|
||||
color13 = "#bb9af7"
|
||||
color14 = "#0db9d7"
|
||||
color15 = "#acb0d0"
|
||||
color2 = "#9ece6a"
|
||||
color3 = "#e0af68"
|
||||
color4 = "#7aa2f7"
|
||||
color5 = "#ad8ee6"
|
||||
color6 = "#449dab"
|
||||
color7 = "#787c99"
|
||||
color8 = "#444b6a"
|
||||
color9 = "#ff7a93"
|
||||
cursor = "#c0caf5"
|
||||
foreground = "#a9b1d6"
|
||||
selection_background = "#7aa2f7"
|
||||
selection_foreground = "#c0caf5"
|
||||
@@ -1 +0,0 @@
|
||||
theme = TokyoNight
|
||||
@@ -1,94 +0,0 @@
|
||||
@define-color foreground #c0caf5;
|
||||
@define-color background #1a1b26;
|
||||
@define-color accent #7aa2f7;
|
||||
@define-color muted #565f89;
|
||||
@define-color card_bg #24283b;
|
||||
@define-color text_dark #15161e;
|
||||
@define-color accent_hover #9ec1ff;
|
||||
@define-color selected_tab #7dcfff;
|
||||
@define-color text #c0caf5;
|
||||
|
||||
* {
|
||||
all: unset;
|
||||
font-family: JetBrains Mono NF;
|
||||
color: @foreground;
|
||||
font-weight: bold;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.window {
|
||||
background: alpha(@background, 0.95);
|
||||
border: solid 2px @accent;
|
||||
margin: 4px;
|
||||
padding: 18px;
|
||||
}
|
||||
|
||||
tabs {
|
||||
padding: 0.5rem 1rem;
|
||||
}
|
||||
|
||||
tabs > tab {
|
||||
margin-right: 1rem;
|
||||
}
|
||||
|
||||
.tab-label {
|
||||
color: @text;
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
tabs > tab:checked > .tab-label, tabs > tab:active > .tab-label {
|
||||
text-decoration: underline currentColor;
|
||||
color: @selected_tab;
|
||||
}
|
||||
|
||||
tabs > tab:focus > .tab-label {
|
||||
color: @foreground;
|
||||
}
|
||||
|
||||
.page {
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
.image-label {
|
||||
font-size: 12px;
|
||||
padding: 0.25rem;
|
||||
}
|
||||
|
||||
flowboxchild > .card, button > .card {
|
||||
transition: all 0.2s ease;
|
||||
border: solid 2px transparent;
|
||||
border-color: @background;
|
||||
border-radius: 5px;
|
||||
background-color: @card_bg;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
flowboxchild:hover > .card, button:hover > .card, flowboxchild:active > .card, flowboxchild:selected > .card, button:active > .card, button:selected > .card, button:focus > .card {
|
||||
border: solid 2px @accent;
|
||||
}
|
||||
|
||||
.image {
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
.region-button {
|
||||
padding: 0.5rem 1rem;
|
||||
border-radius: 5px;
|
||||
background-color: @accent;
|
||||
color: @text_dark;
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
.region-button > label {
|
||||
color: @text_dark;
|
||||
}
|
||||
|
||||
.region-button:not(:disabled):hover, .region-button:not(:disabled):focus {
|
||||
background-color: @accent_hover;
|
||||
color: @text_dark;
|
||||
}
|
||||
|
||||
.region-button:disabled {
|
||||
background-color: @muted;
|
||||
color: @background;
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
$activeBorderColor = rgba(33ccffee) rgba(00ff99ee) 45deg
|
||||
|
||||
general {
|
||||
col.active_border = $activeBorderColor
|
||||
}
|
||||
|
||||
group {
|
||||
col.border_active = $activeBorderColor
|
||||
}
|
||||
|
||||
@@ -1,5 +0,0 @@
|
||||
$color = rgba(26,27,38,1.0)
|
||||
$inner_color = rgba(26,27,38,0.8)
|
||||
$outer_color = rgba(205,214,244,1.0)
|
||||
$font_color = rgba(205,214,244,1.0)
|
||||
$check_color = rgba(68, 157, 171, 1.0)
|
||||
@@ -1,48 +0,0 @@
|
||||
## name: Tokyo Night
|
||||
## license: MIT
|
||||
## author: Folke Lemaitre
|
||||
## upstream: https://github.com/folke/tokyonight.nvim/raw/main/extras/kitty/tokyonight_night.conf
|
||||
|
||||
|
||||
background #1a1b26
|
||||
foreground #c0caf5
|
||||
selection_background #283457
|
||||
selection_foreground #c0caf5
|
||||
url_color #73daca
|
||||
cursor #c0caf5
|
||||
cursor_text_color #1a1b26
|
||||
|
||||
# Tabs
|
||||
active_tab_background #7aa2f7
|
||||
active_tab_foreground #16161e
|
||||
inactive_tab_background #292e42
|
||||
inactive_tab_foreground #545c7e
|
||||
#tab_bar_background #15161e
|
||||
|
||||
# Windows
|
||||
active_border_color #7aa2f7
|
||||
inactive_border_color #292e42
|
||||
|
||||
# normal
|
||||
color0 #15161e
|
||||
color1 #f7768e
|
||||
color2 #9ece6a
|
||||
color3 #e0af68
|
||||
color4 #7aa2f7
|
||||
color5 #bb9af7
|
||||
color6 #7dcfff
|
||||
color7 #a9b1d6
|
||||
|
||||
# bright
|
||||
color8 #414868
|
||||
color9 #f7768e
|
||||
color10 #9ece6a
|
||||
color11 #e0af68
|
||||
color12 #7aa2f7
|
||||
color13 #bb9af7
|
||||
color14 #7dcfff
|
||||
color15 #c0caf5
|
||||
|
||||
# extended colors
|
||||
color16 #ff9e64
|
||||
color17 #db4b4b
|
||||
@@ -1,5 +0,0 @@
|
||||
include=~/.local/share/omarchy/default/mako/core.ini
|
||||
|
||||
text-color=#c0caf5
|
||||
border-color=#33ccff
|
||||
background-color=#1a1b26
|
||||
@@ -1,6 +0,0 @@
|
||||
@define-color background-color #1a1b26;
|
||||
@define-color border-color #33ccff;
|
||||
@define-color label #a9b1d6;
|
||||
@define-color image #a9b1d6;
|
||||
@define-color progress #a9b1d6;
|
||||
|
||||
@@ -1,6 +0,0 @@
|
||||
@define-color selected-text #7dcfff;
|
||||
@define-color text #cfc9c2;
|
||||
@define-color base #1a1b26;
|
||||
@define-color border #33ccff;
|
||||
@define-color foreground #cfc9c2;
|
||||
@define-color background #1a1b26;
|
||||
@@ -1,2 +0,0 @@
|
||||
@define-color foreground #cdd6f4;
|
||||
@define-color background #1a1b26;
|
||||
Reference in New Issue
Block a user