tailwind.config.cjs 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. },
  42. surface: {
  43. 1: '#F7F8FC',
  44. 2: '#EDEEF2',
  45. 3: '#E2E4EB',
  46. fiol: '#2C144B',
  47. },
  48. },
  49. boxShadow: {
  50. md: '0px 0px 20px rgba(0, 0, 0, 0.1);',
  51. },
  52. },
  53. },
  54. plugins: [],
  55. };