create-automaticgpt-template
Version:
AutomaticGPT - A production-ready Expo template with AI chat, authentication, conversation management, analytics, and sharing features
38 lines (37 loc) • 1.49 kB
JavaScript
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
presets: [require('nativewind/preset')],
theme: {
extend: {
colors: {
background: 'rgb(var(--background) / <alpha-value>)',
foreground: 'rgb(var(--foreground) / <alpha-value>)',
card: 'rgb(var(--card) / <alpha-value>)',
'card-foreground': 'rgb(var(--card-foreground) / <alpha-value>)',
primary: 'rgb(var(--primary) / <alpha-value>)',
'primary-foreground': 'rgb(var(--primary-foreground) / <alpha-value>)',
secondary: 'rgb(var(--secondary) / <alpha-value>)',
'secondary-foreground': 'rgb(var(--secondary-foreground) / <alpha-value>)',
muted: 'rgb(var(--muted) / <alpha-value>)',
'muted-foreground': 'rgb(var(--muted-foreground) / <alpha-value>)',
border: 'rgb(var(--border) / <alpha-value>)',
input: 'rgb(var(--input) / <alpha-value>)',
accent: 'rgb(var(--accent) / <alpha-value>)',
'accent-foreground': 'rgb(var(--accent-foreground) / <alpha-value>)',
},
fontSize: {
xs: ['13px', '18px'], // was 12px/16px
sm: ['15px', '20px'], // was 14px/20px
base: ['17px', '24px'], // was 16px/24px
lg: ['19px', '28px'], // was 18px/28px
xl: ['21px', '28px'], // was 20px/28px
'2xl': ['25px', '32px'], // was 24px/32px
},
},
},
future: {
hoverOnlyWhenSupported: true,
},
plugins: [],
};