One-click backups for AT Protocol
1/** @type {import('tailwindcss').Config} */
2module.exports = {
3 content: ["./src/**/*.{html,js}"],
4 theme: {
5 extend: {
6 colors: {
7 shiki: {
8 light: "var(--shiki-light)",
9 "light-bg": "var(--shiki-light-bg)",
10 dark: "var(--shiki-dark)",
11 "dark-bg": "var(--shiki-dark-bg)",
12 },
13 },
14 },
15 },
16};