added image and set up theme
This commit is contained in:
parent
bc061a6e81
commit
4e08188a70
3 changed files with 28 additions and 8 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -33,3 +33,6 @@ yarn-error.log*
|
||||||
# typescript
|
# typescript
|
||||||
*.tsbuildinfo
|
*.tsbuildinfo
|
||||||
next-env.d.ts
|
next-env.d.ts
|
||||||
|
|
||||||
|
# private assets
|
||||||
|
private
|
BIN
public/dr_feely_portrait.jpg
Normal file
BIN
public/dr_feely_portrait.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.3 MiB |
|
@ -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: [],
|
||||||
}
|
};
|
||||||
|
|
Loading…
Reference in a new issue