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
291 B

  1. /** @type {import('tailwindcss').Config} */
  2. export default {
  3. content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
  4. theme: {
  5. colors: {
  6. primary: "#1989FA",
  7. white: "#FFF",
  8. title: "#646566",
  9. bigNum: "#2C3E59",
  10. text: "#2C3E59"
  11. },
  12. extend: {},
  13. },
  14. plugins: [],
  15. };