-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
40 lines (35 loc) · 983 Bytes
/
tailwind.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
/** @type {import('tailwindcss').Config} */
const nativewind = require("nativewind/tailwind")
module.exports = {
content: ["./App.{js,jsx,ts,tsx}", "./app/**/*.{js,jsx,ts,tsx}", "index.js"],
theme: {
colors:{
'ug-light-green' : '#61ff73',
'ug-green' : '#2fc62d',
'ug-dark-green' : '#031e08',
'ug-brown' : '#393424',
'ug-light-blue' : '#b6dee4',
'ug-light-gray' : '#a3c2b3',
'ug-gray' : '#838e88',
'ug-white' : '#ecf6ff',
'ug-black' : '#0f0e0d',
'ug-red': '#a63232'
},
extend: {
backgroundImage: {
'el-cap': "url('/assets/bg.jpg')",
},
animation: {
logoColorAlternate: 'logoColorAlternate 4s ease-in-out infinite',
},
keyframes: {
logoColorAlternate: {
'0%': { color: '#b6dee4' },
'50%': { color: '#2fc62d' },
'100%': { color: '#b6dee4' },
},
},
},
},
presets: [nativewind],
}