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.

25 lines
528 B

2 years ago
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
colors: {
primary: "#0f0543",
primaryText: "#fff",
// primaryDark: "",
primaryLight: "#302088",
secondary: "#245CE1",
secondaryText: "#fff",
// secondaryDark: "",
secondaryLight: "#2483e1",
surface: "#fff",
surfaceBorder: "#9DACD344",
2 years ago
warning: "#FFCC00",
2 years ago
},
fontFamily: {
bold: ["bold"],
},
},
},
plugins: [],
};