Skip to content

Commit

Permalink
fix: actions
Browse files Browse the repository at this point in the history
  • Loading branch information
itsKhadeer committed Jan 12, 2024
1 parent 1465f59 commit 871878c
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
10 changes: 10 additions & 0 deletions .prittierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"semi": true,
"tabWidth": 4,
"printWidth": 100,
"singleQuote": true,
"doubleQuote": false,
"trailingComma": "all",
"bracketSpacing": true,
"useTabs": false
}
18 changes: 16 additions & 2 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,22 @@
export default {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {},
},
colors: {
pink: '#FF4271',
orange: '#ff7849',
green: '#13ce66',
purple: '#3F1577',
yellow: '#F4D258',
'gray-dark': '#273444',
'gray-light': '#d3dce6',
},
extend: {
fontFamily: {
Vermin: ['Vermin'],
Montserrat: ['Montserrat'],
},
},
},
plugins: [],
}

0 comments on commit 871878c

Please sign in to comment.