repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 | import type { Config } from "tailwindcss" |
| #2 | |
| #3 | const config = { |
| #4 | darkMode: ["class"], |
| #5 | content: [ |
| #6 | "./pages/**/*.{ts,tsx}", |
| #7 | "./components/**/*.{ts,tsx}", |
| #8 | "./app/**/*.{ts,tsx}", |
| #9 | "./src/**/*.{ts,tsx}", |
| #10 | "*.{js,ts,jsx,tsx,mdx}", |
| #11 | ], |
| #12 | prefix: "", |
| #13 | theme: { |
| #14 | container: { |
| #15 | center: true, |
| #16 | padding: "2rem", |
| #17 | screens: { |
| #18 | "2xl": "1400px", |
| #19 | }, |
| #20 | }, |
| #21 | extend: { |
| #22 | colors: { |
| #23 | border: "hsl(var(--border))", |
| #24 | input: "hsl(var(--input))", |
| #25 | ring: "hsl(var(--ring))", |
| #26 | background: "hsl(var(--background))", |
| #27 | foreground: "hsl(var(--foreground))", |
| #28 | primary: { |
| #29 | DEFAULT: "hsl(var(--primary))", |
| #30 | foreground: "hsl(var(--primary-foreground))", |
| #31 | }, |
| #32 | secondary: { |
| #33 | DEFAULT: "hsl(var(--secondary))", |
| #34 | foreground: "hsl(var(--secondary-foreground))", |
| #35 | }, |
| #36 | destructive: { |
| #37 | DEFAULT: "hsl(var(--destructive))", |
| #38 | foreground: "hsl(var(--destructive-foreground))", |
| #39 | }, |
| #40 | muted: { |
| #41 | DEFAULT: "hsl(var(--muted))", |
| #42 | foreground: "hsl(var(--muted-foreground))", |
| #43 | }, |
| #44 | accent: { |
| #45 | DEFAULT: "hsl(var(--accent))", |
| #46 | foreground: "hsl(var(--accent-foreground))", |
| #47 | }, |
| #48 | popover: { |
| #49 | DEFAULT: "hsl(var(--popover))", |
| #50 | foreground: "hsl(var(--popover-foreground))", |
| #51 | }, |
| #52 | card: { |
| #53 | DEFAULT: "hsl(var(--card))", |
| #54 | foreground: "hsl(var(--card-foreground))", |
| #55 | }, |
| #56 | }, |
| #57 | borderRadius: { |
| #58 | lg: "var(--radius)", |
| #59 | md: "calc(var(--radius) - 2px)", |
| #60 | sm: "calc(var(--radius) - 4px)", |
| #61 | }, |
| #62 | keyframes: { |
| #63 | "accordion-down": { |
| #64 | from: { height: "0" }, |
| #65 | to: { height: "var(--radix-accordion-content-height)" }, |
| #66 | }, |
| #67 | "accordion-up": { |
| #68 | from: { height: "var(--radix-accordion-content-height)" }, |
| #69 | to: { height: "0" }, |
| #70 | }, |
| #71 | }, |
| #72 | animation: { |
| #73 | "accordion-down": "accordion-down 0.2s ease-out", |
| #74 | "accordion-up": "accordion-up 0.2s ease-out", |
| #75 | }, |
| #76 | }, |
| #77 | }, |
| #78 | plugins: [require("tailwindcss-animate")], |
| #79 | } satisfies Config |
| #80 | |
| #81 | export default config |
| #82 |