mirror of
https://github.com/itflow-org/itflow
synced 2026-06-26 03:31:05 +00:00
97 lines
2.9 KiB
CSS
97 lines
2.9 KiB
CSS
|
|
:root {
|
|
/* primary */
|
|
--fc-pulse-primary: #d32d50;
|
|
--fc-pulse-primary-over: #db4a60;
|
|
--fc-pulse-primary-down: #e26171;
|
|
--fc-pulse-primary-foreground: #fff;
|
|
|
|
/* secondary */
|
|
--fc-pulse-secondary: var(--fc-pulse-background);
|
|
--fc-pulse-secondary-over: var(--fc-pulse-faint);
|
|
--fc-pulse-secondary-down: var(--fc-pulse-muted);
|
|
--fc-pulse-secondary-foreground: var(--fc-pulse-foreground);
|
|
--fc-pulse-secondary-icon: var(--fc-pulse-faint-foreground);
|
|
--fc-pulse-secondary-icon-over: var(--fc-pulse-muted-foreground);
|
|
|
|
/* tertiary */
|
|
--fc-pulse-tertiary: #fd453b;
|
|
--fc-pulse-tertiary-over: #dc3b32;
|
|
--fc-pulse-tertiary-down: #bc3129;
|
|
--fc-pulse-tertiary-foreground: #fff;
|
|
|
|
/* calendar content */
|
|
--fc-pulse-event: #631515;
|
|
--fc-pulse-event-contrast: #fff;
|
|
--fc-pulse-background-event: #fbbf24;
|
|
--fc-pulse-highlight: #fb718526;
|
|
--fc-pulse-now: #ef4444;
|
|
|
|
/* controls */
|
|
--fc-pulse-unselected: var(--fc-pulse-muted);
|
|
--fc-pulse-unselected-foreground: var(--fc-pulse-foreground);
|
|
--fc-pulse-selected: var(--fc-pulse-background);
|
|
--fc-pulse-selected-foreground: var(--fc-pulse-foreground);
|
|
|
|
/* neutral backgrounds */
|
|
--fc-pulse-background: #fff;
|
|
--fc-pulse-faint: #00000008;
|
|
--fc-pulse-muted: #00000012;
|
|
--fc-pulse-strong: #0000001F;
|
|
--fc-pulse-stronger: #00000029;
|
|
--fc-pulse-strongest: #00000033;
|
|
|
|
/* neutral foregrounds */
|
|
--fc-pulse-foreground: #232d3e;
|
|
--fc-pulse-faint-foreground: #9ca3af;
|
|
--fc-pulse-muted-foreground: #545c6c;
|
|
|
|
/* neutral borders */
|
|
--fc-pulse-border: #e5e7eb;
|
|
--fc-pulse-strong-border: #d5d5d6;
|
|
}
|
|
|
|
@media not print {
|
|
[data-color-scheme=dark] {
|
|
/* secondary */
|
|
--fc-pulse-secondary: var(--fc-pulse-muted);
|
|
--fc-pulse-secondary-over: var(--fc-pulse-strong);
|
|
--fc-pulse-secondary-down: var(--fc-pulse-stronger);
|
|
--fc-pulse-secondary-foreground: var(--fc-pulse-foreground);
|
|
--fc-pulse-secondary-icon: var(--fc-pulse-muted-foreground);
|
|
--fc-pulse-secondary-icon-over: var(--fc-pulse-foreground);
|
|
|
|
/* tertiary */
|
|
--fc-pulse-tertiary: #fd4539;
|
|
--fc-pulse-tertiary-over: #dc3b30;
|
|
--fc-pulse-tertiary-down: #bc3128;
|
|
|
|
/* calendar content */
|
|
--fc-pulse-background-event: #fed7aa;
|
|
|
|
/* controls */
|
|
--fc-pulse-unselected: var(--fc-pulse-muted);
|
|
--fc-pulse-unselected-foreground: var(--fc-pulse-foreground);
|
|
--fc-pulse-selected: var(--fc-pulse-strong);
|
|
--fc-pulse-selected-foreground: var(--fc-pulse-foreground);
|
|
|
|
/* neutral backgrounds */
|
|
--fc-pulse-background: #030712;
|
|
--fc-pulse-faint: #ffffff08;
|
|
--fc-pulse-muted: #ffffff12;
|
|
--fc-pulse-strong: #ffffff1F;
|
|
--fc-pulse-stronger: #ffffff29;
|
|
--fc-pulse-strongest: #ffffff33;
|
|
|
|
/* neutral foregrounds */
|
|
--fc-pulse-foreground: #d6dee8;
|
|
--fc-pulse-faint-foreground: #8897ab;
|
|
--fc-pulse-muted-foreground: #b5c1d0;
|
|
|
|
/* neutral borders */
|
|
--fc-pulse-border: #1a202c;
|
|
--fc-pulse-strong-border: #374257;
|
|
}
|
|
}
|
|
|