mirror of
https://github.com/LukeHagar/relay.git
synced 2025-12-10 04:21:26 +00:00
17 lines
317 B
JavaScript
17 lines
317 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./src/**/*.{html,js,svelte,ts}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: {
|
|
50: '#eff6ff',
|
|
500: '#3b82f6',
|
|
600: '#2563eb',
|
|
700: '#1d4ed8',
|
|
}
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
} |