93 lines
3.6 KiB
CSS
93 lines
3.6 KiB
CSS
/* Colors */
|
|
/* Reds */
|
|
/* Yellows */
|
|
/* Blues */
|
|
/* Greens */
|
|
@keyframes pulsingBackground {
|
|
0% {
|
|
background-color: rgb(218, 212, 187);
|
|
}
|
|
20% {
|
|
background-color: rgb(218, 212, 187);
|
|
opacity: 1;
|
|
}
|
|
50% {
|
|
background-color: rgb(218, 212, 187);
|
|
opacity: 0.65;
|
|
}
|
|
80% {
|
|
background-color: rgb(218, 212, 187);
|
|
opacity: 1;
|
|
}
|
|
100% {
|
|
background-color: rgb(218, 212, 187);
|
|
}
|
|
}
|
|
/* Colors */
|
|
body {
|
|
--background-primary: $low;
|
|
--background-primary-alt: $high;
|
|
/* --background-secondary: ; // Secondary background */
|
|
/* --background-secondary-alt: ; // Background for surfaces on top of secondary background */
|
|
/* --background-modifier-hover: ; // Hovered elements */
|
|
/* --background-modifier-active-hover: ; // Active hovered elements */
|
|
/* --background-modifier-border: ; // Border color */
|
|
/* --background-modifier-border-hover: ; // Border color (hover) */
|
|
/* --background-modifier-border-focus: ; // Border color (focus) */
|
|
/* --background-modifier-error-rgb: ; // Error background, RGB value */
|
|
/* --background-modifier-error: ; // Error background */
|
|
/* --background-modifier-error-hover: ; // Error background (hover) */
|
|
/* --background-modifier-success-rgb: ; // Success background, RGB value */
|
|
/* --background-modifier-success: ; // Success background */
|
|
/* --background-modifier-message: ; // Messages background */
|
|
/* --background-modifier-form-field: ; // Form field background */
|
|
}
|
|
|
|
/* Window */
|
|
body {
|
|
/* Divider */
|
|
/* --divider-color: #FFF; // Divider border color */
|
|
--divider-color-hover: #FFF;
|
|
/* --divider-width: 1px; // Divider border width */
|
|
/* --divider-width-hover: 1px; // Divider border width (hover) */
|
|
/* --divider-vertical-height: 1px; // Divider vertical height */
|
|
/* Ribbon */
|
|
--ribbon-background: transparent;
|
|
--ribbon-background-collapsed: transparent;
|
|
/* --ribbon-width: 30px; // Ribbon width */
|
|
/* --ribbon-padding: 5px; // Ribbon padding */
|
|
/* Scrollbar */
|
|
/* --scrollbar-bg: ; // Scrollbar background color */
|
|
/* --scrollbar-thumb-bg: ; // Scrollbar thumb background color */
|
|
/* --scrollbar-active-thumb-bg: ; // Scrollbar thumb background color (active) */
|
|
/* Status bar */
|
|
--status-bar-background: transparent;
|
|
/* --status-bar-border-color: ; // Status bar border color */
|
|
/* --status-bar-border-width: ; // Status bar border width */
|
|
/* --status-bar-font-size: ; // Status bar font size */
|
|
/* --status-bar-text-color: ; // Status bar text color */
|
|
/* --status-bar-position: ; // Status bar position property */
|
|
/* --status-bar-radius: ; // Status bar radius */
|
|
/* --status-bar-scroll-padding: ; // Status bar scroll padding */
|
|
/* Vault Profile */
|
|
/* --vault-profile-display: ; // display property for the vault profile */
|
|
/* --vault-profile-actions-display: ; // display property for the action buttons in the vault profile */
|
|
/* --vault-profile-font-size: ; // Font size */
|
|
/* --vault-profile-font-weight: ; // Font weight */
|
|
/* --vault-profile-color: ; // Text color */
|
|
/* --vault-profile-color-hover: ; // Text color (hover) */
|
|
/* Window Frame */
|
|
--titlebar-background: transparent;
|
|
--titlebar-background-focused: transparent;
|
|
/* --titlebar-border-width: ; // Titlebar border width */
|
|
/* --titlebar-border-color: ; // Titlebar border color */
|
|
/* --titlebar-text-color: ; // Titlebar text color */
|
|
/* --titlebar-text-color-focused: ; // Titlebar text color (focused window) */
|
|
/* --titlebar-text-weight: ; // Titlebar font weight */
|
|
/* --header-height: ; // Default height for frame elements */
|
|
/* Workspace */
|
|
/* --workspace-background-translucent: ; // Background for translucent windows */
|
|
}
|
|
|
|
/*# sourceMappingURL=theme.css.map */
|