加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
tailwind.config.js 975 Bytes
一键复制 编辑 原始数据 按行查看 历史
xtt 提交于 2021-07-27 11:02 . h5装修模块渲染
const colors = require('tailwindcss/colors')
module.exports = {
purge: {
content: [
'./resources/views/frontend/**/*.blade.php',
'./resources/views/frontend/**/*.tpl',
'./resources/assets/frontend/**/*.js',
]
},
darkMode: 'media', // or 'media' or 'class'
theme: {
container: {
center: true,
},
extend: {
colors: {
blue: {
50: '#E2F2FF',
100: '#d8eefe',
200: '#C5E5FE',
300: '#A8D8FD',
400: '#8ACBFC',
500: '#63B9FB',
600: '#3CA7FA',
700: '#1692F3',
800: '#0B7BD6',
900: '#0A68B2',
}
},
},
},
variants: {
extend: {},
},
plugins: [
// require('@tailwindcss/forms'),
],
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化