mirror of
https://github.com/jnsahaj/tweakcn.git
synced 2026-08-29 07:14:31 +08:00
117 lines
3.4 KiB
CSS
117 lines
3.4 KiB
CSS
@import "tailwindcss";
|
|
@import "tw-animate-css";
|
|
|
|
@theme inline {
|
|
--color-background: var(--background);
|
|
--color-foreground: var(--foreground);
|
|
--color-card: var(--card);
|
|
--color-card-foreground: var(--card-foreground);
|
|
--color-popover: var(--popover);
|
|
--color-popover-foreground: var(--popover-foreground);
|
|
--color-primary: var(--primary);
|
|
--color-primary-foreground: var(--primary-foreground);
|
|
--color-secondary: var(--secondary);
|
|
--color-secondary-foreground: var(--secondary-foreground);
|
|
--color-muted: var(--muted);
|
|
--color-muted-foreground: var(--muted-foreground);
|
|
--color-accent: var(--accent);
|
|
--color-accent-foreground: var(--accent-foreground);
|
|
--color-destructive: var(--destructive);
|
|
--color-destructive-foreground: var(--destructive-foreground);
|
|
--color-border: var(--border);
|
|
--color-input: var(--input);
|
|
--color-ring: var(--ring);
|
|
--color-chart-1: var(--chart-1);
|
|
--color-chart-2: var(--chart-2);
|
|
--color-chart-3: var(--chart-3);
|
|
--color-chart-4: var(--chart-4);
|
|
--color-chart-5: var(--chart-5);
|
|
--color-sidebar: var(--sidebar);
|
|
--color-sidebar-foreground: var(--sidebar-foreground);
|
|
--color-sidebar-primary: var(--sidebar-primary);
|
|
--color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
|
|
--color-sidebar-accent: var(--sidebar-accent);
|
|
--color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
|
|
--color-sidebar-border: var(--sidebar-border);
|
|
--color-sidebar-ring: var(--sidebar-ring);
|
|
|
|
--font-sans: var(--font-sans);
|
|
--font-mono: var(--font-mono);
|
|
--font-serif: var(--font-serif);
|
|
|
|
--radius-sm: calc(var(--radius) - 4px);
|
|
--radius-md: calc(var(--radius) - 2px);
|
|
--radius-lg: var(--radius);
|
|
--radius-xl: calc(var(--radius) + 4px);
|
|
|
|
/* Computed Shadow Variants */
|
|
--shadow-2xs: var(--shadow-2xs);
|
|
--shadow-xs: var(--shadow-xs);
|
|
--shadow-sm: var(--shadow-sm);
|
|
--shadow: var(--shadow);
|
|
--shadow-md: var(--shadow-md);
|
|
--shadow-lg: var(--shadow-lg);
|
|
--shadow-xl: var(--shadow-xl);
|
|
--shadow-2xl: var(--shadow-2xl);
|
|
|
|
--tracking-tighter: calc(var(--letter-spacing) - 0.05em);
|
|
--tracking-tight: calc(var(--letter-spacing) - 0.025em);
|
|
--tracking-normal: var(--letter-spacing);
|
|
--tracking-wide: calc(var(--letter-spacing) + 0.025em);
|
|
--tracking-wider: calc(var(--letter-spacing) + 0.05em);
|
|
--tracking-widest: calc(var(--letter-spacing) + 0.1em);
|
|
}
|
|
|
|
* {
|
|
border-color: var(--color-border);
|
|
}
|
|
|
|
body {
|
|
background-color: var(--color-background);
|
|
color: var(--color-foreground);
|
|
-webkit-font-smoothing: antialiased;
|
|
letter-spacing: var(--letter-spacing);
|
|
}
|
|
|
|
@layer base {
|
|
button:not(:disabled),
|
|
[role="button"]:not(:disabled) {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
/* View Transition Wave Effect */
|
|
::view-transition-old(root),
|
|
::view-transition-new(root) {
|
|
animation: none;
|
|
mix-blend-mode: normal;
|
|
}
|
|
|
|
::view-transition-old(root) {
|
|
/* Ensure the outgoing view (old theme) is beneath */
|
|
z-index: 0;
|
|
}
|
|
|
|
::view-transition-new(root) {
|
|
/* Ensure the incoming view (new theme) is always on top */
|
|
z-index: 1;
|
|
}
|
|
|
|
@keyframes reveal {
|
|
from {
|
|
/* Use CSS variables for the origin, defaulting to center if not set */
|
|
clip-path: circle(0% at var(--x, 50%) var(--y, 50%));
|
|
opacity: 0.7;
|
|
}
|
|
to {
|
|
/* Use CSS variables for the origin, defaulting to center if not set */
|
|
clip-path: circle(150% at var(--x, 50%) var(--y, 50%));
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
::view-transition-new(root) {
|
|
/* Apply the reveal animation */
|
|
animation: reveal 0.4s ease-in-out forwards;
|
|
}
|