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.

15 lines
266 B

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