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.
24 lines
500 B
24 lines
500 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",
|
||
|
},
|
||
|
fontFamily: {
|
||
|
bold: ["bold"],
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
plugins: [],
|
||
|
};
|