mirror of
https://github.com/eliasstepanik/strudel.git
synced 2026-01-11 13:48:40 +00:00
44 lines
1.0 KiB
JavaScript
44 lines
1.0 KiB
JavaScript
/** @type {import('tailwindcss').Config} */
|
||
|
||
const defaultTheme = require('tailwindcss/defaultTheme');
|
||
|
||
module.exports = {
|
||
content: [
|
||
'./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}',
|
||
'../packages/react/src/**/*.{html,js,jsx,md,mdx,ts,tsx}',
|
||
],
|
||
theme: {
|
||
extend: {
|
||
colors: {
|
||
primary: '#c792ea',
|
||
secondary: '#c3e88d',
|
||
tertiary: '#82aaff',
|
||
highlight: '#ffcc00',
|
||
linegray: '#8a91991a',
|
||
lineblack: '#00000095',
|
||
bg: '#222222',
|
||
// header: '#8a91991a',
|
||
// footer: '#8a91991a',
|
||
header: '#00000050',
|
||
// header: 'transparent',
|
||
footer: '#00000050',
|
||
},
|
||
typography(theme) {
|
||
return {
|
||
DEFAULT: {
|
||
css: {
|
||
'code::before': {
|
||
content: 'none', // don’t wrap code in backticks
|
||
},
|
||
'code::after': {
|
||
content: 'none',
|
||
},
|
||
},
|
||
},
|
||
};
|
||
},
|
||
},
|
||
},
|
||
plugins: [require('@tailwindcss/typography')],
|
||
};
|