You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import typography from '@tailwindcss/typography';
|
|
|
|
import containerQuries from '@tailwindcss/container-queries';
|
|
|
|
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
export default {
|
|
|
|
darkMode: '',
|
|
|
|
content: ['./src/**/*.{html,js,svelte,ts}'],
|
|
|
|
theme: {
|
|
|
|
extend: {
|
|
|
|
colors: {
|
|
|
|
blue: {
|
|
|
|
50: 'var(--color-blue-50, #2a75f0)',
|
|
|
|
}
|
|
|
|
},
|
|
|
|
typography: {
|
|
|
|
DEFAULT: {
|
|
|
|
css: {
|
|
|
|
pre: false,
|
|
|
|
code: false,
|
|
|
|
'pre code': false,
|
|
|
|
'code::before': false,
|
|
|
|
'code::after': false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
padding: {
|
|
|
|
'safe-bottom': 'env(safe-area-inset-bottom)'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
plugins: [typography, containerQuries]
|
|
|
|
};
|