forked from expo/expo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.cjs
62 lines (60 loc) · 1.59 KB
/
tailwind.config.cjs
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
const expoTheme = require('@expo/styleguide/tailwind');
const { merge } = require('lodash');
function getExpoTheme(extend = {}) {
const customizedTheme = Object.assign({}, expoTheme);
customizedTheme.theme.extend = Object.assign({}, merge(expoTheme.theme.extend, extend));
return customizedTheme;
}
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
'./ui/foundations/**/*.{js,ts,jsx,tsx}',
'./ui/components/**/*.{js,ts,jsx,tsx}',
'./node_modules/@expo/styleguide/dist/**/*.{js,ts,jsx,tsx}',
'./node_modules/@expo/styleguide-search-ui/dist/**/*.{js,ts,jsx,tsx}',
],
plugins: [],
...getExpoTheme({
backgroundImage: theme => ({
'default-fade': `linear-gradient(to bottom, ${theme(
'backgroundColor.default'
)}, transparent)`,
appjs: "url('/static/images/appjs.svg'), linear-gradient(#0033cc, #0033cc)",
}),
keyframes: {
fadeIn: {
'0%': {
opacity: 0,
},
'100%': {
opacity: 1,
},
},
fadeOut: {
'0%': {
opacity: 1,
},
'100%': {
opacity: 0,
},
},
slideUpAndFadeIn: {
'0%': {
opacity: 0,
transform: 'translateY(16px)',
},
'100%': {
opacity: 1,
transform: 'translateY(0)',
},
},
},
animation: {
fadeIn: 'fadeIn 0.25s ease-out',
fadeOut: 'fadeOut 0.15s ease-in',
slideUpAndFadeIn: 'slideUpAndFadeIn 0.25s ease-out',
},
}),
};