Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Better commenting for choosing themes #108

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 13 additions & 5 deletions userChrome.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,24 @@

/******************************************************************/
/*********************** SELECT THEME HERE ************************/
@import "themes/system.css";
/** Choose a theme by adding '/' after '/**' before the theme name *****/
/**@import "themes/_base.css";/**/
/**/@import "themes/dark.css";/**/ /** --> this theme is currently active
/**@import "themes/dark-blue.css";/**/
/**@import "themes/fulldark.css";/**/
/**@import "themes/light.css";/**/
/**@import "themes/monterail.css";/**/
/**@import "themes/system.css";/**/
/******************************************************************/
/******************************************************************/

/* Uncommment to use the dark folder pane style when using the system theme with dark menus */
@import "tweaks/dark-folder-pane.css";
/* @import "tweaks/dark-folder-pane.css"; */

/* Select icon theme (leave commented to use default for the selected theme)*/
/* @import "icons/lightIcons.css"; /*For dark Folder Tree and Message List*/
/* @import "icons/lightDarkIcons.css"; /*For dark Folder Tree, with a light Message List*/
/* @import "icons/darkIcons.css"; /*For light Folder Tree and Message List*/
/**@import "icons/lightIcons.css";/**/ /*For dark Folder Tree and Message List*/
/**/@import "icons/lightDarkIcons.css"; /**//*For dark Folder Tree, with a light Message List*/
/**@import "icons/darkIcons.css";/**/ /*For light Folder Tree and Message List*/


/****************************************************************************/
Expand All @@ -45,6 +52,7 @@
:root {
/*---- General Options ----*/
/*--default-font: var(--light-sans-font); /* Change to var(--system-font) to use your default font, or specify a font name */
--default-font: var(--system-font); /* Change to var(--system-font) to use your default font, or specify a font name */
/*--menu-text-color: MenuText;*/

/*---- Highlight Colors - Used if more specific ones aren't specified below ----/
Expand Down