-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcolors.config.js
41 lines (35 loc) · 1.24 KB
/
colors.config.js
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
29
30
31
32
33
34
35
36
37
38
39
40
41
const tailwindColors = require('tailwindcss/colors')
const facebook = '#1877f2'
const instagram = '#000000'
const twitter = '#1d9bf0'
const whatsapp = '#44e576'
const white = '#ffffff'
const base = tailwindColors.neutral
const baseBackground = base['50']
const baseBackgroundSecondary = white
const baseInputBackground = base['100']
const baseInputBackgroundDisabled = base['50']
const darkBaseBackground = base['800']
const darkBaseBackgroundSecondary = base['700']
const darkBaseInputBackground = base['800']
const darkBaseInputBackgroundDisabled = base['500']
const primary = tailwindColors.sky
const secondary = tailwindColors.amber
module.exports = {
...tailwindColors,
base,
primary,
secondary,
facebook,
instagram,
twitter,
whatsapp,
'base-background': baseBackground,
'base-background-secondary': baseBackgroundSecondary,
'base-input-background': baseInputBackground,
'base-input-background-disabled': baseInputBackgroundDisabled,
'dark-base-background': darkBaseBackground,
'dark-base-background-secondary': darkBaseBackgroundSecondary,
'dark-base-input-background': darkBaseInputBackground,
'dark-base-input-background-disabled': darkBaseInputBackgroundDisabled,
}