about summary refs log tree commit diff
path: root/bskyembed/tailwind.config.cjs
blob: adbeadd4c38678485878063ebeae059e01a52bd0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/** @type {import('tailwindcss').Config} */
module.exports = {
  content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
  darkMode: ['variant', ['&:is(.dark *):not(:is(.dark .light *))']],
  theme: {
    extend: {
      colors: {
        brand: 'rgb(10,122,255)',
        brandLighten: 'rgb(32,139,254)',
        textLight: 'rgb(66,87,108)',
        textDimmed: 'rgb(174,187,201)',
        dimmedBgLighten: 'rgb(30,41,54)',
        dimmedBg: 'rgb(22,30,39)',
        dimmedBgDarken: 'rgb(18,25,32)',
      },
    },
  },
  plugins: [],
}