11/** @type {import('tailwindcss').Config } */
22export default {
3- content : [ './src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}' ] ,
4- theme : {
5- extend : {
6- colors : {
7- 'blockchain' : {
8- 'primary' : '#2D3748' , // Dark blue-gray
9- 'secondary' : '#4A5568' , // Medium blue-gray
10- 'accent' : '#4299E1' , // Bright blue
11- 'light' : '#EDF2F7' , // Light gray
12- 'dark' : '#1A202C' , // Very dark blue-gray
13- } ,
14- } ,
15- typography : {
16- DEFAULT : {
17- css : {
18- 'h1, h2, h3, h4' : {
19- color : '#2D3748' ,
20- fontWeight : '700' ,
21- } ,
22- a : {
23- color : '#4299E1' ,
24- textDecoration : 'none' ,
25- '&:hover' : {
26- color : '#2D3748' ,
27- textDecoration : 'underline' ,
28- } ,
29- } ,
30- ul : {
31- listStyleType : 'disc' ,
32- } ,
33- ol : {
34- listStyleType : 'decimal' ,
35- } ,
36- 'ul, ol' : {
37- paddingLeft : '1.5em' ,
38- } ,
39- 'li' : {
40- marginTop : '0.5em' ,
41- marginBottom : '0.5em' ,
42- } ,
43- blockquote : {
44- borderLeftColor : '#4299E1' ,
45- color : '#4A5568' ,
46- } ,
47- code : {
48- color : '#2D3748' ,
49- backgroundColor : '#EDF2F7' ,
50- padding : '0.2em 0.4em' ,
51- borderRadius : '0.25em' ,
52- } ,
53- } ,
54- } ,
55- } ,
56- } ,
57- } ,
58- plugins : [ require ( '@tailwindcss/typography' ) ] ,
59- }
3+ content : [ './src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}' ] ,
4+ theme : {
5+ extend : {
6+ colors : {
7+ 'blockchain' : {
8+ 'primary' : '#2D3748' , // Dark blue-gray
9+ 'secondary' : '#4A5568' , // Medium blue-gray
10+ 'accent' : '#4299E1' , // Bright blue
11+ 'light' : '#EDF2F7' , // Light gray
12+ 'dark' : '#1A202C' , // Very dark blue-gray
13+ } ,
14+ } ,
15+ typography : {
16+ DEFAULT : {
17+ css : {
18+ 'h1, h2, h3, h4' : {
19+ color : '#2D3748' ,
20+ fontWeight : '700' ,
21+ } ,
22+ a : {
23+ color : '#4299E1' ,
24+ textDecoration : 'none' ,
25+ '&:hover' : {
26+ color : '#2D3748' ,
27+ textDecoration : 'underline' ,
28+ } ,
29+ } ,
30+ ul : {
31+ listStyleType : 'disc' ,
32+ } ,
33+ ol : {
34+ listStyleType : 'decimal' ,
35+ } ,
36+ 'ul, ol' : {
37+ paddingLeft : '1.5em' ,
38+ } ,
39+ 'li' : {
40+ marginTop : '0.5em' ,
41+ marginBottom : '0.5em' ,
42+ } ,
43+ blockquote : {
44+ borderLeftColor : '#4299E1' ,
45+ color : '#4A5568' ,
46+ } ,
47+ code : {
48+ color : '#2D3748' ,
49+ backgroundColor : '#EDF2F7' ,
50+ padding : '0.2em 0.4em' ,
51+ borderRadius : '0.25em' ,
52+ } ,
53+ } ,
54+ } ,
55+ } ,
56+ } ,
57+ } ,
58+ plugins : [ require ( '@tailwindcss/typography' ) ] ,
59+ } ;
0 commit comments