[READ-ONLY] Mirror of https://github.com/flo-bit/skywatched. review movies and tv shows, based on at proto skywatched.app
0

Configure Feed

Select the types of activity you want to include in your feed.

skywatched / tailwind.config.ts
542 B 25 lines
1import aspectRatio from '@tailwindcss/aspect-ratio'; 2import forms from '@tailwindcss/forms'; 3import typography from '@tailwindcss/typography'; 4import type { Config } from 'tailwindcss'; 5 6import colors from 'tailwindcss/colors'; 7 8export default { 9 content: ['./src/**/*.{html,js,svelte,ts}'], 10 11 theme: { 12 extend: { 13 colors: { 14 base: colors.zinc, 15 accent: colors.sky, 16 17 tmdb_primary: '#0d253f', 18 tmdb_secondary: '#01b4e4', 19 tmdb_tertiary: '#90cea1' 20 } 21 } 22 }, 23 24 plugins: [typography, forms, aspectRatio] 25} satisfies Config;