File tree Expand file tree Collapse file tree 1 file changed +11
-5
lines changed Expand file tree Collapse file tree 1 file changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -58,14 +58,20 @@ code {
58
58
color : var (--medium-purple ); /* Muted orange */
59
59
}
60
60
61
- /* Blockquotes: Orange background, white border-left, and teal text inside */
61
+ /* Base styles (Light Mode) */
62
62
blockquote {
63
- background-color : var (--medium-purple ); /* Bright orange background */
64
- border-left : 4px solid # f0ece2 ; /* Off-white border on the left */
65
- padding : 1rem ; /* Padding for readability */
66
- color : # f0ece2 ; /* Off-white text */
63
+ background-color : var (--lighter-purple );
64
+ border-left : 4px solid # f0ece2 ;
65
+ padding : 1rem ;
66
+ color : # f0ece2 ;
67
+ }
68
+
69
+ /* Override for Dark Mode */
70
+ html [data-theme = "dark" ] blockquote {
71
+ background-color : var (--medium-purple );
67
72
}
68
73
74
+
69
75
blockquote p {
70
76
color : # 282A36 !important ; /* Teal text for paragraphs inside blockquote */
71
77
}
You can’t perform that action at this time.
0 commit comments