mirror of
https://github.com/EFForg/rayhunter.git
synced 2026-04-26 23:49:59 -07:00
* adds breakpoint stores to allow selective rendering on screen size * removes unused type * formatting
20 lines
446 B
TypeScript
20 lines
446 B
TypeScript
import type { Config } from 'tailwindcss';
|
|
import { breakpoints } from './src/theme';
|
|
|
|
export default {
|
|
content: ['./src/**/*.{html,js,svelte,ts}'],
|
|
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'rayhunter-blue': '#4e4eb1',
|
|
'rayhunter-dark-blue': '#3f3da0',
|
|
'rayhunter-green': '#94ea18',
|
|
},
|
|
screens: breakpoints,
|
|
},
|
|
},
|
|
|
|
plugins: [],
|
|
} as Config;
|