19 lines
378 B
JavaScript
19 lines
378 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
'helvetica': ['Helvetica Neue', 'Helvetica', 'Arial', 'system-ui', '-apple-system', 'sans-serif'],
|
|
},
|
|
colors: {
|
|
'gray-850': '#1a1a1a',
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|