123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- /* eslint-disable */
- const colors = require('tailwindcss/colors');
- module.exports = {
- important: true,
- content: ['./src/**/*.{vue,ts}'],
- theme: {
- backgroundColor: (theme) => ({
- ...theme('colors'),
- themeC: '#A31B50',
- }),
- inset: {
- '0': 0,
- '1/6': '18%',
- '1/5': '22%',
- // ws: '351px',
- 'xs': '33px',
- },
- fontSize: {
- 'xs': '.75rem',
- 'sm': '.875rem',
- 'base': '1rem',
- 'lg': '1.125rem',
- 'xl': '1.25rem',
- '2xl': '1.5rem',
- '3xl': '1.875rem',
- '4xl': '2.25rem',
- '5xl': '3rem',
- '6xl': '4rem',
- '7xl': '5rem',
- },
- screens: {
- // sm: '768px',
- md: '992px',
- // lg: '1200px',
- xl: '1536px',
- },
- colors: {
- transparent: 'transparent',
- current: 'currentColor',
- black: colors.black,
- white: colors.white,
- blue: colors.blue,
- gray: {
- ...colors.gray,
- primary: '#303133',
- regular: '#606266',
- secondary: '#909399',
- placeholder: '#C0C4CC',
- },
- primary: {
- DEFAULT: '#409eff',
- light: '#a0cfff',
- lighter: '#ecf5ff',
- },
- success: {
- DEFAULT: '#67c23a',
- light: '#b3e19d',
- lighter: '#f0f9eb',
- },
- warning: {
- DEFAULT: '#e6a23c',
- light: '#f3d19e',
- lighter: '#fdf6ec',
- },
- danger: {
- DEFAULT: '#f56c6c',
- light: '#fab6b6',
- lighter: '#fef0f0',
- },
- secondary: {
- DEFAULT: '#909399',
- light: '#c8c9cc',
- lighter: '#f4f4f5',
- },
- theme: '#A31B50',
- grayscale: '#DADADB',
- },
- extend: {
- transitionDuration: {
- // vue 文档中提到,过度效果的时间一般在0.1s-0.4s之间,而0.25s会是一个比较好的值
- // https://v3.vuejs.org/guide/transitions-overview.html#timing
- 250: '250ms',
- 350: '350ms',
- },
- transitionProperty: {
- width: 'width',
- margin: 'margin',
- },
- // el-menu 展开时最小宽度是 200px
- // el-menu 折叠时宽度是 64px
- width: {
- 'sidebar': '200px',
- 'sidebar-collapse': '64px',
- },
- margin: {
- 'sidebar': '200px',
- 'sidebar-collapse': '64px',
- },
- },
- backgroundImage: {
- 'home-pattern': "url('/src/assets/images/bg.png')",
- 'layout': "url('/src/assets/images/layout_bg.png)",
- },
- backgroundSize: {
- 'auto': 'auto',
- 'cover': 'cover',
- 'contain': 'contain',
- '100%': '100% 98%',
- },
- },
- variants: {
- // extend: {
- // borderStyle: ['hover'],
- // },
- },
- plugins: [],
- // corePlugins: {
- // preflight: false,
- // },
- };
|