This commit is contained in:
philipp lang 2024-02-04 01:28:36 +01:00
parent cd6e7dc6aa
commit f36f6b8358
1 changed files with 42 additions and 45 deletions

View File

@ -1,50 +1,47 @@
/** @type {import('tailwindcss').Config} */ /** @type {import('tailwindcss').Config} */
export default { export default {
content: ["./src/**/*.vue"], content: ['./src/**/*.vue'],
theme: { theme: {
extend: { extend: {
colors: { colors: {
gray: { gray: {
100: "#f7fafc", 100: '#f7fafc',
200: "#edf2f7", 200: '#edf2f7',
300: "#e2e8f0", 300: '#e2e8f0',
400: "#cbd5e0", 400: '#cbd5e0',
500: "#a0aec0", 500: '#a0aec0',
600: "#718096", 600: '#718096',
700: "#4a5568", 700: '#4a5568',
800: "#2d3748", 800: '#2d3748',
900: "#1a202c", 900: '#1a202c',
}, },
edit: { edit: {
DEFAULT: "hsl(20, 77%, 55%)", DEFAULT: 'hsl(20, 77%, 55%)',
}, },
primary: { primary: {
DEFAULT: "var(--primary)", DEFAULT: 'var(--primary)',
}, },
primaryfg: { primaryfg: {
DEFAULT: "var(--primaryfg)", DEFAULT: 'var(--primaryfg)',
}, },
secondary: { secondary: {
DEFAULT: "var(--secondary)", DEFAULT: 'var(--secondary)',
}, },
font: { font: {
DEFAULT: "var(--font)", DEFAULT: 'var(--font)',
}, },
circle: { circle: {
DEFAULT: "var(--circle)", DEFAULT: 'var(--circle)',
}, },
}, },
fontFamily: { fontFamily: {
arvo: ["Arvo"], arvo: ['Arvo'],
nunito: ["Nunito"], nunito: ['Nunito'],
}, },
boxShadow: { boxShadow: {
button: "inset 0 -2px 0 rgba(255,255,255,0.2)", button: 'inset 0 -2px 0 rgba(255,255,255,0.2)',
}, },
}, },
}, },
plugins: [ plugins: [require('@tailwindcss/container-queries'), require('@tailwindcss/typography')],
require("@tailwindcss/container-queries"),
require("@tailwindcss/typography"),
],
}; };