added image and set up theme

This commit is contained in:
Noah Swerhun 2023-07-23 13:31:41 -05:00
parent bc061a6e81
commit 4e08188a70
3 changed files with 28 additions and 8 deletions

3
.gitignore vendored
View file

@ -33,3 +33,6 @@ yarn-error.log*
# typescript # typescript
*.tsbuildinfo *.tsbuildinfo
next-env.d.ts next-env.d.ts
# private assets
private

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

View file

@ -1,18 +1,35 @@
const colors = require("tailwindcss/colors");
/** @type {import('tailwindcss').Config} */ /** @type {import('tailwindcss').Config} */
module.exports = { module.exports = {
content: [ content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}', "./pages/**/*.{js,ts,jsx,tsx,mdx}",
'./components/**/*.{js,ts,jsx,tsx,mdx}', "./components/**/*.{js,ts,jsx,tsx,mdx}",
'./app/**/*.{js,ts,jsx,tsx,mdx}', "./app/**/*.{js,ts,jsx,tsx,mdx}",
], ],
theme: { theme: {
extend: { extend: {
backgroundImage: { colors: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))', primary: {
'gradient-conic': 500: "#202948",
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))', 300: "#8097B8",
100: "#F2F8FF",
},
secondary: {
500: "#CCA93F",
300: "#C4B074",
},
tertiary: {
400: colors.stone[400],
300: colors.stone[300],
},
},
fontFamily: {
abel: ["Abel", "sans-serif"],
cormorant: ["Cormorant", "serif"],
frankRuhl: ["Frank Ruhl Libre", "serif"],
}, },
}, },
}, },
plugins: [], plugins: [],
} };