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.

18 lines
283 B

5 months ago
5 months ago
  1. /** @type {import('tailwindcss').Config} */
  2. module.exports = {
  3. content: [
  4. "./src/**/*.{js,jsx,ts,tsx}",
  5. ],
  6. theme: {
  7. colors: {
  8. primary: "#3e63cb",
  9. white: "#FFF",
  10. title: "#646566",
  11. text: "#333",
  12. warn: "#f05a28",
  13. },
  14. extend: {},
  15. },
  16. plugins: [],
  17. }