An in-browser wisp.place site explorer
1/** @type {import('tailwindcss').Config} */
2export default {
3 content: [
4 "./index.html",
5 "./src/**/*.{js,ts,jsx,tsx}",
6 ],
7 theme: {
8 extend: {
9 colors: {
10 primary: {
11 50: '#f0f9ff',
12 100: '#e0f2fe',
13 200: '#bae6fd',
14 300: '#7dd3fc',
15 400: '#38bdf8',
16 500: '#0ea5e9',
17 600: '#0284c7',
18 700: '#0369a1',
19 800: '#075985',
20 900: '#0c4a6e',
21 },
22 },
23 },
24 },
25 plugins: [],
26}