Last active
September 28, 2024 14:48
-
-
Save JakubDotPy/fc34c58199e65bf97c6e6fbfd777bb42 to your computer and use it in GitHub Desktop.
superfile theme based on Pycharm dark
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Pycharm Dark | |
# Theme create by: https://github.com/JakubDotPy | |
# ========= Border ========= | |
file_panel_border = "#2B2D30" | |
sidebar_border = "#CB5C27" | |
footer_border = "#2B2D30" | |
# ========= Border Active ========= | |
file_panel_border_active = "#ffc66d" | |
sidebar_border_active = "#ffc66d" | |
footer_border_active = "#ffc66d" | |
modal_border_active = "#ffc66d" | |
# ========= Background (bg) ========= | |
full_screen_bg = "#1E1F22" | |
file_panel_bg = "#1E1F22" | |
sidebar_bg = "#1E1F22" | |
footer_bg = "#1E1F22" | |
modal_bg = "#2B2D30" | |
# ========= Foreground (fg) ========= | |
full_screen_fg = "#DFE1E5" | |
file_panel_fg = "#DFE1E5" | |
sidebar_fg = "#DFE1E5" | |
footer_fg = "#DFE1E5" | |
modal_fg = "#DFE1E5" | |
# ========= Special Color ========= | |
cursor = "#CB5C27" | |
correct = "#8ec07c" | |
error = "#ff6969" | |
hint = "#31784f" | |
cancel = "#838383" | |
# Gradient color can only have two color! | |
gradient_color = ["#31784f", "#eb6f92"] | |
# ========= File Panel Special Items ========= | |
file_panel_top_directory_icon = "#6A8759" | |
file_panel_top_path = "#6A8759" | |
file_panel_item_selected_fg = "#c4a7e7" | |
file_panel_item_selected_bg = "#214283" | |
# ========= Sidebar Special Items ========= | |
sidebar_title = "#8888C6" | |
sidebar_item_selected_fg = "#B200B2" | |
sidebar_item_selected_bg = "#1E1F22" | |
sidebar_divider = "#ffc66d" | |
# ========= Modal Special Items ========= | |
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" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment