-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.js
47 lines (47 loc) · 1.11 KB
/
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
41
42
43
44
45
46
47
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
screens: {
sm: "640px",
md: "768px",
lg: "1024px",
"2xl": "1536px",
},
colors: {
"qiskit-white": "#FFFFFF",
"qiskit-black": "#000000",
"qiskit-yellow": "#FDDC69",
"qiskit-blue-lighter": "#9EF0F0",
"qiskit-blue-normal": "#4999D0",
"qiskit-purple-lighter": "#6929C4",
"partner-yellow": "rgba(255, 186, 0, 0.12)",
"partner-blue": "rgba(43, 130, 251, 0.12)",
"partner-green": " rgba(167, 240, 186, 0.29)",
},
fontFamily: {
"IBM-Plex": ["IBM Plex Sans", "sans-serif"],
},
extend: {
blur: {
xs: "2px",
},
},
},
plugins: [
function ({addUtilities}){
const newUtilities = {
'.no-scrollbar::-webkit-scrollbar':{
display: 'none',
},
'.no-scrollbar':{
'-ms-overflow-style':'none',
'scrollbar-width': 'none'
},
}
addUtilities(newUtilities)
}],
};