tailwind.config.js 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /* eslint-disable */
  2. const colors = require('tailwindcss/colors');
  3. module.exports = {
  4. important: true,
  5. content: ['./src/**/*.{vue,ts}'],
  6. theme: {
  7. backgroundColor: (theme) => ({
  8. ...theme('colors'),
  9. themeC: '#A31B50',
  10. }),
  11. inset: {
  12. '0': 0,
  13. '1/6': '18%',
  14. '1/5': '22%',
  15. // ws: '351px',
  16. 'xs': '33px',
  17. },
  18. fontSize: {
  19. 'xs': '.75rem',
  20. 'sm': '.875rem',
  21. 'base': '1rem',
  22. 'lg': '1.125rem',
  23. 'xl': '1.25rem',
  24. '2xl': '1.5rem',
  25. '3xl': '1.875rem',
  26. '4xl': '2.25rem',
  27. '5xl': '3rem',
  28. '6xl': '4rem',
  29. '7xl': '5rem',
  30. },
  31. screens: {
  32. // sm: '768px',
  33. md: '992px',
  34. // lg: '1200px',
  35. xl: '1536px',
  36. },
  37. colors: {
  38. transparent: 'transparent',
  39. current: 'currentColor',
  40. black: colors.black,
  41. white: colors.white,
  42. blue: colors.blue,
  43. gray: {
  44. ...colors.gray,
  45. primary: '#303133',
  46. regular: '#606266',
  47. secondary: '#909399',
  48. placeholder: '#C0C4CC',
  49. },
  50. primary: {
  51. DEFAULT: '#409eff',
  52. light: '#a0cfff',
  53. lighter: '#ecf5ff',
  54. },
  55. success: {
  56. DEFAULT: '#67c23a',
  57. light: '#b3e19d',
  58. lighter: '#f0f9eb',
  59. },
  60. warning: {
  61. DEFAULT: '#e6a23c',
  62. light: '#f3d19e',
  63. lighter: '#fdf6ec',
  64. },
  65. danger: {
  66. DEFAULT: '#f56c6c',
  67. light: '#fab6b6',
  68. lighter: '#fef0f0',
  69. },
  70. secondary: {
  71. DEFAULT: '#909399',
  72. light: '#c8c9cc',
  73. lighter: '#f4f4f5',
  74. },
  75. theme: '#A31B50',
  76. grayscale: '#DADADB',
  77. },
  78. extend: {
  79. transitionDuration: {
  80. // vue 文档中提到,过度效果的时间一般在0.1s-0.4s之间,而0.25s会是一个比较好的值
  81. // https://v3.vuejs.org/guide/transitions-overview.html#timing
  82. 250: '250ms',
  83. 350: '350ms',
  84. },
  85. transitionProperty: {
  86. width: 'width',
  87. margin: 'margin',
  88. },
  89. // el-menu 展开时最小宽度是 200px
  90. // el-menu 折叠时宽度是 64px
  91. width: {
  92. 'sidebar': '200px',
  93. 'sidebar-collapse': '64px',
  94. },
  95. margin: {
  96. 'sidebar': '200px',
  97. 'sidebar-collapse': '64px',
  98. },
  99. },
  100. backgroundImage: {
  101. 'home-pattern': "url('/src/assets/images/bg.png')",
  102. 'layout': "url('/src/assets/images/layout_bg.png)",
  103. },
  104. backgroundSize: {
  105. 'auto': 'auto',
  106. 'cover': 'cover',
  107. 'contain': 'contain',
  108. '100%': '100% 98%',
  109. },
  110. },
  111. variants: {
  112. // extend: {
  113. // borderStyle: ['hover'],
  114. // },
  115. },
  116. plugins: [],
  117. // corePlugins: {
  118. // preflight: false,
  119. // },
  120. };