MyNixOS website logo

Theme files written to $XDG_CONFIG_HOME/superfile/theme/ (linux) or Library/Application Support/superfile/theme/ (darwin), See https://superfile.netlify.app/configure/custom-theme/ for supported values.

Declarations
Type
attribute set of (TOML value or absolute path)
Default
{ }
Example
myTheme = {
  code_syntax_highlight = "catppuccin-latte";

  file_panel_border = "#101010";
  sidebar_border = "#101011";
  footer_border = "#101012";

  gradient_color = [
    "#101013"
    "#101014"
  ];

  # ...
};
myOtherFavoriteTheme = {
  code_syntax_highlight = "catppuccin-mocha";

  file_panel_border = "#505050";
  sidebar_border = "#505051";
  footer_border = "#505052";

  gradient_color = [
    "#505053"
    "#505054"
  ];

  # ...
};