基质喷涂
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.

17 lines
477 B

6 months ago
6 months ago
  1. /** @type {import('tailwindcss').Config} */
  2. export default {
  3. content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
  4. theme: {
  5. colors: {
  6. primary: "#26509C",
  7. white: "#FFF",
  8. title: "#646566",
  9. text: "#2C3E59",
  10. gradient90: "linear-gradient(90deg, #0657C0 24%, #096AE0 101%)",
  11. gradient110: "linear-gradient(110deg, #0349A8 11%, #1663B7 105%)",
  12. gradientLight1: "linear-gradient(180deg, #EBF1FA 0%, #F8FAFD 100%)",
  13. },
  14. extend: {},
  15. },
  16. plugins: [],
  17. };