CoolFace
Apppublic

iridescentX/openui

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
tailwind.config.js38 linesDownload Raw Back to root
1/** @type {import('tailwindcss').Config} */2export default {3	darkMode: 'class',4	content: ['./src/**/*.{html,js,svelte,ts}'],5	theme: {6		extend: {7			colors: {8				gray: {9					50: '#f9f9f9',10					100: '#ececec',11					200: '#e3e3e3',12					300: '#cdcdcd',13					400: '#b4b4b4',14					500: '#9b9b9b',15					600: '#676767',16					700: '#4e4e4e',17					800: 'var(--color-gray-800, #333)',18					850: 'var(--color-gray-850, #262626)',19					900: 'var(--color-gray-900, #171717)',20					950: 'var(--color-gray-950, #0d0d0d)'21				}22			},23			typography: {24				DEFAULT: {25					css: {26						pre: false,27						code: false,28						'pre code': false,29						'code::before': false,30						'code::after': false31					}32				}33			}34		}35	},36	plugins: [require('@tailwindcss/typography')]37};38