forked from expo/expo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.cjs
53 lines (51 loc) · 1.61 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
const expoTheme = require('@expo/styleguide/tailwind');
const merge = require('lodash/merge');
function getExpoTheme(extend = {}, plugins = []) {
const customizedTheme = Object.assign({}, expoTheme);
customizedTheme.theme.extend = Object.assign({}, merge(expoTheme.theme.extend, extend));
customizedTheme.plugins = [...expoTheme.plugins, ...plugins];
return customizedTheme;
}
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx}',
'./ui/foundations/**/*.{js,ts,jsx,tsx}',
'./ui/components/**/*.{js,ts,jsx,tsx}',
'./scenes/**/*.{js,ts,jsx,tsx}',
'./node_modules/@expo/styleguide/dist/**/*.{js,ts,jsx,tsx}',
'./node_modules/@expo/styleguide-search-ui/dist/**/*.{js,ts,jsx,tsx}',
],
...getExpoTheme({
backgroundImage: () => ({
'cell-quickstart-pattern': "url('/static/images/home/QuickStartPattern.svg')",
'cell-tutorial-pattern': "url('/static/images/home/TutorialPattern.svg')",
appjs: "url('/static/images/appjs.svg'), linear-gradient(#0033cc, #0033cc)",
}),
keyframes: {
wave: {
'0%, 100%': {
transform: 'rotate(0deg)',
},
'50%': {
transform: 'rotate(20deg)',
},
},
slideUpAndFadeIn: {
'0%': {
opacity: 0,
transform: 'translateY(16px)',
},
'100%': {
opacity: 1,
transform: 'translateY(0)',
},
},
},
animation: {
slideUpAndFadeIn: 'slideUpAndFadeIn 0.25s ease-out',
wave: 'wave 0.25s ease-in-out 4',
},
}),
};