-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
79 lines (77 loc) · 2.51 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
const expoTheme = require('@expo/styleguide/tailwind');
const merge = require('lodash/merge');
const plugin = require('tailwindcss/plugin');
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(
{
backgroundColor: {
'launch-party-red': '#D22323',
'launch-party-blue': '#006CFF',
'launch-party-yellow': '#F3AD0D',
},
borderColor: {
'palette-orange3.5': 'hsl(from var(--orange-4) h calc(s - 5) calc(l + 5));',
},
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)",
'launch-party-banner': "url('/static/images/launch-party-banner-bg.svg')",
'launch-party-banner-mobile': "url('/static/images/launch-party-banner-bg.svg') 200px",
}),
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',
},
boxShadow: {
kbd: '0 .1rem 0 1px var(--expo-theme-border-default)',
},
},
[
plugin(function ({ addUtilities }) {
addUtilities({
'.asset-shadow': {
filter:
'drop-shadow(0 3px 8px rgba(0, 0, 0, 0.12)) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.07))',
},
});
}),
]
),
};