1
+ import containerQueries from "@tailwindcss/container-queries" ;
2
+ import typography from "@tailwindcss/typography" ;
1
3
import type { Config } from "tailwindcss" ;
2
4
3
5
const config : Config = {
@@ -17,34 +19,33 @@ const config: Config = {
17
19
"gradient-conic" : "conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))" ,
18
20
} ,
19
21
colors : {
20
- // Custom gray palette based on EternalCode.pl design
21
22
gray : {
22
- 50 : "#f7f8fa" , // Lightest (for text on dark backgrounds)
23
- 100 : "#eef1f5" , // Very light
24
- 200 : "#dde2ea" , // Light
25
- 300 : "#c4cdd8" , // Medium light
26
- 400 : "#8d99a9" , // Medium
27
- 500 : "#5d6b7c" , // Base gray
28
- 600 : "#3e4a59" , // Medium dark
29
- 700 : "#2a3441" , // Dark
30
- 800 : "#141a23" , // Your base color (main background)
31
- 850 : "#131720" , // Custom shade (darker sections)
32
- 900 : "#0c1218" , // Darkest (header/navigation background)
33
- 950 : "#080c11" , // Ultra dark
23
+ 50 : "#f7f8fa" ,
24
+ 100 : "#eef1f5" ,
25
+ 200 : "#dde2ea" ,
26
+ 300 : "#c4cdd8" ,
27
+ 400 : "#8d99a9" ,
28
+ 500 : "#5d6b7c" ,
29
+ 600 : "#3e4a59" ,
30
+ 700 : "#2a3441" ,
31
+ 800 : "#141a23" ,
32
+ 850 : "#131720" ,
33
+ 900 : "#0c1218" ,
34
+ 950 : "#080c11" ,
34
35
} ,
35
36
lightGray : {
36
37
50 : "#ffffff" ,
37
- 100 : "#f7f8fa " ,
38
- 200 : "#eef1f5 " ,
39
- 300 : "#dde2ea " ,
40
- 400 : "#c4cdd8 " ,
41
- 500 : "#8d99a9 " ,
42
- 600 : "#5d6b7c " ,
43
- 700 : "#3e4a59 " ,
44
- 800 : "#2a3441 " ,
45
- 850 : "#141a23 " ,
46
- 900 : "#10161e " ,
47
- 950 : "#0c1218 " ,
38
+ 100 : "#fafbfc " ,
39
+ 200 : "#f4f6f8 " ,
40
+ 300 : "#e8ecf1 " ,
41
+ 400 : "#d3d9e0 " ,
42
+ 500 : "#b4bcc8 " ,
43
+ 600 : "#8f99a8 " ,
44
+ 700 : "#6e7a8c " ,
45
+ 800 : "#4e5b6e " ,
46
+ 850 : "#3a4655 " ,
47
+ 900 : "#2a3441 " ,
48
+ 950 : "#1a1f27 " ,
48
49
} ,
49
50
} ,
50
51
borderRadius : {
@@ -59,10 +60,6 @@ const config: Config = {
59
60
} ,
60
61
} ,
61
62
} ,
62
- plugins : [
63
- require ( "@tailwindcss/container-queries" ) ,
64
- require ( "@tailwindcss/typography" ) ,
65
- require ( "@tailwindcss/line-clamp" )
66
- ] ,
63
+ plugins : [ containerQueries , typography ] ,
67
64
} ;
68
65
export default config ;
0 commit comments