deepseek前端代码库
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.

33 lines
636 B

6 months ago
import typography from '@tailwindcss/typography';
import containerQuries from '@tailwindcss/container-queries';
/** @type {import('tailwindcss').Config} */
export default {
darkMode: '',
6 months ago
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
colors: {
blue: {
50: 'var(--color-blue-50, #2a75f0)',
6 months ago
}
},
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]
};