-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.cjs
56 lines (54 loc) · 1.62 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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
...defaultTheme,
screens: {
...defaultTheme.screens,
'2xl': '1576px',
},
content: ["./node_modules/tw-elements/dist/js/**/*.js"],
extend: {
colors: {
'linaro-yellow': "#FFCE00",
'linaro-purple': "#6715E8",
'grey': '#6B6B6B',
"background": "#222025",
"darker": "#1B181C",
'dark': '#222025'
},
backgroundImage: {
'linaro-gradient': 'linear-gradient(102deg, #FFCE00 -0.43%, #6715E8 95.75%)',
'purple-gradient': 'linear-gradient(180deg, rgba(103, 21, 232, 0.00) 0%, #420D90 44%, #420D90 55%, rgba(58, 12, 130, 0.00) 100%)',
'border-gradient': 'linear-gradient(90deg, rgba(0,0,0,0) 0%, #545454 49%, rgba(0,0,0,0) 100%);'
},
animation: {
'infinite-scroll': 'infinite-scroll 50s linear infinite',
},
keyframes: {
'infinite-scroll': {
from: { transform: 'translateX(0)' },
to: { transform: 'translateX(-100%)' },
}
},
typography: (theme) => ({
DEFAULT: {
css: {
color: "white"
// enter default text styles here
},
},
}),
},
fontFamily: {
sans: ["sofia-pro", ...defaultTheme.fontFamily.sans],
},
},
plugins: [
require("@tailwindcss/typography"),
require("tw-elements/plugin.cjs"),
require('tailwindcss-animated')
// ...
],
};