[READ-ONLY] Mirror of https://github.com/flo-bit/flo-bit.github.io. my personal website, w/ astro, svelte, tailwind, typescript, threlte flo-bit.dev/
portfolio portfolio-website svelte sveltekit tailwind threejs threlte typescript
0

Configure Feed

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

flo-bit.github.io / tailwind.config.js
397 B 18 lines
1import colors from 'tailwindcss/colors'; 2 3/** @type {import('tailwindcss').Config} */ 4export default { 5 content: ['./src/**/*.{html,js,svelte,ts}'], 6 theme: { 7 extend: { 8 colors: { 9 accent: colors.cyan 10 }, 11 gridTemplateRows: { 12 '[auto,auto,1fr]': 'auto auto 1fr' 13 } 14 } 15 }, 16 plugins: [require('@tailwindcss/aspect-ratio'), require('@tailwindcss/typography')], 17 darkMode: 'class' 18};