Socialify

Folder ..

Viewing tailwind.config.js
29 lines (27 loc) • 733.0 B

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/** @type {import('tailwindcss').Config} */
export default {
  content: ['./src/**/*.{html,js,svelte,ts}'],
  theme: {
    extend: {
      colors: {
        'pagodapurple': '#8853e7',
        'pagodapurple-shine': '#d4c5ff',
        'pagodagreen': '#91d027',
        'pagodagreen-shine': '#cff294',
        'pagodapink': '#e42b8f',
        'pagodapink-shine': '#ffc8f0',
        'arcadia': '#5882ce',
        'arles': '#9a7570',
        'hollywood': '#a9562d',
        'oxford': '#312630',
        'petsburg': '#417958',
        'purgatory': '#5c518e',
        'silicon-valley': '#427571',
        'silver-lake': '#39516c',
        'stratford-upon-avon': '#ab5742',
        'tokyo': '#a25373',

      }
    },
  },
  plugins: [],
}