53 lines
1.3 KiB
JavaScript
53 lines
1.3 KiB
JavaScript
/*
|
|
* @Author: micky
|
|
* @Date: 2024-08-10 15:24:06
|
|
* @LastEditors: micky
|
|
* @LastEditTime: 2024-10-08 10:05:02
|
|
* @FilePath: \chargingpile-uniapp\tailwind.config.js
|
|
*/
|
|
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./index.html', './src/**/*.{html,js,ts,jsx,tsx,vue}'],
|
|
theme: {
|
|
colors: {
|
|
white: '#ffffff',
|
|
black: '#000000',
|
|
main: '#333333',
|
|
content: '#666666',
|
|
muted: '#999999',
|
|
light: '#e5e5e5',
|
|
primary: {
|
|
DEFAULT: '#0E66FB'
|
|
},
|
|
success: '#5ac725',
|
|
warning: '#f9ae3d',
|
|
error: '#F5222D',
|
|
info: '#909399',
|
|
page: '#f8f8f9',
|
|
blue: '#4173ff',
|
|
gray: '#EFEFEF',
|
|
gray2: '#7C7E82',
|
|
gray3: '#F8F8F8',
|
|
lightblack: '#3D3D3D',
|
|
border: '#F1F1F1',
|
|
border2: '#F3F3F3',
|
|
blue2: '#EEF6FF'
|
|
},
|
|
fontSize: {
|
|
xs: '24rpx',
|
|
sm: '26rpx',
|
|
base: '28rpx',
|
|
lg: '30rpx',
|
|
xl: '32rpx',
|
|
'2xl': '34rpx',
|
|
'3xl': '38rpx',
|
|
'4xl': '40rpx',
|
|
'5xl': '44rpx'
|
|
}
|
|
},
|
|
plugins: [],
|
|
corePlugins: {
|
|
preflight: false
|
|
}
|
|
}
|