Modify superfile hotkeys
This commit is contained in:
@@ -0,0 +1,175 @@
|
||||
##############################################
|
||||
# #
|
||||
# Superfile Configuration #
|
||||
# #
|
||||
##############################################
|
||||
|
||||
# This contains the root config file for superfile! More details can be found at
|
||||
# https://superfile.dev/configure/superfile-config/.
|
||||
|
||||
###############################################################################
|
||||
# Defaults #
|
||||
###############################################################################
|
||||
|
||||
#-- File Editor
|
||||
# Default: $EDITOR
|
||||
editor = ""
|
||||
|
||||
#-- Directory Editor
|
||||
#
|
||||
dir_editor = ""
|
||||
|
||||
#-- Auto check for update
|
||||
auto_check_update = true
|
||||
|
||||
#-- cd on quit
|
||||
# Should we cd the shell to the last directory open in superfile when the
|
||||
# program exits?
|
||||
cd_on_quit = false
|
||||
|
||||
#-- File Preview
|
||||
# Should we open a file preview by default whenever selection-hovering over a
|
||||
# file?
|
||||
default_open_file_preview = true
|
||||
|
||||
#-- Image Preview
|
||||
# Should we open an image preview by default whenever selection-hovering over an
|
||||
# image?
|
||||
show_image_preview = true
|
||||
|
||||
#-- File Info Footer
|
||||
# Should we display a footer in the file panel that provides more file information?
|
||||
show_panel_footer_info = true
|
||||
|
||||
#-- Default Directory
|
||||
# The initial path that the file panel should navigate to when superfile is
|
||||
# opened. This setting understands relative paths such as ".", "..", etc.
|
||||
default_directory = "."
|
||||
|
||||
#-- File Size Units
|
||||
# true: SI decimal units of 1000 (kB, MB, GB).
|
||||
# false: IEC binary units of 1024 (KiB, MiB, GiB).
|
||||
file_size_use_si = false
|
||||
|
||||
#-- Default File Sort Type
|
||||
# (0: Name, 1: Size, 2: Date Modified, 3: Type).
|
||||
default_sort_type = 0
|
||||
|
||||
#-- Sort Order Reversing
|
||||
# true: Descending.
|
||||
# false: Ascending.
|
||||
sort_order_reversed = false
|
||||
|
||||
#-- Case-Sensitive Sorting (only for Name Sort)
|
||||
# An uppercase "B" comes before a lowercase "a" if true.
|
||||
case_sensitive_sort = false
|
||||
|
||||
#-- Exit Shell on Success
|
||||
# Whether to exit the shell on successful command execution.
|
||||
shell_close_on_success = false
|
||||
|
||||
#-- Page Scroll Size
|
||||
# Number of lines to scroll for PgUp/PgDown keys (0: full page, default behavior).
|
||||
page_scroll_size = 0
|
||||
|
||||
#-- Debug Mode
|
||||
debug = false
|
||||
|
||||
#-- Ignore Missing Config Fields
|
||||
# Whether to silence any warnings about missing config fields.
|
||||
ignore_missing_fields = false
|
||||
|
||||
#-- File Panel Extra Columns Count
|
||||
# Count of extra columns in file panel in addition to file name. When option equal 0 then feature is disabled.
|
||||
file_panel_extra_columns = 0
|
||||
|
||||
#-- File name width in File Panel
|
||||
# Percentage of file panel width allocated to file names (25-100). Higher values give more space to names, less to extra columns.
|
||||
file_panel_name_percent = 50
|
||||
|
||||
|
||||
###############################################################################
|
||||
# Styling #
|
||||
###############################################################################
|
||||
|
||||
#-- Theme
|
||||
# Put your theme's name here!
|
||||
theme = "catppuccin-mocha"
|
||||
|
||||
#-- Code Previewer
|
||||
# Whether to use the builtin syntax highlighting with chroma or use bat. Values: "" for builtin chroma, "bat" for bat
|
||||
code_previewer = ""
|
||||
|
||||
#-- Nerd Fonts Support
|
||||
# Whether to enable support for Nerd Fonts symbols.
|
||||
# Requires: Font patched with the Nerd Fonts patch.
|
||||
nerdfont = true
|
||||
|
||||
#-- Show checkbox icons in select mode
|
||||
# Requires: nerdfont = true
|
||||
show_select_icons = true
|
||||
|
||||
#-- Transparent Background Support
|
||||
# Set to true to enable background transparency.
|
||||
# Requires: terminal support for colour transparency
|
||||
transparent_background = false
|
||||
|
||||
#-- File Preview Panel Width
|
||||
# Width of the file preview panel will be 1/n of the total width.
|
||||
# Values recommended to be in 2–10.
|
||||
# Default (0): Use the same width as file picker panel.
|
||||
file_preview_width = 0
|
||||
|
||||
#-- File Preview Border
|
||||
# Enable border around the file preview panel for better visual separation.
|
||||
# Default: false (no border)
|
||||
enable_file_preview_border = false
|
||||
|
||||
#-- Sidebar Width
|
||||
# If you don't want to display the sidebar, you can input 0 directly.
|
||||
# Values recommended to be in 5–20.
|
||||
sidebar_width = 20
|
||||
|
||||
#-- Border
|
||||
# Make sure to add strings that are exactly one character wide!
|
||||
# Use ' ' for borderless.
|
||||
border_top = '─'
|
||||
border_bottom = '─'
|
||||
border_left = '│'
|
||||
border_right = '│'
|
||||
border_top_left = '╭'
|
||||
border_top_right = '╮'
|
||||
border_bottom_left = '╰'
|
||||
border_bottom_right = '╯'
|
||||
border_middle_left = '├'
|
||||
border_middle_right = '┤'
|
||||
|
||||
###############################################################################
|
||||
# Plugins #
|
||||
###############################################################################
|
||||
|
||||
# This section is for using plugins with superfile, external addons that extend
|
||||
# the default capabilities of the program! More info can be found at
|
||||
# https://superfile.dev/list/plugin-list/.
|
||||
|
||||
#-- Detailed Metadata
|
||||
# Requires: exiftool
|
||||
metadata = false
|
||||
|
||||
#-- MD5 Checksum Generation
|
||||
# Requires: md5sum
|
||||
enable_md5_checksum = false
|
||||
#
|
||||
#-- Zoxide Support - Smart directory navigation!
|
||||
# Requires: zoxide
|
||||
zoxide_support = false
|
||||
|
||||
#-- File opening rules
|
||||
# Map file extensions to commands used to open them.
|
||||
# The file path will be appended as the last argument.
|
||||
# MUST BE IN THE VERY END OF THE FILE BECAUSE TOML CANNOT CLOSE TABLES
|
||||
# Example:
|
||||
# png = "feh"
|
||||
# pdf = "zathura"
|
||||
# conf = "nvim"
|
||||
[open_with]
|
||||
@@ -0,0 +1,99 @@
|
||||
##############################################
|
||||
# #
|
||||
# Superfile vim-like Hotkeys #
|
||||
# #
|
||||
##############################################
|
||||
|
||||
#-- Maintainer: nonepork <https://github.com/nonepork>
|
||||
|
||||
# This contains a hotkey config file for superfile, that's themed around vim
|
||||
# controls! More details can be found at
|
||||
# https://superfile.dev/configure/custom-hotkeys/.
|
||||
|
||||
###############################################################################
|
||||
# Global hotkeys #
|
||||
###############################################################################
|
||||
|
||||
# Note: These hotkeys should be unique.
|
||||
|
||||
#-- Basic Actions
|
||||
confirm = ['enter', '']
|
||||
quit = ['ctrl+c', ''] # a.k.a. "theprimeagen troller"
|
||||
cd_quit = ['Q', '']
|
||||
|
||||
#-- Navigation
|
||||
list_up = ['k', '']
|
||||
list_down = ['j', '']
|
||||
page_up = ['pgup','']
|
||||
page_down = ['pgdown','']
|
||||
|
||||
#-- File Panel Controls
|
||||
create_new_file_panel = ['n', '']
|
||||
close_file_panel = ['q', '']
|
||||
next_file_panel = ['tab', '']
|
||||
previous_file_panel = ['shift+tab', '']
|
||||
split_file_panel = ['N', '']
|
||||
toggle_file_preview_panel = ['f', '']
|
||||
open_sort_options_menu = ['o', '']
|
||||
toggle_reverse_sort = ['R', '']
|
||||
|
||||
#-- Focus Manipulation
|
||||
focus_on_process_bar = ['ctrl+p', '']
|
||||
focus_on_sidebar = ['ctrl+s', '']
|
||||
focus_on_metadata = ['ctrl+d', '']
|
||||
|
||||
#-- File/Dir Creation/Renaming
|
||||
file_panel_item_create = ['a', '']
|
||||
file_panel_item_rename = ['r', '']
|
||||
|
||||
#-- Main File Operations
|
||||
copy_items = ['y', '']
|
||||
cut_items = ['x', '']
|
||||
paste_items = ['p', '']
|
||||
delete_items = ['d', '']
|
||||
permanently_delete_items = ['D', '']
|
||||
|
||||
#-- Archive Manipulation
|
||||
extract_file = ['ctrl+e', '']
|
||||
compress_file = ['ctrl+a', '']
|
||||
|
||||
#-- Editor Actions
|
||||
open_file_with_editor = ['e', '']
|
||||
open_current_directory_with_editor = ['E', '']
|
||||
|
||||
#-- Other Actions
|
||||
pinned_directory = ['P', '']
|
||||
toggle_dot_file = ['.', '']
|
||||
change_panel_mode = ['m', '']
|
||||
open_help_menu = ['?', '']
|
||||
open_spf_prompt = ['>', '']
|
||||
open_command_line = [':', '']
|
||||
open_zoxide = ['z', '']
|
||||
copy_path = ['Y', '']
|
||||
copy_present_working_directory = ['c', '']
|
||||
toggle_footer = ['ctrl+f', '']
|
||||
|
||||
###############################################################################
|
||||
# Typing hotkeys #
|
||||
###############################################################################
|
||||
|
||||
# Note: These hotkeys can override all hotkeys.
|
||||
|
||||
confirm_typing = ['enter', '']
|
||||
cancel_typing = ['esc', '']
|
||||
|
||||
###############################################################################
|
||||
# Mode-Specific Hotkeys #
|
||||
###############################################################################
|
||||
|
||||
# Note: These hotkeys can conflict with other modes, but not with global
|
||||
# hotkeys.
|
||||
|
||||
#-- Normal Mode Actions
|
||||
parent_directory = ['-', '']
|
||||
search_bar = ['/', '']
|
||||
|
||||
#-- Selection Mode Actions
|
||||
file_panel_select_mode_items_select_down = ['J', '']
|
||||
file_panel_select_mode_items_select_up = ['K', '']
|
||||
file_panel_select_all_items = ['A', '']
|
||||
@@ -0,0 +1,76 @@
|
||||
##############################################
|
||||
# #
|
||||
# 0x96f Theme #
|
||||
# #
|
||||
##############################################
|
||||
|
||||
# This theme was created by: https://github.com/filipjanevski ! Thank you <3
|
||||
|
||||
# This contains the theme config file for superfile! For more details see:
|
||||
# https://superfile.dev/configure/custom-theme/
|
||||
|
||||
###############################################################################
|
||||
# Code Syntax Highlighting #
|
||||
###############################################################################
|
||||
|
||||
# Find one you like at: https://github.com/alecthomas/chroma/blob/master/styles.
|
||||
|
||||
code_syntax_highlight = "monokai"
|
||||
|
||||
###############################################################################
|
||||
# Base Colors #
|
||||
###############################################################################
|
||||
|
||||
#-- Full Screen
|
||||
full_screen_fg = "#fcfcfc"
|
||||
full_screen_bg = "#262427"
|
||||
|
||||
#-- Gradient
|
||||
# Note: This currently only supports two colors.
|
||||
gradient_color = ["#ff7272", "#bcdf59"]
|
||||
|
||||
#-- File Panel
|
||||
file_panel_fg = "#fcfcfc"
|
||||
file_panel_bg = "#262427"
|
||||
file_panel_border = "#757075"
|
||||
file_panel_border_active = "#ffca58"
|
||||
file_panel_top_directory_icon = "#64d2e8"
|
||||
file_panel_top_path = "#fcfcfc"
|
||||
file_panel_item_selected_fg = "#c6e472"
|
||||
file_panel_item_selected_bg = "#262427"
|
||||
|
||||
#-- Footer
|
||||
footer_fg = "#fcfcfc"
|
||||
footer_bg = "#262427"
|
||||
footer_border = "#757075"
|
||||
footer_border_active = "#ffca58"
|
||||
|
||||
#-- Sidebar
|
||||
sidebar_fg = "#fcfcfc"
|
||||
sidebar_bg = "#262427"
|
||||
sidebar_title = "#64d2e8"
|
||||
sidebar_border = "#757075"
|
||||
sidebar_border_active = "#baebf6"
|
||||
sidebar_item_selected_fg = "#c6e472"
|
||||
sidebar_item_selected_bg = "#262427"
|
||||
sidebar_divider = "#757075"
|
||||
|
||||
#-- Modals
|
||||
modal_fg = "#fcfcfc"
|
||||
modal_bg = "#262427"
|
||||
modal_border_active = "#ffca58"
|
||||
modal_cancel_fg = "#262427"
|
||||
modal_cancel_bg = "#ff8787"
|
||||
modal_confirm_fg = "#262427"
|
||||
modal_confirm_bg = "#bcdf59"
|
||||
|
||||
#-- Help Menu
|
||||
help_menu_hotkey = "#ff8787"
|
||||
help_menu_title = "#64d2e8"
|
||||
|
||||
#-- Special
|
||||
cursor = "#ffca58"
|
||||
correct = "#c6e472"
|
||||
error = "#ff8787"
|
||||
hint = "#baebf6"
|
||||
cancel = "#fcfcfc"
|
||||
@@ -0,0 +1,76 @@
|
||||
##############################################
|
||||
# #
|
||||
# Ayu Dark Theme #
|
||||
# #
|
||||
##############################################
|
||||
|
||||
# This theme was created by: https://github.com/rustnomicon ! Thank you <3
|
||||
|
||||
# This contains the theme config file for superfile! For more details see:
|
||||
# https://superfile.dev/configure/custom-theme/
|
||||
|
||||
###############################################################################
|
||||
# Code Syntax Highlighting #
|
||||
###############################################################################
|
||||
|
||||
# Find one you like at: https://github.com/alecthomas/chroma/blob/master/styles.
|
||||
|
||||
code_syntax_highlight = "ayu-dark"
|
||||
|
||||
###############################################################################
|
||||
# Base Colors #
|
||||
###############################################################################
|
||||
|
||||
#-- Full Screen
|
||||
full_screen_fg = "#b3b1ad"
|
||||
full_screen_bg = "#0f1419"
|
||||
|
||||
#-- Gradient
|
||||
# Note: This currently only supports two colors.
|
||||
gradient_color = ["#FFB454", "#36A3D9"]
|
||||
|
||||
#-- File Panel
|
||||
file_panel_fg = "#b3b1ad"
|
||||
file_panel_bg = "#0f1419"
|
||||
file_panel_border = "#242936"
|
||||
file_panel_border_active = "#ffcc66"
|
||||
file_panel_top_directory_icon = "#aad94c"
|
||||
file_panel_top_path = "#ffcc66"
|
||||
file_panel_item_selected_fg = "#36a3d9"
|
||||
file_panel_item_selected_bg = "#1f2430"
|
||||
|
||||
#-- Footer
|
||||
footer_fg = "#b3b1ad"
|
||||
footer_bg = "#0f1419"
|
||||
footer_border = "#242936"
|
||||
footer_border_active = "#aad94c"
|
||||
|
||||
#-- Sidebar
|
||||
sidebar_fg = "#b3b1ad"
|
||||
sidebar_bg = "#0f1419"
|
||||
sidebar_title = "#36a3d9"
|
||||
sidebar_border = "#1f2430"
|
||||
sidebar_border_active = "#ff7733"
|
||||
sidebar_item_selected_fg = "#36a3d9"
|
||||
sidebar_item_selected_bg = "#1f2430"
|
||||
sidebar_divider = "#242936"
|
||||
|
||||
#-- Modals
|
||||
modal_fg = "#b3b1ad"
|
||||
modal_bg = "#0f1419"
|
||||
modal_border_active = "#5c6773"
|
||||
modal_cancel_fg = "#0f1419"
|
||||
modal_cancel_bg = "#f07178"
|
||||
modal_confirm_fg = "#0f1419"
|
||||
modal_confirm_bg = "#36a3d9"
|
||||
|
||||
#-- Help Menu
|
||||
help_menu_hotkey = "#36a3d9"
|
||||
help_menu_title = "#f07178"
|
||||
|
||||
#-- Special
|
||||
cursor = "#ffcc66"
|
||||
correct = "#aad94c"
|
||||
error = "#ff3333"
|
||||
hint = "#36a3d9"
|
||||
cancel = "#f07178"
|
||||
@@ -0,0 +1,76 @@
|
||||
##############################################
|
||||
# #
|
||||
# Blood Theme #
|
||||
# #
|
||||
##############################################
|
||||
|
||||
# This theme was created by: https://github.com/charlesrocket ! Thank you <3
|
||||
|
||||
# This contains the theme config file for superfile! For more details see:
|
||||
# https://superfile.dev/configure/custom-theme/
|
||||
|
||||
###############################################################################
|
||||
# Code Syntax Highlighting #
|
||||
###############################################################################
|
||||
|
||||
# Find one you like at: https://github.com/alecthomas/chroma/blob/master/styles.
|
||||
|
||||
code_syntax_highlight = "onedark"
|
||||
|
||||
###############################################################################
|
||||
# Base Colors #
|
||||
###############################################################################
|
||||
|
||||
#-- Full Screen
|
||||
full_screen_fg = "#f8f8f2"
|
||||
full_screen_bg = "#000000"
|
||||
|
||||
#-- Gradient
|
||||
# Note: This currently only supports two colors.
|
||||
gradient_color = ["#720000", "#ff0000"]
|
||||
|
||||
#-- File Panel
|
||||
file_panel_fg = "#f8f8f2"
|
||||
file_panel_bg = "#000000"
|
||||
file_panel_border = "#9a0000"
|
||||
file_panel_border_active = "#ff0000"
|
||||
file_panel_top_directory_icon = "#ff522e"
|
||||
file_panel_top_path = "#ff9999"
|
||||
file_panel_item_selected_fg = "#ff8d34"
|
||||
file_panel_item_selected_bg = "#524549"
|
||||
|
||||
#-- Footer
|
||||
footer_fg = "#f8f8f2"
|
||||
footer_bg = "#000000"
|
||||
footer_border = "#790000"
|
||||
footer_border_active = "#ff0000"
|
||||
|
||||
#-- Sidebar
|
||||
sidebar_fg = "#f8f8f2"
|
||||
sidebar_bg = "#000000"
|
||||
sidebar_title = "#dd0000"
|
||||
sidebar_border = "#790000"
|
||||
sidebar_border_active = "#ff0000"
|
||||
sidebar_item_selected_fg = "#000000"
|
||||
sidebar_item_selected_bg = "#ff8d34"
|
||||
sidebar_divider = "#615250"
|
||||
|
||||
#-- Modals
|
||||
modal_fg = "#f8f8f2"
|
||||
modal_bg = "#000000"
|
||||
modal_border_active = "#ff0000"
|
||||
modal_cancel_fg = "#f9f9fe"
|
||||
modal_cancel_bg = "#000042"
|
||||
modal_confirm_fg = "#f9f9fe"
|
||||
modal_confirm_bg = "#ffb86c"
|
||||
|
||||
#-- Help Menu
|
||||
help_menu_hotkey = "#ff8d34"
|
||||
help_menu_title = "#ff6666"
|
||||
|
||||
#-- Special
|
||||
cursor = "#ff0000"
|
||||
correct = "#47ef7d"
|
||||
error = "#d70000"
|
||||
hint = "#5bd9f3"
|
||||
cancel = "#6575ab"
|
||||
@@ -0,0 +1,76 @@
|
||||
##############################################
|
||||
# #
|
||||
# Catppuccin Frappe Theme #
|
||||
# #
|
||||
##############################################
|
||||
|
||||
# This theme was created by: https://github.com/GV14982 ! Thank you <3
|
||||
|
||||
# This contains the theme config file for superfile! For more details see:
|
||||
# https://superfile.dev/configure/custom-theme/
|
||||
|
||||
###############################################################################
|
||||
# Code Syntax Highlighting #
|
||||
###############################################################################
|
||||
|
||||
# Find one you like at: https://github.com/alecthomas/chroma/blob/master/styles.
|
||||
|
||||
code_syntax_highlight = "catppuccin-frappe"
|
||||
|
||||
###############################################################################
|
||||
# Base Colors #
|
||||
###############################################################################
|
||||
|
||||
#-- Full Screen
|
||||
full_screen_fg = "#a5adce"
|
||||
full_screen_bg = "#303446"
|
||||
|
||||
#-- Gradient
|
||||
# Note: This currently only supports two colors.
|
||||
gradient_color = ["#8caaee", "#ca9ee6"]
|
||||
|
||||
#-- File Panel
|
||||
file_panel_fg = "#a5adce"
|
||||
file_panel_bg = "#303446"
|
||||
file_panel_border = "#737994"
|
||||
file_panel_border_active = "#babbf1"
|
||||
file_panel_top_directory_icon = "#a6d189"
|
||||
file_panel_top_path = "#89b5fa"
|
||||
file_panel_item_selected_fg = "#99d1db"
|
||||
file_panel_item_selected_bg = "#303446"
|
||||
|
||||
#-- Footer
|
||||
footer_fg = "#a5adce"
|
||||
footer_bg = "#303446"
|
||||
footer_border = "#737994"
|
||||
footer_border_active = "#a6d189"
|
||||
|
||||
#-- Sidebar
|
||||
sidebar_fg = "#a5adce"
|
||||
sidebar_bg = "#303446"
|
||||
sidebar_title = "#85c1dc"
|
||||
sidebar_border = "#303446"
|
||||
sidebar_border_active = "#e78284"
|
||||
sidebar_item_selected_fg = "#99d1db"
|
||||
sidebar_item_selected_bg = "#303446"
|
||||
sidebar_divider = "#949cbb"
|
||||
|
||||
#-- Modals
|
||||
modal_fg = "#a5adce"
|
||||
modal_bg = "#303446"
|
||||
modal_border_active = "#949cbb"
|
||||
modal_cancel_fg = "#414559"
|
||||
modal_cancel_bg = "#ea999c"
|
||||
modal_confirm_fg = "#414559"
|
||||
modal_confirm_bg = "#99d1db"
|
||||
|
||||
#-- Help Menu
|
||||
help_menu_hotkey = "#99d1db"
|
||||
help_menu_title = "#ea999c"
|
||||
|
||||
#-- Special
|
||||
cursor = "#f2d5cf"
|
||||
correct = "#a6d189"
|
||||
error = "#e78284"
|
||||
hint = "#85c1dc"
|
||||
cancel = "#ea999c"
|
||||
@@ -0,0 +1,76 @@
|
||||
##############################################
|
||||
# #
|
||||
# Catppuccin Latte Theme #
|
||||
# #
|
||||
##############################################
|
||||
|
||||
# This theme was created by: https://github.com/GV14982 ! Thank you <3
|
||||
|
||||
# This contains the theme config file for superfile! For more details see:
|
||||
# https://superfile.dev/configure/custom-theme/
|
||||
|
||||
###############################################################################
|
||||
# Code Syntax Highlighting #
|
||||
###############################################################################
|
||||
|
||||
# Find one you like at: https://github.com/alecthomas/chroma/blob/master/styles.
|
||||
|
||||
code_syntax_highlight = "catppuccin-latte"
|
||||
|
||||
###############################################################################
|
||||
# Base Colors #
|
||||
###############################################################################
|
||||
|
||||
#-- Full Screen
|
||||
full_screen_fg = "#4c4f69"
|
||||
full_screen_bg = "#eff1f5"
|
||||
|
||||
#-- Gradient
|
||||
# Note: This currently only supports two colors.
|
||||
gradient_color = ["#1e66f5", "#ca9ee6"]
|
||||
|
||||
#-- File Panel
|
||||
file_panel_fg = "#4c4f69"
|
||||
file_panel_bg = "#eff1f5"
|
||||
file_panel_border = "#9ca0b0"
|
||||
file_panel_border_active = "#7287fd"
|
||||
file_panel_top_directory_icon = "#40a02b"
|
||||
file_panel_top_path = "#89b5fa"
|
||||
file_panel_item_selected_fg = "#04a5e5"
|
||||
file_panel_item_selected_bg = "#eff1f5"
|
||||
|
||||
#-- Footer
|
||||
footer_fg = "#4c4f69"
|
||||
footer_bg = "#eff1f5"
|
||||
footer_border = "#9ca0b0"
|
||||
footer_border_active = "#40a02b"
|
||||
|
||||
#-- Sidebar
|
||||
sidebar_fg = "#4c4f69"
|
||||
sidebar_bg = "#eff1f5"
|
||||
sidebar_title = "#209fb5"
|
||||
sidebar_border = "#eff1f5"
|
||||
sidebar_border_active = "#40a02b"
|
||||
sidebar_item_selected_fg = "#04a5e5"
|
||||
sidebar_item_selected_bg = "#eff1f5"
|
||||
sidebar_divider = "#7c7f93"
|
||||
|
||||
#-- Modals
|
||||
modal_fg = "#4c4f69"
|
||||
modal_bg = "#eff1f5"
|
||||
modal_border_active = "#7c7f93"
|
||||
modal_cancel_fg = "#eff1f5"
|
||||
modal_cancel_bg = "#e64553"
|
||||
modal_confirm_fg = "#eff1f5"
|
||||
modal_confirm_bg = "#04a5e5"
|
||||
|
||||
#-- Help Menu
|
||||
help_menu_hotkey = "#04a5e5"
|
||||
help_menu_title = "#fe640b"
|
||||
|
||||
#-- Special
|
||||
cursor = "#dc8a78"
|
||||
correct = "#40a02b"
|
||||
error = "#d20f39"
|
||||
hint = "#209fb5"
|
||||
cancel = "#e64553"
|
||||
@@ -0,0 +1,76 @@
|
||||
##############################################
|
||||
# #
|
||||
# Catppuccin Macchiato Theme #
|
||||
# #
|
||||
##############################################
|
||||
|
||||
# This theme was created by: https://github.com/GV14982 ! Thank you <3
|
||||
|
||||
# This contains the theme config file for superfile! For more details see:
|
||||
# https://superfile.dev/configure/custom-theme/
|
||||
|
||||
###############################################################################
|
||||
# Code Syntax Highlighting #
|
||||
###############################################################################
|
||||
|
||||
# Find one you like at: https://github.com/alecthomas/chroma/blob/master/styles.
|
||||
|
||||
code_syntax_highlight = "catppuccin-macchiato"
|
||||
|
||||
###############################################################################
|
||||
# Base Colors #
|
||||
###############################################################################
|
||||
|
||||
#-- Full Screen
|
||||
full_screen_fg = "#a5adcb"
|
||||
full_screen_bg = "#24273a"
|
||||
|
||||
#-- Gradient
|
||||
# Note: This currently only supports two colors.
|
||||
gradient_color = ["#8aadf4", "#c6a0f6"]
|
||||
|
||||
#-- File Panel
|
||||
file_panel_fg = "#a5adcb"
|
||||
file_panel_bg = "#24273a"
|
||||
file_panel_border = "#6e738d"
|
||||
file_panel_border_active = "#b7bdf8"
|
||||
file_panel_top_directory_icon = "#a6da95"
|
||||
file_panel_top_path = "#8aadf4"
|
||||
file_panel_item_selected_fg = "#91d7e3"
|
||||
file_panel_item_selected_bg = "#24273a"
|
||||
|
||||
#-- Footer
|
||||
footer_fg = "#a5adcb"
|
||||
footer_bg = "#24273a"
|
||||
footer_border = "#6e738d"
|
||||
footer_border_active = "#a6da95"
|
||||
|
||||
#-- Sidebar
|
||||
sidebar_fg = "#a5adcb"
|
||||
sidebar_bg = "#24273a"
|
||||
sidebar_title = "#7dc4e4"
|
||||
sidebar_border = "#24273a"
|
||||
sidebar_border_active = "#ed8796"
|
||||
sidebar_item_selected_fg = "#91d7e3"
|
||||
sidebar_item_selected_bg = "#24273a"
|
||||
sidebar_divider = "#939ab7"
|
||||
|
||||
#-- Modals
|
||||
modal_fg = "#a5adcb"
|
||||
modal_bg = "#24273a"
|
||||
modal_border_active = "#939ab7"
|
||||
modal_cancel_fg = "#363a4f"
|
||||
modal_cancel_bg = "#ee99a0"
|
||||
modal_confirm_fg = "#363a4f"
|
||||
modal_confirm_bg = "#91d7e3"
|
||||
|
||||
#-- Help Menu
|
||||
help_menu_hotkey = "#91d7e3"
|
||||
help_menu_title = "#ee99a0"
|
||||
|
||||
#-- Special
|
||||
cursor = "#f4dbd6"
|
||||
correct = "#a6da95"
|
||||
error = "#ed8796"
|
||||
hint = "#7dc4e4"
|
||||
cancel = "#ee99a0"
|
||||
@@ -0,0 +1,76 @@
|
||||
##############################################
|
||||
# #
|
||||
# Catppuccin Mocha Theme #
|
||||
# #
|
||||
##############################################
|
||||
|
||||
# This theme was created by: https://github.com/AnshumanNeon ! Thank you <3
|
||||
|
||||
# This contains the theme config file for superfile! For more details see:
|
||||
# https://superfile.dev/configure/custom-theme/
|
||||
|
||||
###############################################################################
|
||||
# Code Syntax Highlighting #
|
||||
###############################################################################
|
||||
|
||||
# Find one you like at: https://github.com/alecthomas/chroma/blob/master/styles.
|
||||
|
||||
code_syntax_highlight = "catppuccin-mocha"
|
||||
|
||||
###############################################################################
|
||||
# Base Colors #
|
||||
###############################################################################
|
||||
|
||||
#-- Full Screen
|
||||
full_screen_fg = "#a6adc8"
|
||||
full_screen_bg = "#1e1e2e"
|
||||
|
||||
#-- Gradient
|
||||
# Note: This currently only supports two colors.
|
||||
gradient_color = ["#89b4fa", "#cba6f7"]
|
||||
|
||||
#-- File Panel
|
||||
file_panel_fg = "#a6adc8"
|
||||
file_panel_bg = "#1e1e2e"
|
||||
file_panel_border = "#6c7086"
|
||||
file_panel_border_active = "#b4befe"
|
||||
file_panel_top_directory_icon = "#a6e3a1"
|
||||
file_panel_top_path = "#89b5fa"
|
||||
file_panel_item_selected_fg = "#98D0FD"
|
||||
file_panel_item_selected_bg = "#1e1e2e"
|
||||
|
||||
#-- Footer
|
||||
footer_fg = "#a6adc8"
|
||||
footer_bg = "#1e1e2e"
|
||||
footer_border = "#6c7086"
|
||||
footer_border_active = "#a6e3a1"
|
||||
|
||||
#-- Sidebar
|
||||
sidebar_fg = "#a6adc8"
|
||||
sidebar_bg = "#1e1e2e"
|
||||
sidebar_title = "#74c7ec"
|
||||
sidebar_border = "#1e1e2e"
|
||||
sidebar_border_active = "#f38ba8"
|
||||
sidebar_item_selected_fg = "#A6DBF7"
|
||||
sidebar_item_selected_bg = "#1e1e2e"
|
||||
sidebar_divider = "#868686"
|
||||
|
||||
#-- Modals
|
||||
modal_fg = "#a6adc8"
|
||||
modal_bg = "#1e1e2e"
|
||||
modal_border_active = "#868686"
|
||||
modal_cancel_fg = "#383838"
|
||||
modal_cancel_bg = "#eba0ac"
|
||||
modal_confirm_fg = "#383838"
|
||||
modal_confirm_bg = "#89dceb"
|
||||
|
||||
#-- Help Menu
|
||||
help_menu_hotkey = "#89dceb"
|
||||
help_menu_title = "#eba0ac"
|
||||
|
||||
#-- Special
|
||||
cursor = "#f5e0dc"
|
||||
correct = "#a6e3a1"
|
||||
error = "#f38ba8"
|
||||
hint = "#73c7ec"
|
||||
cancel = "#eba0ac"
|
||||
@@ -0,0 +1,76 @@
|
||||
##############################################
|
||||
# #
|
||||
# Dracula Theme #
|
||||
# #
|
||||
##############################################
|
||||
|
||||
# This theme was created by: https://github.com/BeanieBarrow ! Thank you <3
|
||||
|
||||
# This contains the theme config file for superfile! For more details see:
|
||||
# https://superfile.dev/configure/custom-theme/
|
||||
|
||||
###############################################################################
|
||||
# Code Syntax Highlighting #
|
||||
###############################################################################
|
||||
|
||||
# Find one you like at: https://github.com/alecthomas/chroma/blob/master/styles.
|
||||
|
||||
code_syntax_highlight = "dracula"
|
||||
|
||||
###############################################################################
|
||||
# Base Colors #
|
||||
###############################################################################
|
||||
|
||||
#-- Full Screen
|
||||
full_screen_fg = "#f8f8f2"
|
||||
full_screen_bg = "#282a36"
|
||||
|
||||
#-- Gradient
|
||||
# Note: This currently only supports two colors.
|
||||
gradient_color = ["#50fa7b", "#ff5555"]
|
||||
|
||||
#-- File Panel
|
||||
file_panel_fg = "#f8f8f2"
|
||||
file_panel_bg = "#282a36"
|
||||
file_panel_border = "#6272a4"
|
||||
file_panel_border_active = "#44475a"
|
||||
file_panel_top_directory_icon = "#50fa7b"
|
||||
file_panel_top_path = "#8be9fd"
|
||||
file_panel_item_selected_fg = "#ffb86c"
|
||||
file_panel_item_selected_bg = "#282a36"
|
||||
|
||||
#-- Footer
|
||||
footer_fg = "#f8f8f2"
|
||||
footer_bg = "#282a36"
|
||||
footer_border = "#6272a4"
|
||||
footer_border_active = "#44475a"
|
||||
|
||||
#-- Sidebar
|
||||
sidebar_fg = "#f8f8f2"
|
||||
sidebar_bg = "#282a36"
|
||||
sidebar_title = "#bd93f9"
|
||||
sidebar_border = "#282a36"
|
||||
sidebar_border_active = "#44475a"
|
||||
sidebar_item_selected_fg = "#ffb86c"
|
||||
sidebar_item_selected_bg = "#282a36"
|
||||
sidebar_divider = "#868686"
|
||||
|
||||
#-- Modals
|
||||
modal_fg = "#f8f8f2"
|
||||
modal_bg = "#282a36"
|
||||
modal_border_active = "#44475a"
|
||||
modal_cancel_fg = "#f8f8f2"
|
||||
modal_cancel_bg = "#6272a4"
|
||||
modal_confirm_fg = "#f8f8f2"
|
||||
modal_confirm_bg = "#ffb86c"
|
||||
|
||||
#-- Help Menu
|
||||
help_menu_hotkey = "#ffb86c"
|
||||
help_menu_title = "#bd93f9"
|
||||
|
||||
#-- Special
|
||||
cursor = "#ff79c6"
|
||||
correct = "#50fa7b"
|
||||
error = "#ff5555"
|
||||
hint = "#8be9fd"
|
||||
cancel = "#6272a4"
|
||||
@@ -0,0 +1,76 @@
|
||||
##############################################
|
||||
# #
|
||||
# Everforest Dark Hard Theme #
|
||||
# #
|
||||
##############################################
|
||||
|
||||
# This theme was created by: https://github.com/fzahner ! Thank you <3
|
||||
|
||||
# This contains the theme config file for superfile! For more details see:
|
||||
# https://superfile.dev/configure/custom-theme/
|
||||
|
||||
###############################################################################
|
||||
# Code Syntax Highlighting #
|
||||
###############################################################################
|
||||
|
||||
# Find one you like at: https://github.com/alecthomas/chroma/blob/master/styles.
|
||||
|
||||
code_syntax_highlight = "evergarden"
|
||||
|
||||
###############################################################################
|
||||
# Base Colors #
|
||||
###############################################################################
|
||||
|
||||
#-- Full Screen
|
||||
full_screen_fg = "#d3c6aa"
|
||||
full_screen_bg = "#272e33"
|
||||
|
||||
#-- Gradient
|
||||
# Note: This currently only supports two colors.
|
||||
gradient_color = ["#a7c080", "#e67e80"]
|
||||
|
||||
#-- File Panel
|
||||
file_panel_fg = "#d3c6aa"
|
||||
file_panel_bg = "#272e33"
|
||||
file_panel_border = "#859289"
|
||||
file_panel_border_active = "#dbbc7f"
|
||||
file_panel_top_directory_icon = "#a7c080"
|
||||
file_panel_top_path = "#7fbbb3"
|
||||
file_panel_item_selected_fg = "#d699b6"
|
||||
file_panel_item_selected_bg = "#232a2e"
|
||||
|
||||
#-- Footer
|
||||
footer_fg = "#d3c6aa"
|
||||
footer_bg = "#272e33"
|
||||
footer_border = "#859289"
|
||||
footer_border_active = "#d3c6aa"
|
||||
|
||||
#-- Sidebar
|
||||
sidebar_fg = "#d3c6aa"
|
||||
sidebar_bg = "#272e33"
|
||||
sidebar_title = "#d699b6"
|
||||
sidebar_border = "#2d353b"
|
||||
sidebar_border_active = "#d3c6aa"
|
||||
sidebar_item_selected_fg = "#e69875"
|
||||
sidebar_item_selected_bg = "#2d353b"
|
||||
sidebar_divider = "#859289"
|
||||
|
||||
#-- Modals
|
||||
modal_fg = "#d3c6aa"
|
||||
modal_bg = "#272e33"
|
||||
modal_border_active = "#859289"
|
||||
modal_cancel_fg = "#d3c6aa"
|
||||
modal_cancel_bg = "#232a2e"
|
||||
modal_confirm_fg = "#d3c6aa"
|
||||
modal_confirm_bg = "#e69875"
|
||||
|
||||
#-- Help Menu
|
||||
help_menu_hotkey = "#a7c080"
|
||||
help_menu_title = "#e69875"
|
||||
|
||||
#-- Special
|
||||
cursor = "#a7c080"
|
||||
correct = "#a7c080"
|
||||
error = "#e67e80"
|
||||
hint = "#7fbbb3"
|
||||
cancel = "#859289"
|
||||
@@ -0,0 +1,76 @@
|
||||
##############################################
|
||||
# #
|
||||
# Everforest Dark Medium Theme #
|
||||
# #
|
||||
##############################################
|
||||
|
||||
# This theme was created by: https://github.com/dotintegral ! Thank you <3
|
||||
|
||||
# This contains the theme config file for superfile! For more details see:
|
||||
# https://superfile.dev/configure/custom-theme/
|
||||
|
||||
###############################################################################
|
||||
# Code Syntax Highlighting #
|
||||
###############################################################################
|
||||
|
||||
# Find one you like at: https://github.com/alecthomas/chroma/blob/master/styles.
|
||||
|
||||
code_syntax_highlight = "catppuccin-macchiato"
|
||||
|
||||
###############################################################################
|
||||
# Base Colors #
|
||||
###############################################################################
|
||||
|
||||
#-- Full Screen
|
||||
full_screen_fg = "#d3c6aa"
|
||||
full_screen_bg = "#2d353b"
|
||||
|
||||
#-- Gradient
|
||||
# Note: This currently only supports two colors.
|
||||
gradient_color = ["#a7c080", "#e67e80"]
|
||||
|
||||
#-- File Panel
|
||||
file_panel_fg = "#d3c6aa"
|
||||
file_panel_bg = "#2d353b"
|
||||
file_panel_border = "#859289"
|
||||
file_panel_border_active = "#fff1c5"
|
||||
file_panel_top_directory_icon = "#a7c080"
|
||||
file_panel_top_path = "#7fbbb3"
|
||||
file_panel_item_selected_fg = "#d699b6"
|
||||
file_panel_item_selected_bg = "#232a2e"
|
||||
|
||||
#-- Footer
|
||||
footer_fg = "#d3c6aa"
|
||||
footer_bg = "#2d353b"
|
||||
footer_border = "#859289"
|
||||
footer_border_active = "#dbbc7f"
|
||||
|
||||
#-- Sidebar
|
||||
sidebar_fg = "#d3c6aa"
|
||||
sidebar_bg = "#2d353b"
|
||||
sidebar_title = "#d699b6"
|
||||
sidebar_border = "#2d353b"
|
||||
sidebar_border_active = "#dbbc7f"
|
||||
sidebar_item_selected_fg = "#e69875"
|
||||
sidebar_item_selected_bg = "#2d353b"
|
||||
sidebar_divider = "#859289"
|
||||
|
||||
#-- Modals
|
||||
modal_fg = "#d3c6aa"
|
||||
modal_bg = "#2d353b"
|
||||
modal_border_active = "#859289"
|
||||
modal_cancel_fg = "#d3c6aa"
|
||||
modal_cancel_bg = "#232a2e"
|
||||
modal_confirm_fg = "#d3c6aa"
|
||||
modal_confirm_bg = "#e69875"
|
||||
|
||||
#-- Help Menu
|
||||
help_menu_hotkey = "#a7c080"
|
||||
help_menu_title = "#e69875"
|
||||
|
||||
#-- Special
|
||||
cursor = "#a7c080"
|
||||
correct = "#a7c080"
|
||||
error = "#e67e80"
|
||||
hint = "#7fbbb3"
|
||||
cancel = "#859289"
|
||||
@@ -0,0 +1,76 @@
|
||||
##############################################
|
||||
# #
|
||||
# Gruvbox Dark Hard Theme #
|
||||
# #
|
||||
##############################################
|
||||
|
||||
# This theme was created by: https://github.com/frost-phoenix ! Thank you <3
|
||||
|
||||
# This contains the theme config file for superfile! For more details see:
|
||||
# https://superfile.dev/configure/custom-theme/
|
||||
|
||||
###############################################################################
|
||||
# Code Syntax Highlighting #
|
||||
###############################################################################
|
||||
|
||||
# Find one you like at: https://github.com/alecthomas/chroma/blob/master/styles.
|
||||
|
||||
code_syntax_highlight = "gruvbox"
|
||||
|
||||
###############################################################################
|
||||
# Base Colors #
|
||||
###############################################################################
|
||||
|
||||
#-- Full Screen
|
||||
full_screen_fg = "#fbf1c7"
|
||||
full_screen_bg = "#1d2021"
|
||||
|
||||
#-- Gradient
|
||||
# Note: This currently only supports two colors.
|
||||
gradient_color = ["#fb4934", "#b8bb26"]
|
||||
|
||||
#-- File Panel
|
||||
file_panel_fg = "#fbf1c7"
|
||||
file_panel_bg = "#1d2021"
|
||||
file_panel_border = "#fbf1c7"
|
||||
file_panel_border_active = "#98971a"
|
||||
file_panel_top_directory_icon = "#689d6a"
|
||||
file_panel_top_path = "#458588"
|
||||
file_panel_item_selected_fg = "#d65d0e"
|
||||
file_panel_item_selected_bg = ""
|
||||
|
||||
#-- Footer
|
||||
footer_fg = "#fbf1c7"
|
||||
footer_bg = "#1d2021"
|
||||
footer_border = "#928374"
|
||||
footer_border_active = "#d79921"
|
||||
|
||||
#-- Sidebar
|
||||
sidebar_fg = "#fbf1c7"
|
||||
sidebar_bg = "#1d2021"
|
||||
sidebar_title = "#b16286"
|
||||
sidebar_border = "#928374"
|
||||
sidebar_border_active = "#b16286"
|
||||
sidebar_item_selected_fg = "#d65d0e"
|
||||
sidebar_item_selected_bg = ""
|
||||
sidebar_divider = "#928374"
|
||||
|
||||
#-- Modals
|
||||
modal_fg = "#fbf1c7"
|
||||
modal_bg = "#1d2021"
|
||||
modal_border_active = "#689d6a"
|
||||
modal_cancel_fg = "#fb4934"
|
||||
modal_cancel_bg = ""
|
||||
modal_confirm_fg = "#b8bb26"
|
||||
modal_confirm_bg = ""
|
||||
|
||||
#-- Help Menu
|
||||
help_menu_hotkey = "#689d6a"
|
||||
help_menu_title = "#b16286"
|
||||
|
||||
#-- Special
|
||||
cursor = "#689d6a"
|
||||
correct = "#98971a"
|
||||
error = "#ff6969"
|
||||
hint = "#468588"
|
||||
cancel = "#838383"
|
||||
@@ -0,0 +1,76 @@
|
||||
##############################################
|
||||
# #
|
||||
# Gruvbox Theme #
|
||||
# #
|
||||
##############################################
|
||||
|
||||
# This theme was created by: https://github.com/yorukot ! Thank you <3
|
||||
|
||||
# This contains the theme config file for superfile! For more details see:
|
||||
# https://superfile.dev/configure/custom-theme/
|
||||
|
||||
###############################################################################
|
||||
# Code Syntax Highlighting #
|
||||
###############################################################################
|
||||
|
||||
# Find one you like at: https://github.com/alecthomas/chroma/blob/master/styles.
|
||||
|
||||
code_syntax_highlight = "gruvbox"
|
||||
|
||||
###############################################################################
|
||||
# Base Colors #
|
||||
###############################################################################
|
||||
|
||||
#-- Full Screen
|
||||
full_screen_fg = "#ebdbb2"
|
||||
full_screen_bg = "#282828"
|
||||
|
||||
#-- Gradient
|
||||
# Note: This currently only supports two colors.
|
||||
gradient_color = ["#689d6a", "#fb4934"]
|
||||
|
||||
#-- File Panel
|
||||
file_panel_fg = "#ebdbb2"
|
||||
file_panel_bg = "#282828"
|
||||
file_panel_border = "#868686"
|
||||
file_panel_border_active = "#fff1c5"
|
||||
file_panel_top_directory_icon = "#8ec07c"
|
||||
file_panel_top_path = "#458588"
|
||||
file_panel_item_selected_fg = "#d3869b"
|
||||
file_panel_item_selected_bg = "#282828"
|
||||
|
||||
#-- Footer
|
||||
footer_fg = "#ebdbb2"
|
||||
footer_bg = "#282828"
|
||||
footer_border = "#868686"
|
||||
footer_border_active = "#d79921"
|
||||
|
||||
#-- Sidebar
|
||||
sidebar_fg = "#ebdbb2"
|
||||
sidebar_bg = "#282828"
|
||||
sidebar_title = "#cc241d"
|
||||
sidebar_border = "#282828"
|
||||
sidebar_border_active = "#d79921"
|
||||
sidebar_item_selected_fg = "#e8751a"
|
||||
sidebar_item_selected_bg = "#282828"
|
||||
sidebar_divider = "#868686"
|
||||
|
||||
#-- Modals
|
||||
modal_fg = "#ebdbb2"
|
||||
modal_bg = "#282828"
|
||||
modal_border_active = "#868686"
|
||||
modal_cancel_fg = "#ebdbb2"
|
||||
modal_cancel_bg = "#6d6d6d"
|
||||
modal_confirm_fg = "#ebdbb2"
|
||||
modal_confirm_bg = "#ff4d00"
|
||||
|
||||
#-- Help Menu
|
||||
help_menu_hotkey = "#8ec07c"
|
||||
help_menu_title = "#ff4d00"
|
||||
|
||||
#-- Special
|
||||
cursor = "#8ec07c"
|
||||
correct = "#8ec07c"
|
||||
error = "#ff6969"
|
||||
hint = "#458588"
|
||||
cancel = "#838383"
|
||||
@@ -0,0 +1,76 @@
|
||||
##############################################
|
||||
# #
|
||||
# Hacks Theme #
|
||||
# #
|
||||
##############################################
|
||||
|
||||
# This theme was created by: https://github.com/charlesrocket ! Thank you <3
|
||||
|
||||
# This contains the theme config file for superfile! For more details see:
|
||||
# https://superfile.dev/configure/custom-theme/
|
||||
|
||||
###############################################################################
|
||||
# Code Syntax Highlighting #
|
||||
###############################################################################
|
||||
|
||||
# Find one you like at: https://github.com/alecthomas/chroma/blob/master/styles.
|
||||
|
||||
code_syntax_highlight = "onedark"
|
||||
|
||||
###############################################################################
|
||||
# Base Colors #
|
||||
###############################################################################
|
||||
|
||||
#-- Full Screen
|
||||
full_screen_fg = "#f8f8f2"
|
||||
full_screen_bg = "#000000"
|
||||
|
||||
#-- Gradient
|
||||
# Note: This currently only supports two colors.
|
||||
gradient_color = ["#00ff00", "#afff00"]
|
||||
|
||||
#-- File Panel
|
||||
file_panel_fg = "#f8f8f2"
|
||||
file_panel_bg = "#000000"
|
||||
file_panel_border = "#afff00"
|
||||
file_panel_border_active = "#6532ff"
|
||||
file_panel_top_directory_icon = "#afff00"
|
||||
file_panel_top_path = "#afff00"
|
||||
file_panel_item_selected_fg = "#ff8d34"
|
||||
file_panel_item_selected_bg = "#524549"
|
||||
|
||||
#-- Footer
|
||||
footer_fg = "#f8f8f2"
|
||||
footer_bg = "#000000"
|
||||
footer_border = "#afff00"
|
||||
footer_border_active = "#6532ff"
|
||||
|
||||
#-- Sidebar
|
||||
sidebar_fg = "#f8f8f2"
|
||||
sidebar_bg = "#000000"
|
||||
sidebar_title = "#afff00"
|
||||
sidebar_border = "#afff00"
|
||||
sidebar_border_active = "#6532ff"
|
||||
sidebar_item_selected_fg = "#000000"
|
||||
sidebar_item_selected_bg = "#ff8d34"
|
||||
sidebar_divider = "#615250"
|
||||
|
||||
#-- Modals
|
||||
modal_fg = "#f8f8f2"
|
||||
modal_bg = "#000000"
|
||||
modal_border_active = "#6532ff"
|
||||
modal_cancel_fg = "#f9f9fe"
|
||||
modal_cancel_bg = "#000042"
|
||||
modal_confirm_fg = "#f9f9fe"
|
||||
modal_confirm_bg = "#ffb86c"
|
||||
|
||||
#-- Help Menu
|
||||
help_menu_hotkey = "#ff8d34"
|
||||
help_menu_title = "#afff00"
|
||||
|
||||
#-- Special
|
||||
cursor = "#ff0000"
|
||||
correct = "#47ef7d"
|
||||
error = "#d70000"
|
||||
hint = "#5bd9f3"
|
||||
cancel = "#6575ab"
|
||||
@@ -0,0 +1,76 @@
|
||||
##############################################
|
||||
# #
|
||||
# Kaolin Theme #
|
||||
# #
|
||||
##############################################
|
||||
|
||||
# This theme was created by: https://github.com/AnshumanNeon ! Thank you <3
|
||||
|
||||
# This contains the theme config file for superfile! For more details see:
|
||||
# https://superfile.dev/configure/custom-theme/
|
||||
|
||||
###############################################################################
|
||||
# Code Syntax Highlighting #
|
||||
###############################################################################
|
||||
|
||||
# Find one you like at: https://github.com/alecthomas/chroma/blob/master/styles.
|
||||
|
||||
code_syntax_highlight = "catppuccin-macchiato"
|
||||
|
||||
###############################################################################
|
||||
# Base Colors #
|
||||
###############################################################################
|
||||
|
||||
#-- Full Screen
|
||||
full_screen_fg = "#efefef"
|
||||
full_screen_bg = "#17171a"
|
||||
|
||||
#-- Gradient
|
||||
# Note: This currently only supports two colors.
|
||||
gradient_color = ["#74b09a", "#c74a4d"]
|
||||
|
||||
#-- File Panel
|
||||
file_panel_fg = "#efefef"
|
||||
file_panel_bg = "#17171a"
|
||||
file_panel_border = "#74b09a"
|
||||
file_panel_border_active = "#74b09a"
|
||||
file_panel_top_directory_icon = "#f5c791"
|
||||
file_panel_top_path = "#d7936d"
|
||||
file_panel_item_selected_fg = "#4fa8a3"
|
||||
file_panel_item_selected_bg = "#17171a"
|
||||
|
||||
#-- Footer
|
||||
footer_fg = "#efefef"
|
||||
footer_bg = "#17171a"
|
||||
footer_border = "#74b09a"
|
||||
footer_border_active = "#57b2c2"
|
||||
|
||||
#-- Sidebar
|
||||
sidebar_fg = "#efefef"
|
||||
sidebar_bg = "#17171a"
|
||||
sidebar_title = "#f5c791"
|
||||
sidebar_border = "#17171a"
|
||||
sidebar_border_active = "#57b2c2"
|
||||
sidebar_item_selected_fg = "#ba667d"
|
||||
sidebar_item_selected_bg = "#17171a"
|
||||
sidebar_divider = "#868686"
|
||||
|
||||
#-- Modals
|
||||
modal_fg = "#efefef"
|
||||
modal_bg = "#17171a"
|
||||
modal_border_active = "#868686"
|
||||
modal_cancel_fg = "#eedcc1"
|
||||
modal_cancel_bg = "#c74a4d"
|
||||
modal_confirm_fg = "#eedcc1"
|
||||
modal_confirm_bg = "#3e594a"
|
||||
|
||||
#-- Help Menu
|
||||
help_menu_hotkey = "#4fa8a3"
|
||||
help_menu_title = "#f5c791"
|
||||
|
||||
#-- Special
|
||||
cursor = "#f5c791"
|
||||
correct = "#74b09a"
|
||||
error = "#c74a4d"
|
||||
hint = "#4fa8a3"
|
||||
cancel = "#d7936d"
|
||||
@@ -0,0 +1,76 @@
|
||||
##############################################
|
||||
# #
|
||||
# Monokai Theme #
|
||||
# #
|
||||
##############################################
|
||||
|
||||
# This theme was created by: https://github.com/CommandJoo ! Thank you <3
|
||||
|
||||
# This contains the theme config file for superfile! For more details see:
|
||||
# https://superfile.dev/configure/custom-theme/
|
||||
|
||||
###############################################################################
|
||||
# Code Syntax Highlighting #
|
||||
###############################################################################
|
||||
|
||||
# Find one you like at: https://github.com/alecthomas/chroma/blob/master/styles.
|
||||
|
||||
code_syntax_highlight = "monokai"
|
||||
|
||||
###############################################################################
|
||||
# Base Colors #
|
||||
###############################################################################
|
||||
|
||||
#-- Full Screen
|
||||
full_screen_fg = "#f8f8f2"
|
||||
full_screen_bg = "#272822"
|
||||
|
||||
#-- Gradient
|
||||
# Note: This currently only supports two colors.
|
||||
gradient_color = ["#66d9ef", "#ae81ff"]
|
||||
|
||||
#-- File Panel
|
||||
file_panel_fg = "#f8f8f2"
|
||||
file_panel_bg = "#272822"
|
||||
file_panel_border = "#75715e"
|
||||
file_panel_border_active = "#66d9ef"
|
||||
file_panel_top_directory_icon = "#e6db74"
|
||||
file_panel_top_path = "#e6db74"
|
||||
file_panel_item_selected_fg = "#66d9ef"
|
||||
file_panel_item_selected_bg = "#2e2e2e"
|
||||
|
||||
#-- Footer
|
||||
footer_fg = "#f8f8f2"
|
||||
footer_bg = "#272822"
|
||||
footer_border = "#75715e"
|
||||
footer_border_active = "#a9dc76"
|
||||
|
||||
#-- Sidebar
|
||||
sidebar_fg = "#f8f8f2"
|
||||
sidebar_bg = "#272822"
|
||||
sidebar_title = "#66d9ef"
|
||||
sidebar_border = "#75715e"
|
||||
sidebar_border_active = "#f92672"
|
||||
sidebar_item_selected_fg = "#66d9ef"
|
||||
sidebar_item_selected_bg = "#272822"
|
||||
sidebar_divider = "#75715e"
|
||||
|
||||
#-- Modals
|
||||
modal_fg = "#f8f8f2"
|
||||
modal_bg = "#272822"
|
||||
modal_border_active = "#66d9ef"
|
||||
modal_cancel_fg = "#75715e"
|
||||
modal_cancel_bg = "#f92672"
|
||||
modal_confirm_fg = "#75715e"
|
||||
modal_confirm_bg = "#66d9ef"
|
||||
|
||||
#-- Help Menu
|
||||
help_menu_hotkey = "#66d9ef"
|
||||
help_menu_title = "#ae81ff"
|
||||
|
||||
#-- Special
|
||||
cursor = "#66d9ef"
|
||||
correct = "#a6e22e"
|
||||
error = "#f92672"
|
||||
hint = "#66d9ef"
|
||||
cancel = "#e6db74"
|
||||
@@ -0,0 +1,76 @@
|
||||
##############################################
|
||||
# #
|
||||
# Nord Theme #
|
||||
# #
|
||||
##############################################
|
||||
|
||||
# This theme was created by: https://github.com/rames-eltany ! Thank you <3
|
||||
|
||||
# This contains the theme config file for superfile! For more details see:
|
||||
# https://superfile.dev/configure/custom-theme/
|
||||
|
||||
###############################################################################
|
||||
# Code Syntax Highlighting #
|
||||
###############################################################################
|
||||
|
||||
# Find one you like at: https://github.com/alecthomas/chroma/blob/master/styles.
|
||||
|
||||
code_syntax_highlight = "nord"
|
||||
|
||||
###############################################################################
|
||||
# Base Colors #
|
||||
###############################################################################
|
||||
|
||||
#-- Full Screen
|
||||
full_screen_fg = "#e5e9f0"
|
||||
full_screen_bg = "#2e3440"
|
||||
|
||||
#-- Gradient
|
||||
# Note: This currently only supports two colors.
|
||||
gradient_color = ["#81a1c1", "#bf616a"]
|
||||
|
||||
#-- File Panel
|
||||
file_panel_fg = "#e5e9f0"
|
||||
file_panel_bg = "#2e3440"
|
||||
file_panel_border = "#4c566a"
|
||||
file_panel_border_active = "#d8dee9"
|
||||
file_panel_top_directory_icon = "#88c0d0"
|
||||
file_panel_top_path = "#88c0d0"
|
||||
file_panel_item_selected_fg = "#bf616a"
|
||||
file_panel_item_selected_bg = "#2e3440"
|
||||
|
||||
#-- Footer
|
||||
footer_fg = "#e5e9f0"
|
||||
footer_bg = "#2e3440"
|
||||
footer_border = "#4c566a"
|
||||
footer_border_active = "#b48ead"
|
||||
|
||||
#-- Sidebar
|
||||
sidebar_fg = "#e5e9f0"
|
||||
sidebar_bg = "#2e3440"
|
||||
sidebar_title = "#81a1c1"
|
||||
sidebar_border = "#2e3440"
|
||||
sidebar_border_active = "#b48ead"
|
||||
sidebar_item_selected_fg = "#88c0d0"
|
||||
sidebar_item_selected_bg = "#2e3440"
|
||||
sidebar_divider = "#868686"
|
||||
|
||||
#-- Modals
|
||||
modal_fg = "#e5e9f0"
|
||||
modal_bg = "#2e3440"
|
||||
modal_border_active = "#868686"
|
||||
modal_cancel_fg = "#e5e9f0"
|
||||
modal_cancel_bg = "#4c566a"
|
||||
modal_confirm_fg = "#e5e9f0"
|
||||
modal_confirm_bg = "#bf616a"
|
||||
|
||||
#-- Help Menu
|
||||
help_menu_hotkey = "#8fbcbb"
|
||||
help_menu_title = "#81a1c1"
|
||||
|
||||
#-- Special
|
||||
cursor = "#88c0d0"
|
||||
correct = "#88c0d0"
|
||||
error = "#bf616a"
|
||||
hint = "#8fbcbb"
|
||||
cancel = "#d8dee9"
|
||||
@@ -0,0 +1,76 @@
|
||||
##############################################
|
||||
# #
|
||||
# OneDark Theme #
|
||||
# #
|
||||
##############################################
|
||||
|
||||
# This theme was created by: https://github.com/CommandJoo ! Thank you <3
|
||||
|
||||
# This contains the theme config file for superfile! For more details see:
|
||||
# https://superfile.dev/configure/custom-theme/
|
||||
|
||||
###############################################################################
|
||||
# Code Syntax Highlighting #
|
||||
###############################################################################
|
||||
|
||||
# Find one you like at: https://github.com/alecthomas/chroma/blob/master/styles.
|
||||
|
||||
code_syntax_highlight = "onedark"
|
||||
|
||||
###############################################################################
|
||||
# Base Colors #
|
||||
###############################################################################
|
||||
|
||||
#-- Full Screen
|
||||
full_screen_fg = "#a7aab0"
|
||||
full_screen_bg = "#2c2d31"
|
||||
|
||||
#-- Gradient
|
||||
# Note: This currently only supports two colors.
|
||||
gradient_color = ["#68aee8", "#bb70d2"]
|
||||
|
||||
#-- File Panel
|
||||
file_panel_fg = "#a7aab0"
|
||||
file_panel_bg = "#232326"
|
||||
file_panel_border = "#737994"
|
||||
file_panel_border_active = "#57a5e5"
|
||||
file_panel_top_directory_icon = "#dbb671"
|
||||
file_panel_top_path = "#dbb671"
|
||||
file_panel_item_selected_fg = "#51a8b3"
|
||||
file_panel_item_selected_bg = "#2c2d31"
|
||||
|
||||
#-- Footer
|
||||
footer_fg = "#a7aab0"
|
||||
footer_bg = "#232326"
|
||||
footer_border = "#737994"
|
||||
footer_border_active = "#8fb573"
|
||||
|
||||
#-- Sidebar
|
||||
sidebar_fg = "#a7aab0"
|
||||
sidebar_bg = "#232326"
|
||||
sidebar_title = "#57a5e5"
|
||||
sidebar_border = "#737994"
|
||||
sidebar_border_active = "#de5d68"
|
||||
sidebar_item_selected_fg = "#51a8b3"
|
||||
sidebar_item_selected_bg = "#2c2d31"
|
||||
sidebar_divider = "#818387"
|
||||
|
||||
#-- Modals
|
||||
modal_fg = "#a7aab0"
|
||||
modal_bg = "#35363b"
|
||||
modal_border_active = "#51a8b3"
|
||||
modal_cancel_fg = "#414559"
|
||||
modal_cancel_bg = "#de5d68"
|
||||
modal_confirm_fg = "#414559"
|
||||
modal_confirm_bg = "#51a8b3"
|
||||
|
||||
#-- Help Menu
|
||||
help_menu_hotkey = "#51a8b3"
|
||||
help_menu_title = "#bb70d2"
|
||||
|
||||
#-- Special
|
||||
cursor = "#68aee8"
|
||||
correct = "#a6d189"
|
||||
error = "#de5d68"
|
||||
hint = "#68aee8"
|
||||
cancel = "#c49060"
|
||||
@@ -0,0 +1,76 @@
|
||||
##############################################
|
||||
# #
|
||||
# Poimandres Theme #
|
||||
# #
|
||||
##############################################
|
||||
|
||||
# This theme was created by: https://github.com/Myles-J ! Thank you <3
|
||||
|
||||
# This contains the theme config file for superfile! For more details see:
|
||||
# https://superfile.dev/configure/custom-theme/
|
||||
|
||||
###############################################################################
|
||||
# Code Syntax Highlighting #
|
||||
###############################################################################
|
||||
|
||||
# Find one you like at: https://github.com/alecthomas/chroma/blob/master/styles.
|
||||
|
||||
code_syntax_highlight = "catppuccin-mocha"
|
||||
|
||||
###############################################################################
|
||||
# Base Colors #
|
||||
###############################################################################
|
||||
|
||||
#-- Full Screen
|
||||
full_screen_fg = "#cdd6f4"
|
||||
full_screen_bg = "#1b1d24"
|
||||
|
||||
#-- Gradient
|
||||
# Note: This currently only supports two colors.
|
||||
gradient_color = ["#a6e3a1", "#f38ba8"]
|
||||
|
||||
#-- File Panel
|
||||
file_panel_fg = "#cdd6f4"
|
||||
file_panel_bg = "#1b1d24"
|
||||
file_panel_border = "#6c7086"
|
||||
file_panel_border_active = "#7fbbb3"
|
||||
file_panel_top_directory_icon = "#a6e3a1"
|
||||
file_panel_top_path = "#89b4fa"
|
||||
file_panel_item_selected_fg = "#a6e3a1"
|
||||
file_panel_item_selected_bg = "#2a303c"
|
||||
|
||||
#-- Footer
|
||||
footer_fg = "#cdd6f4"
|
||||
footer_bg = "#1b1d24"
|
||||
footer_border = "#6c7086"
|
||||
footer_border_active = "#7fbbb3"
|
||||
|
||||
#-- Sidebar
|
||||
sidebar_fg = "#cdd6f4"
|
||||
sidebar_bg = "#1b1d24"
|
||||
sidebar_title = "#cba6f7"
|
||||
sidebar_border = "#2a303c"
|
||||
sidebar_border_active = "#7fbbb3"
|
||||
sidebar_item_selected_fg = "#a6e3a1"
|
||||
sidebar_item_selected_bg = "#2a303c"
|
||||
sidebar_divider = "#6c7086"
|
||||
|
||||
#-- Modals
|
||||
modal_fg = "#cdd6f4"
|
||||
modal_bg = "#1b1d24"
|
||||
modal_border_active = "#7fbbb3"
|
||||
modal_cancel_fg = "#cdd6f4"
|
||||
modal_cancel_bg = "#6c7086"
|
||||
modal_confirm_fg = "#cdd6f4"
|
||||
modal_confirm_bg = "#4a4e69"
|
||||
|
||||
#-- Help Menu
|
||||
help_menu_hotkey = "#a6e3a1"
|
||||
help_menu_title = "#cba6f7"
|
||||
|
||||
#-- Special
|
||||
cursor = "#74c7ec"
|
||||
correct = "#a6e3a1"
|
||||
error = "#f38ba8"
|
||||
hint = "#89b4fa"
|
||||
cancel = "#6c7086"
|
||||
@@ -0,0 +1,76 @@
|
||||
##############################################
|
||||
# #
|
||||
# Rose Pine Theme #
|
||||
# #
|
||||
##############################################
|
||||
|
||||
# This theme was created by: https://github.com/pearcidar ! Thank you <3
|
||||
|
||||
# This contains the theme config file for superfile! For more details see:
|
||||
# https://superfile.dev/configure/custom-theme/
|
||||
|
||||
###############################################################################
|
||||
# Code Syntax Highlighting #
|
||||
###############################################################################
|
||||
|
||||
# Find one you like at: https://github.com/alecthomas/chroma/blob/master/styles.
|
||||
|
||||
code_syntax_highlight = "rose-pine"
|
||||
|
||||
###############################################################################
|
||||
# Base Colors #
|
||||
###############################################################################
|
||||
|
||||
#-- Full Screen
|
||||
full_screen_fg = "#e0def4"
|
||||
full_screen_bg = "#191724"
|
||||
|
||||
#-- Gradient
|
||||
# Note: This currently only supports two colors.
|
||||
gradient_color = ["#31784f", "#eb6f92"]
|
||||
|
||||
#-- File Panel
|
||||
file_panel_fg = "#e0def4"
|
||||
file_panel_bg = "#191724"
|
||||
file_panel_border = "#403d52"
|
||||
file_panel_border_active = "#6e6e86"
|
||||
file_panel_top_directory_icon = "#9ccfd8"
|
||||
file_panel_top_path = "#ebbcba"
|
||||
file_panel_item_selected_fg = "#c4a7e7"
|
||||
file_panel_item_selected_bg = "#191724"
|
||||
|
||||
#-- Footer
|
||||
footer_fg = "#e0def4"
|
||||
footer_bg = "#191724"
|
||||
footer_border = "#403d52"
|
||||
footer_border_active = "#f6c177"
|
||||
|
||||
#-- Sidebar
|
||||
sidebar_fg = "#e0def4"
|
||||
sidebar_bg = "#191724"
|
||||
sidebar_title = "#6e6e86"
|
||||
sidebar_border = "#191724"
|
||||
sidebar_border_active = "#c4a7e7"
|
||||
sidebar_item_selected_fg = "#f6c177"
|
||||
sidebar_item_selected_bg = "#191724"
|
||||
sidebar_divider = "#868686"
|
||||
|
||||
#-- Modals
|
||||
modal_fg = "#e0def4"
|
||||
modal_bg = "#191724"
|
||||
modal_border_active = "#868686"
|
||||
modal_cancel_fg = "#e0def4"
|
||||
modal_cancel_bg = "#524f67"
|
||||
modal_confirm_fg = "#e0def4"
|
||||
modal_confirm_bg = "#eb6f92"
|
||||
|
||||
#-- Help Menu
|
||||
help_menu_hotkey = "#f6c177"
|
||||
help_menu_title = "#9ccfd8"
|
||||
|
||||
#-- Special
|
||||
cursor = "#9ccfd8"
|
||||
correct = "#8ec07c"
|
||||
error = "#ff6969"
|
||||
hint = "#31784f"
|
||||
cancel = "#838383"
|
||||
@@ -0,0 +1,76 @@
|
||||
##############################################
|
||||
# #
|
||||
# Sugarplum Theme #
|
||||
# #
|
||||
##############################################
|
||||
|
||||
# This theme was created by: https://github.com/lemonlime0x3C33 ! Thank you <3
|
||||
|
||||
# This contains the theme config file for superfile! For more details see:
|
||||
# https://superfile.dev/configure/custom-theme/
|
||||
|
||||
###############################################################################
|
||||
# Code Syntax Highlighting #
|
||||
###############################################################################
|
||||
|
||||
# Find one you like at: https://github.com/alecthomas/chroma/blob/master/styles.
|
||||
|
||||
code_syntax_highlight = "catppuccin-macchiato"
|
||||
|
||||
###############################################################################
|
||||
# Base Colors #
|
||||
###############################################################################
|
||||
|
||||
#-- Full Screen
|
||||
full_screen_fg = "#db7ddd"
|
||||
full_screen_bg = "#111147"
|
||||
|
||||
#-- Gradient
|
||||
# Note: This currently only supports two colors.
|
||||
gradient_color = ["#249a84", "#5ca8dc"]
|
||||
|
||||
#-- File Panel
|
||||
file_panel_fg = "#db7ddd"
|
||||
file_panel_bg = "#111147"
|
||||
file_panel_border = "#a175d4"
|
||||
file_panel_border_active = "#53aaa1"
|
||||
file_panel_top_directory_icon = "#249a84"
|
||||
file_panel_top_path = "#249a84"
|
||||
file_panel_item_selected_fg = "#53b397"
|
||||
file_panel_item_selected_bg = "#53b397"
|
||||
|
||||
#-- Footer
|
||||
footer_fg = "#5ca8dc"
|
||||
footer_bg = "#111147"
|
||||
footer_border = "#a175d4"
|
||||
footer_border_active = "#53aaa1"
|
||||
|
||||
#-- Sidebar
|
||||
sidebar_fg = "#d0beee"
|
||||
sidebar_bg = "#111147"
|
||||
sidebar_title = "#db7ddd"
|
||||
sidebar_border = "#a175d4"
|
||||
sidebar_border_active = "#53aaa1"
|
||||
sidebar_item_selected_fg = "#249a84"
|
||||
sidebar_item_selected_bg = "#111147"
|
||||
sidebar_divider = "#565f89"
|
||||
|
||||
#-- Modals
|
||||
modal_fg = "#98c7a3"
|
||||
modal_bg = "#111147"
|
||||
modal_border_active = "#53aaa1"
|
||||
modal_cancel_fg = "#7c4094"
|
||||
modal_cancel_bg = "#7c4094"
|
||||
modal_confirm_fg = "#7c4094"
|
||||
modal_confirm_bg = "#7c4094"
|
||||
|
||||
#-- Help Menu
|
||||
help_menu_hotkey = "#7dcfff"
|
||||
help_menu_title = "#73daca"
|
||||
|
||||
#-- Special
|
||||
cursor = "#53b397"
|
||||
correct = "#524094"
|
||||
error = "#2082a6"
|
||||
hint = "#91d4c2"
|
||||
cancel = "#b53dff"
|
||||
@@ -0,0 +1,76 @@
|
||||
##############################################
|
||||
# #
|
||||
# Tokyo Night Theme #
|
||||
# #
|
||||
##############################################
|
||||
|
||||
# This theme was created by: https://github.com/pearcidar ! Thank you <3
|
||||
|
||||
# This contains the theme config file for superfile! For more details see:
|
||||
# https://superfile.dev/configure/custom-theme/
|
||||
|
||||
###############################################################################
|
||||
# Code Syntax Highlighting #
|
||||
###############################################################################
|
||||
|
||||
# Find one you like at: https://github.com/alecthomas/chroma/blob/master/styles.
|
||||
|
||||
code_syntax_highlight = "catppuccin-macchiato"
|
||||
|
||||
###############################################################################
|
||||
# Base Colors #
|
||||
###############################################################################
|
||||
|
||||
#-- Full Screen
|
||||
full_screen_fg = "#a9b1d6"
|
||||
full_screen_bg = "#1a1b26"
|
||||
|
||||
#-- Gradient
|
||||
# Note: This currently only supports two colors.
|
||||
gradient_color = ["#7aa2f7", "#bb9af7"]
|
||||
|
||||
#-- File Panel
|
||||
file_panel_fg = "#a9b1d6"
|
||||
file_panel_bg = "#1a1b26"
|
||||
file_panel_border = "#414868"
|
||||
file_panel_border_active = "#b4befe"
|
||||
file_panel_top_directory_icon = "#73daca"
|
||||
file_panel_top_path = "#7aa2f7"
|
||||
file_panel_item_selected_fg = "#2ac3de"
|
||||
file_panel_item_selected_bg = "#1a1b26"
|
||||
|
||||
#-- Footer
|
||||
footer_fg = "#a9b1d6"
|
||||
footer_bg = "#1a1b26"
|
||||
footer_border = "#414868"
|
||||
footer_border_active = "#73daca"
|
||||
|
||||
#-- Sidebar
|
||||
sidebar_fg = "#a9b1d6"
|
||||
sidebar_bg = "#1a1b26"
|
||||
sidebar_title = "#73daca"
|
||||
sidebar_border = "#24283b"
|
||||
sidebar_border_active = "#f7768e"
|
||||
sidebar_item_selected_fg = "#7dcfff"
|
||||
sidebar_item_selected_bg = "#1a1b26"
|
||||
sidebar_divider = "#565f89"
|
||||
|
||||
#-- Modals
|
||||
modal_fg = "#a9b1d6"
|
||||
modal_bg = "#1a1b26"
|
||||
modal_border_active = "#73daca"
|
||||
modal_cancel_fg = "#24383b"
|
||||
modal_cancel_bg = "#e0af68"
|
||||
modal_confirm_fg = "#24283b"
|
||||
modal_confirm_bg = "#9ece6a"
|
||||
|
||||
#-- Help Menu
|
||||
help_menu_hotkey = "#7dcfff"
|
||||
help_menu_title = "#73daca"
|
||||
|
||||
#-- Special
|
||||
cursor = "#ff9e64"
|
||||
correct = "#9ece6a"
|
||||
error = "#f7768e"
|
||||
hint = "#7dcfff"
|
||||
cancel = "#ff9e64"
|
||||
Reference in New Issue
Block a user