You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

91 lines
2.8 KiB

  1. import defaultTheme from 'tailwindcss/defaultTheme';
  2. import forms from '@tailwindcss/forms';
  3. import typography from '@tailwindcss/typography';
  4. import daisyUI from 'daisyui';
  5. /** @type {import('tailwindcss').Config} */
  6. export default {
  7. content: [
  8. './vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
  9. './storage/framework/views/*.php',
  10. './resources/views/**/*.blade.php',
  11. './resources/js/**/*.tsx',
  12. ],
  13. theme: {
  14. extend: {
  15. fontFamily: {
  16. sans: ['"Source Sans 3"', ...defaultTheme.fontFamily.sans],
  17. },
  18. colors: {
  19. primary: {
  20. main: "#00AEED",
  21. pressed: "#003A4F",
  22. hover: "#00749E",
  23. border: "#97D5DA",
  24. focus: "#CAF0F8",
  25. background: "#F2F5FF",
  26. },
  27. secondary: {
  28. main: "#002F42",
  29. pressed: "#002433",
  30. hover: "#0074A3",
  31. border: "#005375",
  32. focus: "#009EDE",
  33. background: "#BBEBFF",
  34. },
  35. info: {
  36. main: "#0065C1",
  37. pressed: "#002B52",
  38. hover: "#004889",
  39. border: "#AAC7E1",
  40. focus: "#D9E8F4",
  41. background: "#F0F8FF",
  42. },
  43. error: {
  44. main: "#B20000",
  45. pressed: "#590000",
  46. hover: "#940000",
  47. border: "#E5AAAA",
  48. focus: "#F9D9D9",
  49. background: "#FBEFEF",
  50. },
  51. success: {
  52. main: "#007505",
  53. pressed: "#044407",
  54. hover: "#005803",
  55. border: "#A2C1A3",
  56. focus: "#C5E1C6",
  57. background: "#EBF8EC",
  58. },
  59. warning: {
  60. main: "#E5C100",
  61. pressed: "#726000",
  62. hover: "#BFA100",
  63. border: "#F4E386",
  64. focus: "#FFF4B9",
  65. background: "#FAF7E6",
  66. },
  67. neutral: {
  68. 100: "#1A1A1A",
  69. 90: "#424242",
  70. 80: "#616161",
  71. 70: "#757575",
  72. 60: "#9E9E9E",
  73. 50: "#C2C2C2",
  74. 40: "#E0E0E0",
  75. 30: "#EDEDED",
  76. 20: "#F5F5F5",
  77. 10: "#FFFFFF",
  78. 0: "#000000",
  79. },
  80. },
  81. },
  82. },
  83. plugins: [
  84. forms,
  85. typography,
  86. daisyUI
  87. ],
  88. };