_variables.rtl.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. :root {
  2. /* The main color of the theme*/
  3. --main-first: #36c; /* main color*/
  4. --main-first-alt: #25c; /* var for hovers*/
  5. --main-first-light: #effcfd; /* var light 1*/
  6. --main-first-lighter: #f7fdfe; /* var light 2*/
  7. --main-first-dark: #35363c; /* var for hovers*/
  8. --main-first-darker: #1d1e22; /* var for hovers*/
  9. /* linked font colors*/
  10. --main-font-color: #303136;
  11. --light-font-color: #5b6871;
  12. --white: #fff; /* white (sometimes we would like to tint it a little)*/
  13. /* the whole palette of grays, very useful*/
  14. /* we will try to tint these grays according to the main color*/
  15. --grey-darker: #3b3f4d;
  16. --grey-dark: #5b6871;
  17. --grey-medium-dark: #a6a7ae;
  18. --grey-medium: #c5ced3;
  19. --grey-medium-light: #d5d8db;
  20. --grey-light: #eff0f2;
  21. --grey-lighter: #f9fafb;
  22. --unread-font-color: $main-first;
  23. --unread-bg: #f2f6f8;
  24. --unread-bg-light: #fdfdfe;
  25. /* alert colors (red, yellow, green)*/
  26. --alert-bg: #f5633e; /* the base*/
  27. --alert-light: #fde0d8; /* +light*/
  28. --alert-text: #73341f; /* +dark*/
  29. --code-text: #e41212;
  30. --code-bg: #fde3e3;
  31. --warning-bg: #f4f762;
  32. --warning-light: #fdfde0;
  33. --warning-text: #73762f;
  34. --success-bg: #10f587;
  35. --success-light: #cffde7;
  36. --success-text: #0c7540;
  37. /* favourites*/
  38. --fav-bg: #ffc300;
  39. --fav-light: #fff6da;
  40. /* the sidebar color, useful if you want a theme that would have a dark sidebar, e.g.*/
  41. /* stylelint-disable-next-line color-hex-length*/
  42. --sid-font-color: #ffffff; /* the background color of the left bar and the header*/
  43. --sid-bg: #303136; /* the general background of the left bar, and of the header*/
  44. --sid-bg-alt: #26272a; /* background inside groups*/
  45. --sid-bg-dark: #17181a; /* the hover*/
  46. --sid-sep: #3f3f3f; /* the separators*/
  47. --sid-active: $main-first; /* the active color*/
  48. /* stylelint-disable-next-line color-hex-length*/
  49. --sid-active-font: #ffffff; /* the active color*/
  50. --sid-pills: rgba(0,0,0, 0.25); /* capsules*/
  51. }