mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-09 20:12:26 +10:00
- intial gatsbyJS setup
- setting up tailwindcss and other plugins - designing the landing page - creating a reusable button component
This commit is contained in:
18
tailwind.config.js
Normal file
18
tailwind.config.js
Normal file
@ -0,0 +1,18 @@
|
||||
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: [],
|
||||
};
|
||||
Reference in New Issue
Block a user