snowy/snowy-admin-web/tailwind.config.js

68 lines
1.7 KiB
JavaScript
Raw Normal View History

2022-09-29 15:49:25 +00:00
/**
* Copyright [2022] [https://www.xiaonuo.vip]
* Snowy采用APACHE LICENSE 2.0开源协议您在使用过程中需要注意以下几点
* 1.请不要删除和修改根目录下的LICENSE文件
* 2.请不要删除和修改Snowy源码头部的版权声明
* 3.本项目代码可免费商业使用商业使用请保留源码和相关描述文件的项目出处作者声明等
* 4.分发源码时候请注明软件出处 https://www.xiaonuo.vip
* 5.不可二次分发开源参与同类竞品如有想法可联系团队xiaonuobase@qq.com商议合作
* 6.若您的项目无法满足以上几点需要更多功能代码获取Snowy商业授权许可请在官网购买授权地址为 https://www.xiaonuo.vip
*/
const generatePrimaryColors = () => {
const result = {
primary: `var(--primary-color)`
}
for (let i = 0; i < 10; i++) {
result[`primary-${i}`] = `var(--primary-${i})`
}
return result
}
const generateFontSize = () => {
const result = {}
for (let i = 10; i < 32; i++) {
result[i] = `${i}px`
}
return result
}
const colors = require('tailwindcss/colors')
module.exports = {
content: ['./src/**/*.vue', './src/**/*.js'],
darkMode: 'class', // or 'media' or 'class'
corePlugins: {
preflight: false
},
theme: {
extend: {},
colors: {
transparent: 'transparent',
current: 'currentColor',
black: colors.black,
white: colors.white,
gray: colors.neutral,
indigo: colors.indigo,
red: colors.rose,
yellow: colors.amber,
...generatePrimaryColors()
},
fontWeight: {
1: 100,
2: 200,
3: 300,
4: 400,
5: 500,
6: 600,
7: 700,
8: 800,
9: 900
},
fontSize: {
...generateFontSize()
}
},
variants: {},
plugins: []
}