Compare commits
No commits in common. "909416b503d46051195915cdf2fc9a1e2a907f36" and "39ecaf6c7da60d0e94a772b50ba7218f8ef4da61" have entirely different histories.
909416b503
...
39ecaf6c7d
@ -6,32 +6,32 @@ draw_bold_text_with_bright_colors = false
|
|||||||
|
|
||||||
# Default colors
|
# Default colors
|
||||||
[colors.primary]
|
[colors.primary]
|
||||||
background = "#{{base00}}"
|
background = '0x{{base00}}'
|
||||||
foreground = "#{{base05}}"
|
foreground = '0x{{base05}}'
|
||||||
|
|
||||||
# Colors the cursor will use if `custom_cursor_colors` is true
|
# Colors the cursor will use if `custom_cursor_colors` is true
|
||||||
[colors.cursor]
|
[colors.cursor]
|
||||||
text = "#{{base00}}"
|
text = '0x{{base00}}'
|
||||||
cursor = "#{{base05}}"
|
cursor = '0x{{base05}}'
|
||||||
|
|
||||||
# Normal colors
|
# Normal colors
|
||||||
[colors.normal]
|
[colors.normal]
|
||||||
black = "#{{base00}}"
|
black = '0x{{base00}}'
|
||||||
red = "#{{base08}}"
|
red = '0x{{base08}}'
|
||||||
green = "#{{base0B}}"
|
green = '0x{{base0B}}'
|
||||||
yellow = "#{{base0A}}"
|
yellow = '0x{{base0A}}'
|
||||||
blue = "#{{base0D}}"
|
blue = '0x{{base0D}}'
|
||||||
magenta = "#{{base0E}}"
|
magenta = '0x{{base0E}}'
|
||||||
cyan = "#{{base0C}}"
|
cyan = '0x{{base0C}}'
|
||||||
white = "#{{base05}}"
|
white = '0x{{base05}}'
|
||||||
|
|
||||||
# Bright colors
|
# Bright colors
|
||||||
[colors.bright]
|
[colors.bright]
|
||||||
black = "#{{base03}}"
|
black = '0x{{base03}}'
|
||||||
red = "#{{base09}}"
|
red = '0x{{base09}}'
|
||||||
green = "#{{base01}}"
|
green = '0x{{base01}}'
|
||||||
yellow = "#{{base02}}"
|
yellow = '0x{{base02}}'
|
||||||
blue = "#{{base04}}"
|
blue = '0x{{base04}}'
|
||||||
magenta = "#{{base06}}"
|
magenta = '0x{{base06}}'
|
||||||
cyan = "#{{base0F}}"
|
cyan = '0x{{base0F}}'
|
||||||
white = "#{{base07}}"
|
white = '0x{{base07}}'
|
||||||
|
@ -1,27 +0,0 @@
|
|||||||
# :root {
|
|
||||||
# --vii: #{{base01}};
|
|
||||||
# --vi: #{{base03}};
|
|
||||||
# --v: #{{base08}};
|
|
||||||
# --iv: #{{base05}};
|
|
||||||
# --iiv: #{{base07}};
|
|
||||||
# --a: #{{base0C}};
|
|
||||||
# }
|
|
||||||
|
|
||||||
:root {
|
|
||||||
--base00: #{{base00}};
|
|
||||||
--base01: #{{base01}};
|
|
||||||
--base02: #{{base02}};
|
|
||||||
--base03: #{{base03}};
|
|
||||||
--base04: #{{base04}};
|
|
||||||
--base05: #{{base05}};
|
|
||||||
--base06: #{{base06}};
|
|
||||||
--base07: #{{base07}};
|
|
||||||
--base08: #{{base08}};
|
|
||||||
--base09: #{{base09}};
|
|
||||||
--base0A: #{{base0A}};
|
|
||||||
--base0B: #{{base0B}};
|
|
||||||
--base0C: #{{base0C}};
|
|
||||||
--base0D: #{{base0D}};
|
|
||||||
--base0E: #{{base0E}};
|
|
||||||
--base0F: #{{base0F}};
|
|
||||||
}
|
|
@ -1,45 +0,0 @@
|
|||||||
# Base16 {{scheme-name}} - kitty color config
|
|
||||||
# Scheme by {{scheme-author}}
|
|
||||||
visual_bell_color #{{darken base00 "5"}}
|
|
||||||
|
|
||||||
background #{{base00}}
|
|
||||||
foreground #{{base05}}
|
|
||||||
selection_background #{{base05}}
|
|
||||||
selection_foreground #{{base00}}
|
|
||||||
url_color #{{base0D}}
|
|
||||||
cursor #{{base0D}}
|
|
||||||
cursor_text_color #{{base00}}
|
|
||||||
active_border_color #{{base03}}
|
|
||||||
inactive_border_color #{{base01}}
|
|
||||||
active_tab_background #{{base00}}
|
|
||||||
active_tab_foreground #{{base05}}
|
|
||||||
inactive_tab_background #{{base01}}
|
|
||||||
inactive_tab_foreground #{{base04}}
|
|
||||||
|
|
||||||
# Normal
|
|
||||||
color0 #{{base00}}
|
|
||||||
color1 #{{base08}}
|
|
||||||
color2 #{{base0B}}
|
|
||||||
color3 #{{base0A}}
|
|
||||||
color4 #{{base0D}}
|
|
||||||
color5 #{{base0E}}
|
|
||||||
color6 #{{base0C}}
|
|
||||||
color7 #{{base05}}
|
|
||||||
|
|
||||||
# Bright (same as Normal except 8/15)
|
|
||||||
color8 #{{base03}}
|
|
||||||
color9 #{{base08}}
|
|
||||||
color10 #{{base0B}}
|
|
||||||
color11 #{{base0A}}
|
|
||||||
color12 #{{base0D}}
|
|
||||||
color13 #{{base0E}}
|
|
||||||
color14 #{{base0C}}
|
|
||||||
color15 #{{base07}}
|
|
||||||
|
|
||||||
# Other (like base16-shell)
|
|
||||||
color16 #{{base09}}
|
|
||||||
color17 #{{base0F}}
|
|
||||||
color18 #{{base01}}
|
|
||||||
color19 #{{base02}}
|
|
||||||
color20 #{{base04}}
|
|
||||||
color21 #{{base06}}
|
|
@ -1,121 +0,0 @@
|
|||||||
/* Base16 {{scheme-name}}
|
|
||||||
* Scheme author: {{scheme-author}}
|
|
||||||
* Obsidian theme author: acidghost (https://github.com/acidghost)
|
|
||||||
*/
|
|
||||||
|
|
||||||
:root {
|
|
||||||
--font-monospace: 'Hack Nerd Font', 'Source Code Pro', monospace;
|
|
||||||
}
|
|
||||||
|
|
||||||
.theme-dark {
|
|
||||||
--background-primary: #{{base00}};
|
|
||||||
--background-primary-alt: #{{base01}};
|
|
||||||
--background-secondary: #{{base00}};
|
|
||||||
--background-secondary-alt: #{{base01}};
|
|
||||||
--background-modifier-border: #{{base03}};
|
|
||||||
--background-modifier-form-field: rgba(0, 0, 0, 0.3);
|
|
||||||
--background-modifier-form-field-highlighted: rgba(0, 0, 0, 0.22);
|
|
||||||
--background-modifier-box-shadow: rgba(0, 0, 0, 0.3);
|
|
||||||
--background-modifier-success: #{{base0B}};
|
|
||||||
--background-modifier-error: #{{base08}};
|
|
||||||
--background-modifier-error-rgb: {{rgb_r base08}}, {{rgb_g base08}}, {{rgb_b base08}};
|
|
||||||
/* --background-modifier-error-hover: #470000; */
|
|
||||||
--background-modifier-cover: rgba(0, 0, 0, 0.8);
|
|
||||||
--text-accent: #{{base0F}};
|
|
||||||
--text-accent-hover: #{{base0D}};
|
|
||||||
--text-normal: #{{base07}};
|
|
||||||
--text-muted: #{{base05}};
|
|
||||||
--text-muted-rgb: {{rgb_r base05}}, {{rgb_g base05}}, {{rgb_b base05}};
|
|
||||||
--text-faint: #{{base03}};
|
|
||||||
--text-error: #{{base0E}};
|
|
||||||
--text-error-hover: #{{base08}};
|
|
||||||
--text-highlight-bg: rgba(255, 255, 0, 0.4);
|
|
||||||
--text-highlight-bg-active: rgba(255, 128, 0, 0.4);
|
|
||||||
--text-selection: rgba(23, 48, 77, 0.99);
|
|
||||||
--text-on-accent: #dcddde;
|
|
||||||
--interactive-normal: #2a2a2a;
|
|
||||||
--interactive-hover: #303030;
|
|
||||||
--interactive-accent: #{{base0F}};
|
|
||||||
--interactive-accent-rgb: {{rgb_r base0F}}, {{rgb_g base0F}}, {{rgb_b base0F}};
|
|
||||||
--interactive-accent-hover: #{{base0E}};
|
|
||||||
--interactive-success: #197300;
|
|
||||||
--scrollbar-active-thumb-bg: rgba(255, 255, 255, 0.1);
|
|
||||||
--scrollbar-bg: rgba(255, 255, 255, 0.05);
|
|
||||||
--scrollbar-thumb-bg: rgba(255, 255, 255, 0.1);
|
|
||||||
--highlight-mix-blend-mode: lighten;
|
|
||||||
}
|
|
||||||
|
|
||||||
.CodeMirror-lines {
|
|
||||||
font-family: var(--font-monospace);
|
|
||||||
}
|
|
||||||
|
|
||||||
.graph-view.color-fill,
|
|
||||||
.graph-view.color-circle,
|
|
||||||
.graph-view.color-line,
|
|
||||||
.graph-view.color-text,
|
|
||||||
.graph-view.color-arrow {
|
|
||||||
color: var(--text-accent);
|
|
||||||
}
|
|
||||||
|
|
||||||
.graph-view.color-fill-highlight,
|
|
||||||
.graph-view.color-line-highlight {
|
|
||||||
color: var(--text-accent-hover);
|
|
||||||
}
|
|
||||||
|
|
||||||
.graph-view.color-fill-unresolved {
|
|
||||||
color: #600;
|
|
||||||
}
|
|
||||||
|
|
||||||
.workspace-tabs .workspace-leaf {
|
|
||||||
background-color: var(--background-primary);
|
|
||||||
}
|
|
||||||
|
|
||||||
.workspace-tab-header-container {
|
|
||||||
background-color: var(--background-primary);
|
|
||||||
}
|
|
||||||
|
|
||||||
.workspace-tab-header.is-active {
|
|
||||||
background-color: var(--background-primary);
|
|
||||||
color: var(--text-accent);
|
|
||||||
}
|
|
||||||
|
|
||||||
.workspace-tab-header.is-after-active .workspace-tab-header-inner,
|
|
||||||
.workspace-tab-header.is-before-active .workspace-tab-header-inner {
|
|
||||||
background-color: var(--background-primary);
|
|
||||||
}
|
|
||||||
|
|
||||||
.workspace-tab-container-before.is-before-active .workspace-tab-header-inner,
|
|
||||||
.workspace-tab-container-after.is-after-active .workspace-tab-header-inner,
|
|
||||||
.workspace-tab-header.is-before-active .workspace-tab-header-inner,
|
|
||||||
.workspace-tab-header.is-after-active .workspace-tab-header-inner {
|
|
||||||
background-color: var(--background-primary);
|
|
||||||
}
|
|
||||||
|
|
||||||
.workspace-split.mod-root > .workspace-leaf:last-of-type .workspace-leaf-content {
|
|
||||||
border-top-right-radius: 0;
|
|
||||||
}
|
|
||||||
.workspace-split.mod-root > .workspace-leaf:first-of-type .workspace-leaf-content {
|
|
||||||
border-top-left-radius: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.workspace-split.mod-left-split .workspace-tabs .workspace-leaf {
|
|
||||||
border-top-left-radius: 0;
|
|
||||||
}
|
|
||||||
.workspace-split.mod-right-split .workspace-tabs .workspace-leaf {
|
|
||||||
border-top-right-radius: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.suggestion-item.is-selected {
|
|
||||||
background-color: var(--background-primary-alt);
|
|
||||||
}
|
|
||||||
|
|
||||||
.markdown-preview-view.is-readable-line-width .markdown-preview-sizer {
|
|
||||||
max-width: 900px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.markdown-source-view.is-readable-line-width .CodeMirror,
|
|
||||||
.markdown-source-view.mod-cm6.is-line-wrap.is-readable-line-width .cm-content,
|
|
||||||
.markdown-source-view.mod-cm6.is-line-wrap.is-readable-line-width .cm-line:not(.HyperMD-table-row),
|
|
||||||
.markdown-source-view.mod-cm6.is-readable-line-width:not(.is-rtl) .cm-contentContainer {
|
|
||||||
max-width: 900px;
|
|
||||||
}
|
|
@ -1,95 +0,0 @@
|
|||||||
/*******************************************************************************
|
|
||||||
* ROFI SQUARED THEME USING THE NORD PALETTE
|
|
||||||
* User : LR-Tech
|
|
||||||
* Theme Repo : https://github.com/lr-tech/rofi-themes-collection
|
|
||||||
*******************************************************************************/
|
|
||||||
|
|
||||||
* {
|
|
||||||
font: "FiraCode Nerd Font Medium 12";
|
|
||||||
|
|
||||||
bg0: #{{base00}};
|
|
||||||
bg1: #{{base01}};
|
|
||||||
fg0: #{{base07}};
|
|
||||||
|
|
||||||
accent-color: #{{base0C}};
|
|
||||||
urgent-color: #{{base08}};
|
|
||||||
|
|
||||||
background-color: transparent;
|
|
||||||
text-color: @fg0;
|
|
||||||
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
spacing: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
window {
|
|
||||||
location: center;
|
|
||||||
width: 480;
|
|
||||||
|
|
||||||
background-color: @bg0;
|
|
||||||
}
|
|
||||||
|
|
||||||
inputbar {
|
|
||||||
spacing: 8px;
|
|
||||||
padding: 8px;
|
|
||||||
|
|
||||||
background-color: @bg1;
|
|
||||||
}
|
|
||||||
|
|
||||||
prompt, entry, element-icon, element-text {
|
|
||||||
vertical-align: 0.5;
|
|
||||||
}
|
|
||||||
|
|
||||||
prompt {
|
|
||||||
text-color: @accent-color;
|
|
||||||
}
|
|
||||||
|
|
||||||
textbox {
|
|
||||||
padding: 8px;
|
|
||||||
background-color: @bg1;
|
|
||||||
}
|
|
||||||
|
|
||||||
listview {
|
|
||||||
padding: 4px 0;
|
|
||||||
lines: 8;
|
|
||||||
columns: 1;
|
|
||||||
|
|
||||||
fixed-height: false;
|
|
||||||
}
|
|
||||||
|
|
||||||
element {
|
|
||||||
padding: 8px;
|
|
||||||
spacing: 8px;
|
|
||||||
}
|
|
||||||
|
|
||||||
element normal normal {
|
|
||||||
text-color: @fg0;
|
|
||||||
}
|
|
||||||
|
|
||||||
element normal urgent {
|
|
||||||
text-color: @urgent-color;
|
|
||||||
}
|
|
||||||
|
|
||||||
element normal active {
|
|
||||||
text-color: @accent-color;
|
|
||||||
}
|
|
||||||
|
|
||||||
element selected {
|
|
||||||
text-color: @bg0;
|
|
||||||
}
|
|
||||||
|
|
||||||
element selected normal, element selected active {
|
|
||||||
background-color: @accent-color;
|
|
||||||
}
|
|
||||||
|
|
||||||
element selected urgent {
|
|
||||||
background-color: @urgent-color;
|
|
||||||
}
|
|
||||||
|
|
||||||
element-icon {
|
|
||||||
size: 0.8em;
|
|
||||||
}
|
|
||||||
|
|
||||||
element-text {
|
|
||||||
text-color: inherit;
|
|
||||||
}
|
|
@ -1,8 +0,0 @@
|
|||||||
ColorForeground=#{{base05}}
|
|
||||||
ColorBackground=#{{base00}}
|
|
||||||
ColorCursor=#{{base0C}}
|
|
||||||
ColorSelection=#{{base00}}
|
|
||||||
ColorBold=#{{base05}}
|
|
||||||
ColorBoldUseDefault=FALSE
|
|
||||||
ColorPalette=#{{base00}};#{{base08}};#{{base0B}};#{{base0A}};#{{base0D}};#{{base0E}};#{{base0C}};#{{base05}};#{{base03}};#{{base08}};#{{base0B}};#{{base0A}};#{{base0D}};#{{base0E}};#{{base0C}};#{{base07}}
|
|
||||||
TabActivityColor=#{{base0A}}
|
|
29
shchemes
29
shchemes
@ -170,24 +170,6 @@ ENDFILE {
|
|||||||
' "$path" > "$tmp" && mv "$tmp" "$path"
|
' "$path" > "$tmp" && mv "$tmp" "$path"
|
||||||
}
|
}
|
||||||
|
|
||||||
# TODO: multiple format support, check that line actually has multiple fields
|
|
||||||
merge() {
|
|
||||||
path=$1
|
|
||||||
tmp=$(mktemp)
|
|
||||||
|
|
||||||
awk -F "=" '
|
|
||||||
FILENAME == "-" {
|
|
||||||
a[$1] = $2
|
|
||||||
next
|
|
||||||
}
|
|
||||||
a[$1] {
|
|
||||||
print $1 "=" a[$1]
|
|
||||||
next
|
|
||||||
}
|
|
||||||
{ print }
|
|
||||||
' - "$path" > "$tmp" && mv "$tmp" "$path"
|
|
||||||
}
|
|
||||||
|
|
||||||
convert_tinted_scheme() {
|
convert_tinted_scheme() {
|
||||||
path=$1
|
path=$1
|
||||||
tmp=$(mktemp)
|
tmp=$(mktemp)
|
||||||
@ -195,12 +177,7 @@ convert_tinted_scheme() {
|
|||||||
awk -F ' *: *' '
|
awk -F ' *: *' '
|
||||||
/^#/ { print }
|
/^#/ { print }
|
||||||
$1 ~ "palette" { p = 1; next }
|
$1 ~ "palette" { p = 1; next }
|
||||||
p && /^ +/ {
|
p && /^ +/ { gsub(/ /, "", $1); print $1 "=" $2 }
|
||||||
gsub(/ /, "", $1);
|
|
||||||
gsub(/^"#/, "", $2);
|
|
||||||
gsub(/"$/, "", $2);
|
|
||||||
print $1 "=\"" $2 "\""
|
|
||||||
}
|
|
||||||
' "$path" > "$tmp" && mv -f "$tmp" "$path"
|
' "$path" > "$tmp" && mv -f "$tmp" "$path"
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -265,10 +242,6 @@ if [ "$method" != "" ]; then
|
|||||||
inject "${args[1]}" "${args[2]}"
|
inject "${args[1]}" "${args[2]}"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
merge)
|
|
||||||
merge "${args[1]}" "${args[2]}"
|
|
||||||
;;
|
|
||||||
|
|
||||||
convert_tinted_template)
|
convert_tinted_template)
|
||||||
convert_tinted_template "${args[1]}"
|
convert_tinted_template "${args[1]}"
|
||||||
;;
|
;;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user