mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2024-12-22 20:46:01 +08:00
70ef926b70
- setting up tailwindcss and other plugins - designing the landing page - creating a reusable button component
19 lines
428 B
JavaScript
19 lines
428 B
JavaScript
module.exports = {
|
|
purge: ["./src/**/*.js", "./src/**/*.jsx", "./src/**/*.ts", "./src/**/*.tsx"],
|
|
theme: {
|
|
container: {
|
|
center: true,
|
|
},
|
|
extend: {
|
|
colors: {
|
|
primary: "var(--color-primary)",
|
|
"primary-dark": "var(--color-primary-dark)",
|
|
inverse: "var(--color-inverse)",
|
|
"inverse-dark": "var(--color-inverse-dark)",
|
|
},
|
|
},
|
|
},
|
|
variants: {},
|
|
plugins: [],
|
|
};
|