[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
424 B
19 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 background: '#010205'
11 },
12 gridTemplateRows: {
13 '[auto,auto,1fr]': 'auto auto 1fr'
14 }
15 }
16 },
17 plugins: [require('@tailwindcss/aspect-ratio'), require('@tailwindcss/typography')],
18 darkMode: 'class'
19};