Skyvern/skyvern-frontend/tailwind.config.js
Celal Zamanoğlu 662ae1ff95
feat: outline browser pane during block runs (#SKY-7679) (#5055)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-12 00:42:25 +03:00

99 lines
3 KiB
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: ["class"],
content: [
"./pages/**/*.{ts,tsx}",
"./components/**/*.{ts,tsx}",
"./app/**/*.{ts,tsx}",
"./src/**/*.{ts,tsx}",
],
prefix: "",
theme: {
container: {
center: true,
padding: "2rem",
},
extend: {
colors: {
slate: {
elevation1: "hsl(var(--slate-elevation-1))",
elevation2: "hsl(var(--slate-elevation-2))",
elevation3: "hsl(var(--slate-elevation-3))",
elevation4: "hsl(var(--slate-elevation-4))",
elevation5: "hsl(var(--slate-elevation-5))",
},
border: "hsl(var(--border))",
input: "hsl(var(--input))",
ring: "hsl(var(--ring))",
background: "hsl(var(--background))",
foreground: "hsl(var(--foreground))",
primary: {
DEFAULT: "hsl(var(--primary))",
foreground: "hsl(var(--primary-foreground))",
},
secondary: {
DEFAULT: "hsl(var(--secondary))",
foreground: "hsl(var(--secondary-foreground))",
},
tertiary: {
DEFAULT: "hsl(var(--tertiary))",
foreground: "hsl(var(--tertiary-foreground))",
},
destructive: {
DEFAULT: "hsl(var(--destructive))",
foreground: "hsl(var(--destructive-foreground))",
},
"error-light": "var(--error-bg-light)",
warning: {
DEFAULT: "hsl(var(--warning))",
foreground: "hsl(var(--warning-foreground))",
},
success: {
DEFAULT: "hsl(var(--success))",
foreground: "hsl(var(--success-foreground))",
},
muted: {
DEFAULT: "hsl(var(--muted))",
foreground: "hsl(var(--muted-foreground))",
},
accent: {
DEFAULT: "hsl(var(--accent))",
foreground: "hsl(var(--accent-foreground))",
},
popover: {
DEFAULT: "hsl(var(--popover))",
foreground: "hsl(var(--popover-foreground))",
},
card: {
DEFAULT: "hsl(var(--card))",
foreground: "hsl(var(--card-foreground))",
},
},
borderRadius: {
lg: "var(--radius)",
md: "calc(var(--radius) - 2px)",
sm: "calc(var(--radius) - 4px)",
},
keyframes: {
"accordion-down": {
from: { height: "0" },
to: { height: "var(--radix-accordion-content-height)" },
},
"accordion-up": {
from: { height: "var(--radix-accordion-content-height)" },
to: { height: "0" },
},
glow: {
"0%, 100%": { boxShadow: "0 0 8px 2px rgba(234, 179, 8, 0.3)" },
"50%": { boxShadow: "0 0 24px 8px rgba(234, 179, 8, 0.6)" },
},
},
animation: {
"accordion-down": "accordion-down 0.2s ease-out",
"accordion-up": "accordion-up 0.2s ease-out",
glow: "glow 2.5s ease-in-out infinite",
},
},
},
plugins: [require("tailwindcss-animate")],
};