Bluesky app fork with some witchin' additions 馃挮
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at a876aae44ea07494ebea9727350aa060b81f317b 22 lines 661 B view raw
1/** @type {import('tailwindcss').Config} */ 2module.exports = { 3 content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'], 4 darkMode: ['variant', ['&:is(.dark *):not(:is(.dark .light *))']], 5 theme: { 6 extend: { 7 colors: { 8 brand: 'rgb(0,106,255)', 9 brandHover: 'rgb(245,249,255)', 10 brandHoverDark: 'rgb(17,24,34)', 11 brandLighten: 'rgb(32,139,254)', 12 textLight: 'rgb(63,82,104)', 13 textDimmed: 'rgb(164,179,197)', 14 textNeutral: 'rgb(102,123,153)', 15 dimmedBgLighten: 'rgb(30,41,54)', 16 dimmedBg: 'rgb(22,30,39)', 17 dimmedBgDarken: 'rgb(18,25,32)', 18 }, 19 }, 20 }, 21 plugins: [], 22}