tailwind.config.cjs 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /** @type {import('tailwindcss').Config} */
  2. module.exports = {
  3. content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
  4. theme: {
  5. extend: {
  6. colors: {
  7. white: '#ffffff',
  8. black: '#000000',
  9. main: {
  10. accent: '#00BCF0',
  11. hovered: '#00B7EA',
  12. secondary: '#E0F8FF',
  13. selector: '#F2FCFF',
  14. alert: '#FB006D',
  15. warning: '#FFD667',
  16. success: '#66CF80',
  17. },
  18. tint: {
  19. 1: '#E8E0FF',
  20. 2: '#FFE7FD',
  21. 3: '#FFE7EE',
  22. 4: '#FFEFE3',
  23. 5: '#FFF2CD',
  24. 6: '#F5FFDC',
  25. 7: '#DDFFD6',
  26. 8: '#DEFFF1',
  27. 9: '#E1FBFF',
  28. },
  29. shade: {
  30. 1: '#333333',
  31. 2: '#4F4F4F',
  32. 3: '#828282',
  33. 4: '#BDBDBD',
  34. 5: '#E0E0E0',
  35. 6: '#F2F2F2',
  36. },
  37. surface: {
  38. 1: '#F7F8FC',
  39. 2: '#EDEEF2',
  40. 3: '#E2E4EB',
  41. fiol: '#2C144B',
  42. },
  43. },
  44. },
  45. },
  46. plugins: [],
  47. };