Skip to content

Commit

Permalink
chore: tailwindcss config file
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcosJBM committed Sep 25, 2023
1 parent e1ccf36 commit 7e5c697
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
6 changes: 6 additions & 0 deletions postcss.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
};
25 changes: 25 additions & 0 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
gray: {
100: '#e1e1e6',
300: '#a8a8b3',
700: '#323238',
800: '#29292e',
850: '#1f2729',
900: '#121214',
},
cyan: {
500: '#61dafb',
},
yellow: {
500: '#eba417',
},
},
},
},
plugins: [],
};

0 comments on commit 7e5c697

Please sign in to comment.