mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-03-29 19:51:20 -04:00
* Main font color from blue to regular dark * newline added at the end of rtl css file * Text display improvements (code, quotes) + minor UI fixes * replaced 2 spaces with 1 tab bcz phpcs is whining about that * make fix-all * Mapco/base-theme - CSS cleaning * make fix-all * PR #4711 cleaning * Exclude generated CSS from lint check * Revert exclusion of generated CSS files Co-authored-by: patjennings <patjennings@MacBook-Pro-de-patjennings.local> Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr> Co-authored-by: patjennings <patjennings@macbook-pro-de-patjennings.home> Co-authored-by: maTh <math-home@web.de>
59 lines
1.7 KiB
SCSS
59 lines
1.7 KiB
SCSS
// The main color of the theme
|
|
$main-first: #36c; // main color
|
|
$main-first-alt: #25c; // var for hovers
|
|
$main-first-light: #effcfd; // var light 1
|
|
$main-first-lighter: #f7fdfe; // var light 2
|
|
$main-first-dark: #35363c; // var for hovers
|
|
$main-first-darker: #1d1e22; // var for hovers
|
|
|
|
// linked font colors
|
|
$main-font-color: #303136;
|
|
$light-font-color: #5b6871;
|
|
$white: #fff; // white (sometimes we would like to tint it a little)
|
|
|
|
// the whole palette of grays, very useful
|
|
// we will try to tint these grays according to the main color
|
|
$grey-darker: #3b3f4d;
|
|
$grey-dark: #5b6871;
|
|
$grey-medium-dark: #a6a7ae;
|
|
$grey-medium: #c5ced3;
|
|
$grey-medium-light: #d5d8db;
|
|
$grey-light: #eff0f2;
|
|
$grey-lighter: #f9fafb;
|
|
|
|
$unread-font-color: $main-first;
|
|
$unread-bg: #f2f6f8;
|
|
$unread-bg-light: #fdfdfe;
|
|
|
|
// alert colors (red, yellow, green)
|
|
$alert-bg: #f5633e; // the base
|
|
$alert-light: #fde0d8; // +light
|
|
$alert-text: #73341f; // +dark
|
|
|
|
$code-text: #e41212;
|
|
$code-bg: #fde3e3;
|
|
|
|
$warning-bg: #f4f762;
|
|
$warning-light: #fdfde0;
|
|
$warning-text: #73762f;
|
|
|
|
$success-bg: #10f587;
|
|
$success-light: #cffde7;
|
|
$success-text: #0c7540;
|
|
|
|
// favourites
|
|
$fav-bg: #ffc300;
|
|
$fav-light: #fff6da;
|
|
|
|
// the sidebar color, useful if you want a theme that would have a dark sidebar, e.g.
|
|
// stylelint-disable-next-line color-hex-length
|
|
$sid-font-color: #ffffff; // the background color of the left bar and the header
|
|
$sid-bg: #303136; // the general background of the left bar, and of the header
|
|
$sid-bg-alt: #26272a; // background inside groups
|
|
$sid-bg-dark: #17181a; // the hover
|
|
$sid-sep: #3f3f3f; // the separators
|
|
$sid-active: $main-first; // the active color
|
|
// stylelint-disable-next-line color-hex-length
|
|
$sid-active-font: #ffffff; // the active color
|
|
$sid-pills: rgba(0,0,0, 0.25); // capsules
|