OmniHelper / index.css
hotboxxgenn's picture
Upload 3 files (#7)
a5c8379 verified
@tailwind base;
@tailwind components;
@tailwind utilities;
/* LIGHT MODE */
:root {
--button-outline: rgba(0,0,0, .10);
--badge-outline: rgba(0,0,0, .05);
/* Automatic computation of border around primary / danger buttons */
--opaque-button-border-intensity: -8; /* In terms of percentages */
/* Backgrounds applied on top of other backgrounds when hovered/active */
--elevate-1: rgba(0,0,0, .03);
--elevate-2: rgba(0,0,0, .08);
--background: 270 30% 98%;
--foreground: 280 15% 25%;
--border: 270 20% 90%;
--card: 0 0% 100%;
--card-foreground: 280 15% 25%;
--card-border: 270 15% 93%;
--sidebar: 270 25% 96%;
--sidebar-foreground: 280 15% 25%;
--sidebar-border: 270 20% 88%;
--sidebar-primary: 280 65% 70%;
--sidebar-primary-foreground: 0 0% 100%;
--sidebar-accent: 270 30% 94%;
--sidebar-accent-foreground: 280 65% 65%;
--sidebar-ring: 280 65% 70%;
--popover: 0 0% 100%;
--popover-foreground: 280 15% 25%;
--popover-border: 270 20% 88%;
--primary: 280 65% 70%;
--primary-foreground: 0 0% 100%;
--secondary: 310 35% 88%;
--secondary-foreground: 280 15% 25%;
--muted: 270 25% 95%;
--muted-foreground: 280 10% 50%;
--accent: 310 40% 92%;
--accent-foreground: 280 15% 25%;
--destructive: 340 70% 75%;
--destructive-foreground: 0 0% 100%;
--input: 270 20% 85%;
--ring: 280 65% 70%;
--chart-1: 220 60% 75%;
--chart-2: 280 55% 75%;
--chart-3: 310 50% 80%;
--chart-4: 200 45% 80%;
--chart-5: 330 50% 85%;
--font-sans: 'Inter', sans-serif;
--font-serif: 'Inter', sans-serif;
--font-mono: 'JetBrains Mono', monospace;
--radius: .875rem;
--shadow-2xs: 0px 1px 2px 0px hsl(220 15% 10% / 0.05);
--shadow-xs: 0px 1px 2px 0px hsl(220 15% 10% / 0.06), 0px 1px 3px 0px hsl(220 15% 10% / 0.10);
--shadow-sm: 0px 2px 4px -1px hsl(220 15% 10% / 0.06), 0px 2px 4px -1px hsl(220 15% 10% / 0.10);
--shadow: 0px 4px 8px -2px hsl(220 15% 10% / 0.10), 0px 2px 4px -2px hsl(220 15% 10% / 0.06);
--shadow-md: 0px 8px 16px -4px hsl(220 15% 10% / 0.08), 0px 4px 8px -4px hsl(220 15% 10% / 0.03);
--shadow-lg: 0px 16px 24px -8px hsl(220 15% 10% / 0.08), 0px 8px 16px -8px hsl(220 15% 10% / 0.03);
--shadow-xl: 0px 24px 48px -12px hsl(220 15% 10% / 0.18);
--shadow-2xl: 0px 32px 64px -12px hsl(220 15% 10% / 0.14);
--tracking-normal: 0em;
--spacing: 0.25rem;
/* Automatically computed borders - intensity can be controlled by the user by the --opaque-button-border-intensity setting */
/* Fallback for older browsers */
--sidebar-primary-border: hsl(var(--sidebar-primary));
--sidebar-primary-border: hsl(from hsl(var(--sidebar-primary)) h s calc(l + var(--opaque-button-border-intensity)) / alpha);
/* Fallback for older browsers */
--sidebar-accent-border: hsl(var(--sidebar-accent));
--sidebar-accent-border: hsl(from hsl(var(--sidebar-accent)) h s calc(l + var(--opaque-button-border-intensity)) / alpha);
/* Fallback for older browsers */
--primary-border: hsl(var(--primary));
--primary-border: hsl(from hsl(var(--primary)) h s calc(l + var(--opaque-button-border-intensity)) / alpha);
/* Fallback for older browsers */
--secondary-border: hsl(var(--secondary));
--secondary-border: hsl(from hsl(var(--secondary)) h s calc(l + var(--opaque-button-border-intensity)) / alpha);
/* Fallback for older browsers */
--muted-border: hsl(var(--muted));
--muted-border: hsl(from hsl(var(--muted)) h s calc(l + var(--opaque-button-border-intensity)) / alpha);
/* Fallback for older browsers */
--accent-border: hsl(var(--accent));
--accent-border: hsl(from hsl(var(--accent)) h s calc(l + var(--opaque-button-border-intensity)) / alpha);
/* Fallback for older browsers */
--destructive-border: hsl(var(--destructive));
--destructive-border: hsl(from hsl(var(--destructive)) h s calc(l + var(--opaque-button-border-intensity)) / alpha);
}
.dark {
--button-outline: rgba(255,255,255, .10);
--badge-outline: rgba(255,255,255, .05);
--opaque-button-border-intensity: 9; /* In terms of percentages */
/* Backgrounds applied on top of other backgrounds when hovered/active */
--elevate-1: rgba(255,255,255, .04);
--elevate-2: rgba(255,255,255, .09);
--background: 260 35% 15%;
--foreground: 270 20% 90%;
--border: 270 25% 25%;
--card: 265 30% 18%;
--card-foreground: 270 20% 90%;
--card-border: 270 25% 22%;
--sidebar: 265 30% 16%;
--sidebar-foreground: 270 20% 90%;
--sidebar-border: 270 25% 23%;
--sidebar-primary: 280 60% 75%;
--sidebar-primary-foreground: 260 35% 15%;
--sidebar-accent: 270 30% 22%;
--sidebar-accent-foreground: 280 60% 75%;
--sidebar-ring: 280 60% 75%;
--popover: 265 30% 18%;
--popover-foreground: 270 20% 90%;
--popover-border: 270 25% 25%;
--primary: 280 60% 75%;
--primary-foreground: 260 35% 15%;
--secondary: 310 30% 30%;
--secondary-foreground: 270 20% 90%;
--muted: 270 25% 20%;
--muted-foreground: 270 15% 65%;
--accent: 310 35% 25%;
--accent-foreground: 270 20% 90%;
--destructive: 340 60% 70%;
--destructive-foreground: 0 0% 100%;
--input: 270 25% 30%;
--ring: 280 60% 75%;
--chart-1: 220 50% 70%;
--chart-2: 280 50% 75%;
--chart-3: 310 45% 75%;
--chart-4: 200 40% 75%;
--chart-5: 330 45% 80%;
--shadow-2xs: 0px 1px 2px 0px hsl(220 15% 0% / 0.30);
--shadow-xs: 0px 1px 2px 0px hsl(220 15% 0% / 0.36), 0px 1px 3px 0px hsl(220 15% 0% / 0.48);
--shadow-sm: 0px 2px 4px -1px hsl(220 15% 0% / 0.36), 0px 2px 4px -1px hsl(220 15% 0% / 0.48);
--shadow: 0px 4px 8px -2px hsl(220 15% 0% / 0.48), 0px 2px 4px -2px hsl(220 15% 0% / 0.36);
--shadow-md: 0px 8px 16px -4px hsl(220 15% 0% / 0.40), 0px 4px 8px -4px hsl(220 15% 0% / 0.24);
--shadow-lg: 0px 16px 24px -8px hsl(220 15% 0% / 0.40), 0px 8px 16px -8px hsl(220 15% 0% / 0.24);
--shadow-xl: 0px 24px 48px -12px hsl(220 15% 0% / 0.56);
--shadow-2xl: 0px 32px 64px -12px hsl(220 15% 0% / 0.48);
/* Fallback for older browsers */
--sidebar-primary-border: hsl(var(--sidebar-primary));
--sidebar-primary-border: hsl(from hsl(var(--sidebar-primary)) h s calc(l + var(--opaque-button-border-intensity)) / alpha);
/* Fallback for older browsers */
--sidebar-accent-border: hsl(var(--sidebar-accent));
--sidebar-accent-border: hsl(from hsl(var(--sidebar-accent)) h s calc(l + var(--opaque-button-border-intensity)) / alpha);
/* Fallback for older browsers */
--primary-border: hsl(var(--primary));
--primary-border: hsl(from hsl(var(--primary)) h s calc(l + var(--opaque-button-border-intensity)) / alpha);
/* Fallback for older browsers */
--secondary-border: hsl(var(--secondary));
--secondary-border: hsl(from hsl(var(--secondary)) h s calc(l + var(--opaque-button-border-intensity)) / alpha);
/* Fallback for older browsers */
--muted-border: hsl(var(--muted));
--muted-border: hsl(from hsl(var(--muted)) h s calc(l + var(--opaque-button-border-intensity)) / alpha);
/* Fallback for older browsers */
--accent-border: hsl(var(--accent));
--accent-border: hsl(from hsl(var(--accent)) h s calc(l + var(--opaque-button-border-intensity)) / alpha);
/* Fallback for older browsers */
--destructive-border: hsl(var(--destructive));
--destructive-border: hsl(from hsl(var(--destructive)) h s calc(l + var(--opaque-button-border-intensity)) / alpha);
}
@layer base {
* {
@apply border-border;
}
body {
@apply bg-background text-foreground font-sans antialiased;
}
}
/**
* Using the elevate system.
* Automatic contrast adjustment.
*
* <element className="hover-elevate" />
* <element className="active-elevate-2" />
*
* // Using the tailwind utility when a data attribute is "on"
* <element className="toggle-elevate data-[state=on]:toggle-elevated" />
* // Or manually controlling the toggle state
* <element className="toggle-elevate toggle-elevated" />
*
* Elevation systems have to handle many states.
* - not-hovered, vs. hovered vs. active (three mutually exclusive states)
* - toggled or not
* - focused or not (this is not handled with these utilities)
*
* Even without handling focused or not, this is six possible combinations that
* need to be distinguished from eachother visually.
*/
@layer utilities {
/* Hide ugly search cancel button in Chrome until we can style it properly */
input[type="search"]::-webkit-search-cancel-button {
@apply hidden;
}
/* Placeholder styling for contentEditable div */
[contenteditable][data-placeholder]:empty::before {
content: attr(data-placeholder);
color: hsl(var(--muted-foreground));
pointer-events: none;
}
/* .no-default-hover-elevate/no-default-active-elevate is an escape hatch so consumers of
* buttons/badges can remove the automatic brightness adjustment on interactions
* and program their own. */
.no-default-hover-elevate {}
.no-default-active-elevate {}
/**
* Toggleable backgrounds go behind the content. Hoverable/active goes on top.
* This way they can stack/compound. Both will overlap the parent's borders!
* So borders will be automatically adjusted both on toggle, and hover/active,
* and they will be compounded.
*/
.toggle-elevate::before,
.toggle-elevate-2::before {
content: "";
pointer-events: none;
position: absolute;
inset: 0px;
/*border-radius: inherit; match rounded corners */
border-radius: inherit;
z-index: -1;
/* sits behind content but above backdrop */
}
.toggle-elevate.toggle-elevated::before {
background-color: var(--elevate-2);
}
/* If there's a 1px border, adjust the inset so that it covers that parent's border */
.border.toggle-elevate::before {
inset: -1px;
}
/* Does not work on elements with overflow:hidden! */
.hover-elevate:not(.no-default-hover-elevate),
.active-elevate:not(.no-default-active-elevate),
.hover-elevate-2:not(.no-default-hover-elevate),
.active-elevate-2:not(.no-default-active-elevate) {
position: relative;
z-index: 0;
}
.hover-elevate:not(.no-default-hover-elevate)::after,
.active-elevate:not(.no-default-active-elevate)::after,
.hover-elevate-2:not(.no-default-hover-elevate)::after,
.active-elevate-2:not(.no-default-active-elevate)::after {
content: "";
pointer-events: none;
position: absolute;
inset: 0px;
/*border-radius: inherit; match rounded corners */
border-radius: inherit;
z-index: 999;
/* sits in front of content */
}
.hover-elevate:hover:not(.no-default-hover-elevate)::after,
.active-elevate:active:not(.no-default-active-elevate)::after {
background-color: var(--elevate-1);
}
.hover-elevate-2:hover:not(.no-default-hover-elevate)::after,
.active-elevate-2:active:not(.no-default-active-elevate)::after {
background-color: var(--elevate-2);
}
/* If there's a 1px border, adjust the inset so that it covers that parent's border */
.border.hover-elevate:not(.no-hover-interaction-elevate)::after,
.border.active-elevate:not(.no-active-interaction-elevate)::after,
.border.hover-elevate-2:not(.no-hover-interaction-elevate)::after,
.border.active-elevate-2:not(.no-active-interaction-elevate)::after,
.border.hover-elevate:not(.no-hover-interaction-elevate)::after {
inset: -1px;
}
}