2022-04-26 02:37:49 -04:00
|
|
|
:root {
|
2022-04-22 03:56:12 -04:00
|
|
|
--color-main-background: #ffffff;
|
|
|
|
|
--color-main-background-rgb: 255,255,255;
|
|
|
|
|
--color-main-background-translucent: rgba(var(--color-main-background-rgb), .97);
|
2022-08-19 08:35:00 -04:00
|
|
|
--color-main-background-blur: rgba(var(--color-main-background-rgb), .8);
|
|
|
|
|
--filter-background-blur: blur(25px);
|
2022-04-22 03:56:12 -04:00
|
|
|
--gradient-main-background: var(--color-main-background) 0%, var(--color-main-background-translucent) 85%, transparent 100%;
|
|
|
|
|
--color-background-hover: #f5f5f5;
|
2023-10-25 07:57:28 -04:00
|
|
|
/** Can be used e.g. to colorize selected table rows */
|
2022-04-22 03:56:12 -04:00
|
|
|
--color-background-dark: #ededed;
|
2023-10-25 07:57:28 -04:00
|
|
|
/** This should only be used for elements, not as a text background! Otherwise it will not work for accessibility. */
|
2022-04-22 03:56:12 -04:00
|
|
|
--color-background-darker: #dbdbdb;
|
|
|
|
|
--color-placeholder-light: #e6e6e6;
|
|
|
|
|
--color-placeholder-dark: #cccccc;
|
|
|
|
|
--color-main-text: #222222;
|
2023-10-25 07:57:28 -04:00
|
|
|
--color-text-maxcontrast: #6b6b6b;
|
|
|
|
|
--color-text-maxcontrast-default: #6b6b6b;
|
|
|
|
|
--color-text-maxcontrast-background-blur: #595959;
|
2023-10-05 10:49:22 -04:00
|
|
|
/** @deprecated use ` --color-main-text` instead */
|
|
|
|
|
--color-text-light: var(--color-main-text);
|
|
|
|
|
/** @deprecated use `--color-text-maxcontrast` instead */
|
|
|
|
|
--color-text-lighter: var(--color-text-maxcontrast);
|
2022-09-01 03:07:25 -04:00
|
|
|
--color-scrollbar: rgba(34,34,34, .15);
|
2023-12-19 06:09:47 -05:00
|
|
|
--color-error: #DB0606;
|
|
|
|
|
--color-error-rgb: 219,6,6;
|
|
|
|
|
--color-error-hover: #df2525;
|
|
|
|
|
--color-error-text: #c20505;
|
2023-12-14 11:57:45 -05:00
|
|
|
--color-warning: #A37200;
|
|
|
|
|
--color-warning-rgb: 163,114,0;
|
|
|
|
|
--color-warning-hover: #8a6000;
|
|
|
|
|
--color-warning-text: #7f5900;
|
2023-07-14 06:59:20 -04:00
|
|
|
--color-success: #2d7b41;
|
|
|
|
|
--color-success-rgb: 45,123,65;
|
2023-12-14 11:57:45 -05:00
|
|
|
--color-success-hover: #428854;
|
2023-07-14 06:59:20 -04:00
|
|
|
--color-success-text: #286c39;
|
|
|
|
|
--color-info: #0071ad;
|
|
|
|
|
--color-info-rgb: 0,113,173;
|
|
|
|
|
--color-info-hover: #197fb5;
|
|
|
|
|
--color-info-text: #006499;
|
2022-04-22 03:56:12 -04:00
|
|
|
--color-loading-light: #cccccc;
|
|
|
|
|
--color-loading-dark: #444444;
|
|
|
|
|
--color-box-shadow-rgb: 77,77,77;
|
|
|
|
|
--color-box-shadow: rgba(var(--color-box-shadow-rgb), 0.5);
|
2022-12-02 19:48:49 -05:00
|
|
|
--color-border: #ededed;
|
|
|
|
|
--color-border-dark: #dbdbdb;
|
2024-01-17 09:26:56 -05:00
|
|
|
--color-border-maxcontrast: #7d7d7d;
|
2023-07-21 04:39:06 -04:00
|
|
|
--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';
|
2022-04-22 03:56:12 -04:00
|
|
|
--default-font-size: 15px;
|
|
|
|
|
--animation-quick: 100ms;
|
|
|
|
|
--animation-slow: 300ms;
|
|
|
|
|
--border-radius: 3px;
|
|
|
|
|
--border-radius-large: 10px;
|
2023-05-15 09:59:34 -04:00
|
|
|
--border-radius-rounded: 28px;
|
2022-04-22 03:56:12 -04:00
|
|
|
--border-radius-pill: 100px;
|
2022-09-01 03:07:25 -04:00
|
|
|
--default-clickable-area: 44px;
|
2022-04-22 03:56:12 -04:00
|
|
|
--default-line-height: 24px;
|
2022-09-01 03:07:25 -04:00
|
|
|
--default-grid-baseline: 4px;
|
2022-04-22 03:56:12 -04:00
|
|
|
--header-height: 50px;
|
|
|
|
|
--navigation-width: 300px;
|
|
|
|
|
--sidebar-min-width: 300px;
|
|
|
|
|
--sidebar-max-width: 500px;
|
|
|
|
|
--list-min-width: 200px;
|
|
|
|
|
--list-max-width: 300px;
|
|
|
|
|
--header-menu-item-height: 44px;
|
|
|
|
|
--header-menu-profile-item-height: 66px;
|
|
|
|
|
--breakpoint-mobile: 1024px;
|
2022-04-28 05:30:36 -04:00
|
|
|
--background-invert-if-dark: no;
|
2022-08-08 06:56:31 -04:00
|
|
|
--background-invert-if-bright: invert(100%);
|
2022-10-18 22:07:12 -04:00
|
|
|
--background-image-invert-if-bright: no;
|
2022-10-19 06:22:54 -04:00
|
|
|
--primary-invert-if-bright: no;
|
2023-11-29 05:27:57 -05:00
|
|
|
--primary-invert-if-dark: invert(100%);
|
2023-10-25 10:29:26 -04:00
|
|
|
--color-primary: #00679e;
|
2022-10-05 06:14:03 -04:00
|
|
|
--color-primary-default: #0082c9;
|
2022-09-23 09:29:47 -04:00
|
|
|
--color-primary-text: #ffffff;
|
2023-10-25 10:29:26 -04:00
|
|
|
--color-primary-hover: #3285b1;
|
|
|
|
|
--color-primary-light: #e5eff5;
|
|
|
|
|
--color-primary-light-text: #00293f;
|
|
|
|
|
--color-primary-light-hover: #dbe4ea;
|
|
|
|
|
--color-primary-element: #00679e;
|
2023-12-15 10:14:37 -05:00
|
|
|
--color-primary-element-hover: #005a8a;
|
2023-05-04 06:51:02 -04:00
|
|
|
--color-primary-element-text: #ffffff;
|
2023-12-15 10:14:37 -05:00
|
|
|
--color-primary-element-text-dark: #f5f5f5;
|
2023-10-25 10:29:26 -04:00
|
|
|
--color-primary-element-light: #e5eff5;
|
|
|
|
|
--color-primary-element-light-hover: #dbe4ea;
|
|
|
|
|
--color-primary-element-light-text: #00293f;
|
2022-09-23 09:29:47 -04:00
|
|
|
--gradient-primary-background: linear-gradient(40deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
|
2022-10-20 10:03:19 -04:00
|
|
|
--image-background-default: url('/apps/theming/img/background/kamil-porembinski-clouds.jpg');
|
2024-02-03 07:37:28 -05:00
|
|
|
--color-background-plain: #00679e;
|
2022-04-22 03:56:12 -04:00
|
|
|
}
|