diff options
Diffstat (limited to 'bskyembed/tailwind.config.cjs')
-rw-r--r-- | bskyembed/tailwind.config.cjs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/bskyembed/tailwind.config.cjs b/bskyembed/tailwind.config.cjs new file mode 100644 index 000000000..092e8c2cb --- /dev/null +++ b/bskyembed/tailwind.config.cjs @@ -0,0 +1,13 @@ +/** @type {import('tailwindcss').Config} */ +module.exports = { + content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'], + theme: { + extend: { + colors: { + brand: 'rgb(10,122,255)', + textLight: 'rgb(66,87,108)', + }, + }, + }, + plugins: [], +} |