summaryrefslogtreecommitdiff
path: root/tailwind.config.js
diff options
context:
space:
mode:
authorRafi Zadanly <zadanlyr@gmail.com>2023-02-22 11:03:34 +0700
committerRafi Zadanly <zadanlyr@gmail.com>2023-02-22 11:03:34 +0700
commitf66b12fd1d0b83af0d7230d7b1565fbe00afbe3c (patch)
tree253dcf854a3c92e09ca846e86a09e5b4c5d16be1 /tailwind.config.js
parent3c559031623649a67825ff47f34512f0eb946861 (diff)
prettier
Diffstat (limited to 'tailwind.config.js')
-rw-r--r--tailwind.config.js34
1 files changed, 15 insertions, 19 deletions
diff --git a/tailwind.config.js b/tailwind.config.js
index 1f71fb92..e25c9203 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -1,12 +1,10 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
- content: [
- "./src/**/*.{js,ts,jsx,tsx}",
- ],
+ content: ['./src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
fontFamily: {
- 'sans': ['Inter', 'sans-serif']
+ sans: ['Inter', 'sans-serif']
},
fontSize: {
'display-lg': ['56px', '100%'],
@@ -23,10 +21,10 @@ module.exports = {
'paragraph-1': ['15px', '140%'],
'paragraph-2': ['14px', '140%'],
'caption-1': ['13px', '121%'],
- 'caption-2': ['12px', '121%'],
+ 'caption-2': ['12px', '121%']
},
colors: {
- 'green_r': {
+ green_r: {
1: '#fbfefc',
2: '#f2fcf5',
3: '#e9f9ee',
@@ -38,9 +36,9 @@ module.exports = {
9: '#30a46c',
10: '#299764',
11: '#18794e',
- 12: '#153226',
+ 12: '#153226'
},
- 'yellow_r': {
+ yellow_r: {
1: '#fdfdf9',
2: '#fffce8',
3: '#fffbd1',
@@ -52,9 +50,9 @@ module.exports = {
9: '#f5d90a',
10: '#f7ce00',
11: '#946800',
- 12: '#35290f',
+ 12: '#35290f'
},
- 'gray_r': {
+ gray_r: {
1: '#fcfcfc',
2: '#f8f8f8',
3: '#f3f3f3',
@@ -66,9 +64,9 @@ module.exports = {
9: '#8f8f8f',
10: '#858585',
11: '#6f6f6f',
- 12: '#171717',
+ 12: '#171717'
},
- 'red_r': {
+ red_r: {
1: '#fffcfc',
2: '#fff8f8',
3: '#ffefef',
@@ -80,9 +78,9 @@ module.exports = {
9: '#e5484d',
10: '#dc3d43',
11: '#cd2b31',
- 12: '#381316',
+ 12: '#381316'
},
- 'sand_r': {
+ sand_r: {
1: '#fdfdfc',
2: '#f9f9f8',
3: '#f3f3f2',
@@ -94,12 +92,10 @@ module.exports = {
9: '#90908c',
10: '#868682',
11: '#706f6c',
- 12: '#1b1b18',
+ 12: '#1b1b18'
}
}
- },
+ }
},
- plugins: [
- require('@tailwindcss/line-clamp'),
- ],
+ plugins: [require('@tailwindcss/line-clamp')]
}