Skip to content

Commit

Permalink
Merge pull request #13 from sfrunza13/issue-1
Browse files Browse the repository at this point in the history
added a few colors
  • Loading branch information
aryamankha committed Oct 17, 2022
2 parents d8eed12 + 29e27cc commit 1509ea4
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
1 change: 1 addition & 0 deletions pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ const Home: NextPage = () => {
<title>Create Next App</title>
<meta name="description" content="Generated by create next app" />
<link rel="icon" href="/favicon.ico" />
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet"/>
</Head>

<main className={styles.main}>
Expand Down
13 changes: 12 additions & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,18 @@ module.exports = {
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
colors:{
'Rausch':'#FF5A5F',
'Babu':'#00A699',
'Arches':'#FC642D',
'Hof':'#484848',
'Foggy':'#767676'
},
extend: {
fontFamily: {
Montserrat: ["Montserrat", ...defaultTheme.fontFamily.sans],
},
},
},
plugins: [],
};

0 comments on commit 1509ea4

Please sign in to comment.