A web app template for building Hyperlane Warp Route UIs
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
hyperlane-warp-ui-template/tailwind.config.js

105 lines
2.4 KiB

/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
content: ['./src/**/*.{js,ts,jsx,tsx}'],
theme: {
fontFamily: {
sans: ['Neue Haas Grotesk', 'Helvetica', 'sans-serif'],
serif: ['Garamond', 'serif'],
mono: ['Courier New', 'monospace'],
},
screens: {
xs: '480px',
...defaultTheme.screens,
},
extend: {
colors: {
black: '#010101',
white: '#ffffff',
gray: {...defaultTheme.colors.gray, 150: '#EBEDF0', 250: '#404040', 350: '#6B6B6B'},
blue: {
50: '#E6EDF9',
100: '#CDDCF4',
200: '#A7C2EC',
300: '#82A8E4',
400: '#5385D2',
500: '#2362C0',
600: '#1D4685',
700: '#162A4A',
800: '#11213B',
900: '#0D192C',
},
red: {
100: '#EBBAB8',
200: '#DF8D8A',
300: '#D25F5B',
400: '#C5312C',
500: '#BF1B15',
600: '#AB1812',
700: '#85120E',
800: '#5F0D0A',
900: '#390806',
},
green: {
50: '#D3E3DB',
100: '#BED5C9',
200: '#93BAA6',
300: '#679F82',
400: '#3C835E',
500: '#27764d',
600: '#236A45',
700: '#1F5E3D',
800: '#17462E',
900: '#0F2F1E',
},
pink: {
50: '#FAEAF8',
100: '#F2C1EA',
200: '#EA98DC',
300: '#E26ECE',
400: '#DA45C0',
500: '#D631B9',
600: '#C02CA6',
700: '#952281',
800: '#6B185C',
900: '#400E37',
}
},
fontSize: {
md: '0.95rem',
thin: '0.625rem',
},
spacing: {
88: '22rem',
100: '26rem',
112: '28rem',
128: '32rem',
144: '36rem',
},
borderRadius: {
none: '0',
sm: '0.25rem',
DEFAULT: '0.35rem',
md: '0.45rem',
lg: '0.55rem',
full: '9999px',
},
blur: {
xs: '3px',
},
animation: {
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;',
},
transitionProperty: {
'height': 'height, max-height',
'spacing': 'margin, padding',
},
maxWidth: {
'xl-1': '39.5rem',
},
},
},
plugins: [],
};