tailwind.desktop.js 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. // Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. const path = require('path')
  3. const formKitTailwind = require('@formkit/themes/tailwindcss')
  4. const unimportantTailwind = require('tailwindcss-unimportant')
  5. const zammadTailwind = require('../../../build/zammadTailwindPlugin.js')
  6. const desktopDir = path.resolve(__dirname, '..')
  7. const sharedDir = path.resolve(__dirname, '../../../shared')
  8. /** @type {import('tailwindcss').Config} */
  9. module.exports = {
  10. darkMode: ['class', '[data-theme="dark"]'],
  11. content: [
  12. `${desktopDir}/**/*.{js,jsx,ts,tsx,vue,css}`,
  13. `${sharedDir}/**/*.{js,jsx,ts,tsx,vue,css}`,
  14. ],
  15. plugins: [formKitTailwind, zammadTailwind, unimportantTailwind],
  16. theme: {
  17. colors: {
  18. alpha: {
  19. 100: '#EDF1F280',
  20. 800: '#33343880',
  21. },
  22. black: '#000000',
  23. white: '#FFFFFF',
  24. gray: {
  25. 100: '#585856',
  26. 200: '#535355',
  27. 300: '#434141',
  28. 400: '#3F3F41',
  29. 500: '#323234',
  30. 600: '#2C2C2D',
  31. 700: '#262627',
  32. 800: '#212122',
  33. 900: '#202021',
  34. },
  35. stone: {
  36. 200: '#A0A3A6',
  37. 400: '#6F7071',
  38. 500: '#4B5058',
  39. 700: '#383B41',
  40. },
  41. blue: {
  42. 50: '#F9FAFB',
  43. 100: '#E5F0F5',
  44. 200: '#EDF1F2',
  45. 300: '#D4E2E9',
  46. 400: '#C9E1EA',
  47. 500: '#C0DDE6',
  48. 600: '#7FD4F1',
  49. 700: '#49A9CA',
  50. 800: '#23A2CD',
  51. 900: '#045972',
  52. 950: '#063849',
  53. },
  54. green: {
  55. 100: '#EFF0F1',
  56. 200: '#BCCED2',
  57. 300: '#BBE0CB',
  58. 400: '#38AD69',
  59. 500: '#36AF6A',
  60. 900: '#07341A',
  61. },
  62. yellow: {
  63. 50: '#FFF6DA',
  64. 200: '#FFD44C',
  65. 300: '#FFCE33',
  66. 500: '#FAAB00',
  67. 600: '#F39804',
  68. 800: '#4A3300',
  69. 900: '#453914',
  70. },
  71. red: {
  72. 50: '#FAEFD6',
  73. 300: '#F35912',
  74. 400: '#E9613A',
  75. 500: '#E54011',
  76. 600: '#86270C',
  77. 900: '#220C06',
  78. },
  79. pink: {
  80. 100: '#EFD9D2',
  81. 300: '#EA4D84',
  82. 500: '#FF006B',
  83. },
  84. neutral: {
  85. 100: '#E5E5E5',
  86. 200: '#E3E3E3',
  87. 300: '#DCDCDC',
  88. 400: '#D1D1D1',
  89. 500: '#999999',
  90. 950: '#191919',
  91. },
  92. },
  93. extend: {
  94. width: {
  95. 150: '600px',
  96. },
  97. minWidth: {
  98. 58: '232px',
  99. 150: '600px',
  100. },
  101. maxWidth: {
  102. 150: '600px',
  103. },
  104. },
  105. },
  106. }