2024-05-30 14:13:41 -04:00
|
|
|
/** SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors */
|
|
|
|
|
/** SPDX-License-Identifier: AGPL-3.0-or-later */
|
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);
|
2024-08-31 09:55:41 -04:00
|
|
|
--color-scrollbar: var(--color-border-maxcontrast) transparent;
|
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;
|
2024-03-06 08:37:59 -05:00
|
|
|
--color-favorite: #A37200;
|
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;
|
2024-07-31 11:28:12 -04:00
|
|
|
--font-size-small: 13px;
|
2024-07-02 16:29:43 -04:00
|
|
|
/* 1.5 x font-size for accessibility */
|
2024-07-31 08:36:23 -04:00
|
|
|
--default-line-height: 1.5;
|
2022-04-22 03:56:12 -04:00
|
|
|
--animation-quick: 100ms;
|
|
|
|
|
--animation-slow: 300ms;
|
2024-05-16 04:18:12 -04:00
|
|
|
/** Border width for input elements such as text fields and selects */
|
|
|
|
|
--border-width-input: 1px;
|
|
|
|
|
--border-width-input-focused: 2px;
|
2024-07-31 11:22:09 -04:00
|
|
|
|
|
|
|
|
/* Border radii (new values) */
|
|
|
|
|
--border-radius-small: 4px; /* For smaller elements */
|
|
|
|
|
--border-radius-element: 8px; /* For interactive elements such as buttons, input, navigation and list items */
|
|
|
|
|
--border-radius-container: 12px; /* For smaller containers like action menus */
|
|
|
|
|
--border-radius-container-large: 16px; /* For larger containers like body or modals */
|
|
|
|
|
|
|
|
|
|
/* Border radii (deprecated) */
|
|
|
|
|
--border-radius: var(--border-radius-small);
|
|
|
|
|
--border-radius-large: var(--border-radius-element);
|
2023-05-15 09:59:34 -04:00
|
|
|
--border-radius-rounded: 28px;
|
2022-04-22 03:56:12 -04:00
|
|
|
--border-radius-pill: 100px;
|
2024-07-31 11:22:09 -04:00
|
|
|
|
2024-06-12 07:09:31 -04:00
|
|
|
--default-clickable-area: 34px;
|
|
|
|
|
--clickable-area-large: 48px;
|
|
|
|
|
--clickable-area-small: 24px;
|
2022-09-01 03:07:25 -04:00
|
|
|
--default-grid-baseline: 4px;
|
2022-04-22 03:56:12 -04:00
|
|
|
--header-height: 50px;
|
2024-07-02 16:29:43 -04:00
|
|
|
--header-menu-item-height: 44px;
|
2022-04-22 03:56:12 -04:00
|
|
|
--navigation-width: 300px;
|
|
|
|
|
--sidebar-min-width: 300px;
|
|
|
|
|
--sidebar-max-width: 500px;
|
2024-07-02 16:29:43 -04:00
|
|
|
/* Border radius of the body container */
|
2024-08-01 09:43:36 -04:00
|
|
|
--body-container-radius: var(--border-radius-container-large);
|
2024-07-02 16:29:43 -04:00
|
|
|
/* Margin of the body container */
|
|
|
|
|
--body-container-margin: calc(var(--default-grid-baseline) * 2);
|
|
|
|
|
/* Height of the body container to fully fill the view port */
|
|
|
|
|
--body-height: calc(100% - env(safe-area-inset-bottom) - var(--header-height) - var(--body-container-margin));
|
2022-04-22 03:56:12 -04:00
|
|
|
--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-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%);
|
2024-01-20 01:43:04 -05:00
|
|
|
--color-background-plain: #00679e;
|
2024-01-19 16:48:27 -05:00
|
|
|
--color-background-plain-text: #ffffff;
|
2024-07-11 09:36:36 -04:00
|
|
|
--image-background: url('/apps/theming/img/background/jenna-kim-the-globe.webp');
|
2022-04-22 03:56:12 -04:00
|
|
|
}
|