tailwind.config.cjs 1.2 KB

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