You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

default.css 3.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. :root {
  2. --color-main-background: #ffffff;
  3. --color-main-background-rgb: 255,255,255;
  4. --color-main-background-translucent: rgba(var(--color-main-background-rgb), .97);
  5. --color-main-background-blur: rgba(var(--color-main-background-rgb), .8);
  6. --filter-background-blur: blur(25px);
  7. --gradient-main-background: var(--color-main-background) 0%, var(--color-main-background-translucent) 85%, transparent 100%;
  8. --color-background-hover: #f5f5f5;
  9. /** Can be used e.g. to colorize selected table rows */
  10. --color-background-dark: #ededed;
  11. /** This should only be used for elements, not as a text background! Otherwise it will not work for accessibility. */
  12. --color-background-darker: #dbdbdb;
  13. --color-placeholder-light: #e6e6e6;
  14. --color-placeholder-dark: #cccccc;
  15. --color-main-text: #222222;
  16. --color-text-maxcontrast: #6b6b6b;
  17. --color-text-maxcontrast-default: #6b6b6b;
  18. --color-text-maxcontrast-background-blur: #595959;
  19. /** @deprecated use ` --color-main-text` instead */
  20. --color-text-light: var(--color-main-text);
  21. /** @deprecated use `--color-text-maxcontrast` instead */
  22. --color-text-lighter: var(--color-text-maxcontrast);
  23. --color-scrollbar: rgba(34,34,34, .15);
  24. --color-error: #DB0606;
  25. --color-error-rgb: 219,6,6;
  26. --color-error-hover: #df2525;
  27. --color-error-text: #c20505;
  28. --color-warning: #A37200;
  29. --color-warning-rgb: 163,114,0;
  30. --color-warning-hover: #8a6000;
  31. --color-warning-text: #7f5900;
  32. --color-success: #2d7b41;
  33. --color-success-rgb: 45,123,65;
  34. --color-success-hover: #428854;
  35. --color-success-text: #286c39;
  36. --color-info: #0071ad;
  37. --color-info-rgb: 0,113,173;
  38. --color-info-hover: #197fb5;
  39. --color-info-text: #006499;
  40. --color-loading-light: #cccccc;
  41. --color-loading-dark: #444444;
  42. --color-box-shadow-rgb: 77,77,77;
  43. --color-box-shadow: rgba(var(--color-box-shadow-rgb), 0.5);
  44. --color-border: #ededed;
  45. --color-border-dark: #dbdbdb;
  46. --color-border-maxcontrast: #7d7d7d;
  47. --font-face: system-ui, -apple-system, 'Segoe UI', Roboto, Oxygen-Sans, Cantarell, Ubuntu, 'Helvetica Neue', 'Noto Sans', 'Liberation Sans', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  48. --default-font-size: 15px;
  49. --animation-quick: 100ms;
  50. --animation-slow: 300ms;
  51. --border-radius: 3px;
  52. --border-radius-large: 10px;
  53. --border-radius-rounded: 28px;
  54. --border-radius-pill: 100px;
  55. --default-clickable-area: 44px;
  56. --default-line-height: 24px;
  57. --default-grid-baseline: 4px;
  58. --header-height: 50px;
  59. --navigation-width: 300px;
  60. --sidebar-min-width: 300px;
  61. --sidebar-max-width: 500px;
  62. --list-min-width: 200px;
  63. --list-max-width: 300px;
  64. --header-menu-item-height: 44px;
  65. --header-menu-profile-item-height: 66px;
  66. --breakpoint-mobile: 1024px;
  67. --background-invert-if-dark: no;
  68. --background-invert-if-bright: invert(100%);
  69. --background-image-invert-if-bright: no;
  70. --background-image-color-text: #ffffff;
  71. --primary-invert-if-bright: no;
  72. --primary-invert-if-dark: invert(100%);
  73. --color-primary: #00679e;
  74. --color-primary-default: #0082c9;
  75. --color-primary-text: #ffffff;
  76. --color-primary-hover: #3285b1;
  77. --color-primary-light: #e5eff5;
  78. --color-primary-light-text: #00293f;
  79. --color-primary-light-hover: #dbe4ea;
  80. --color-primary-element: #00679e;
  81. --color-primary-element-hover: #005a8a;
  82. --color-primary-element-text: #ffffff;
  83. --color-primary-element-text-dark: #f5f5f5;
  84. --color-primary-element-light: #e5eff5;
  85. --color-primary-element-light-hover: #dbe4ea;
  86. --color-primary-element-light-text: #00293f;
  87. --gradient-primary-background: linear-gradient(40deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
  88. --image-background-default: url('/apps/theming/img/background/kamil-porembinski-clouds.jpg');
  89. --color-background-plain: #00679e;
  90. }