about summary refs log tree commit diff
path: root/bskyembed/tailwind.config.cjs
blob: 092e8c2cb767660e7b88611cbf273d925b41cc7f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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: [],
}