tailwind.config.js 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /**
  2. * Copyright [2022] [https://www.xiaonuo.vip]
  3. * Snowy采用APACHE LICENSE 2.0开源协议,您在使用过程中,需要注意以下几点:
  4. * 1.请不要删除和修改根目录下的LICENSE文件。
  5. * 2.请不要删除和修改Snowy源码头部的版权声明。
  6. * 3.本项目代码可免费商业使用,商业使用请保留源码和相关描述文件的项目出处,作者声明等。
  7. * 4.分发源码时候,请注明软件出处 https://www.xiaonuo.vip
  8. * 5.不可二次分发开源参与同类竞品,如有想法可联系团队xiaonuobase@qq.com商议合作。
  9. * 6.若您的项目无法满足以上几点,需要更多功能代码,获取Snowy商业授权许可,请在官网购买授权,地址为 https://www.xiaonuo.vip
  10. */
  11. const generatePrimaryColors = () => {
  12. const result = {
  13. primary: `var(--primary-color)`
  14. }
  15. for (let i = 0; i < 10; i++) {
  16. result[`primary-${i}`] = `var(--primary-${i})`
  17. }
  18. return result
  19. }
  20. const generateFontSize = () => {
  21. const result = {}
  22. for (let i = 10; i < 32; i++) {
  23. result[i] = `${i}px`
  24. }
  25. return result
  26. }
  27. const colors = require('tailwindcss/colors')
  28. const filterWarnColors = (colors) => {
  29. const result = {}
  30. for (const key in colors) {
  31. if (['lightBlue', 'warmGray', 'trueGray', 'coolGray', 'blueGray'].indexOf(key) === -1) {
  32. result[key] = colors[key]
  33. }
  34. }
  35. return result
  36. }
  37. module.exports = {
  38. content: ['./src/**/*.vue', './src/**/*.js'],
  39. darkMode: 'class', // or 'media' or 'class'
  40. corePlugins: {
  41. preflight: false
  42. },
  43. theme: {
  44. extend: {},
  45. colors: {
  46. transparent: 'transparent',
  47. current: 'currentColor',
  48. ...filterWarnColors(colors),
  49. ...generatePrimaryColors()
  50. },
  51. fontWeight: {
  52. 1: 100,
  53. 2: 200,
  54. 3: 300,
  55. 4: 400,
  56. 5: 500,
  57. 6: 600,
  58. 7: 700,
  59. 8: 800,
  60. 9: 900
  61. },
  62. fontSize: {
  63. ...generateFontSize()
  64. }
  65. },
  66. variants: {},
  67. plugins: []
  68. }