@@ -16,6 +16,7 @@ interface Color {
16
16
templateContentBg : string ;
17
17
tableHeaderBg : string ;
18
18
headerText : string ;
19
+ studentText : string ;
19
20
chipBg : string ;
20
21
chipText : string ;
21
22
}
@@ -26,6 +27,7 @@ export const TEMPLATE_COLORS: Color[] = [
26
27
templateContentBg : 'linear-gradient(161deg, #3D3D3D 5.9%, #181818 96.88%)' ,
27
28
tableHeaderBg : '#3D3D3D' ,
28
29
headerText : '#FFFFFF' ,
30
+ studentText : '#FFFFFF' ,
29
31
chipBg : 'rgba(42, 42, 42, 0.36)' ,
30
32
chipText : '#FFFFFF' ,
31
33
} ,
@@ -34,6 +36,7 @@ export const TEMPLATE_COLORS: Color[] = [
34
36
templateContentBg : '#1554DB' ,
35
37
tableHeaderBg : '#1554DB' ,
36
38
headerText : '#FFFFFF' ,
39
+ studentText : '#FFFFFF' ,
37
40
chipBg : 'rgba(42, 42, 42, 0.36)' ,
38
41
chipText : '#FFFFFF' ,
39
42
} ,
@@ -43,6 +46,7 @@ export const TEMPLATE_COLORS: Color[] = [
43
46
templateContentBg : '#F9F9F9' ,
44
47
tableHeaderBg : '#F9F9F9' ,
45
48
headerText : '#292929' ,
49
+ studentText : '#292929' ,
46
50
chipBg : 'rgba(42, 42, 42, 0.36)' ,
47
51
chipText : '#FFFFFF' ,
48
52
} ,
@@ -51,6 +55,7 @@ export const TEMPLATE_COLORS: Color[] = [
51
55
templateContentBg : 'linear-gradient(180deg, #A4B9FF 0%, #E2A9D0 100%)' ,
52
56
tableHeaderBg : '#A4B9FF' ,
53
57
headerText : '#FFFFFF' ,
58
+ studentText : '#FFFFFF' ,
54
59
chipBg : 'rgba(255, 255, 255, 0.25)' ,
55
60
chipText : '#FFFFFF' ,
56
61
} ,
@@ -61,6 +66,7 @@ export const TEMPLATE_COLORS: Color[] = [
61
66
tableHeaderBg :
62
67
'linear-gradient(90deg, #C5E7FF 0%, #FDE8FF 31.21%, #DDE7FF 69.21%, #ECE8FF 91.71%)' ,
63
68
headerText : '#FFFFFF' ,
69
+ studentText : '#292929' ,
64
70
chipBg : 'rgba(255, 255, 255, 0.25)' ,
65
71
chipText : '#292929' ,
66
72
} ,
@@ -127,7 +133,7 @@ const TemplateCreditChip = ({
127
133
< div
128
134
className = { `flex items-center gap-2 rounded-xl px-2 py-1` }
129
135
style = { {
130
- backgroundColor : bgColor ,
136
+ background : bgColor ,
131
137
color : textColor ,
132
138
} }
133
139
>
@@ -190,7 +196,7 @@ const TimetableSharingTemplate = forwardRef<HTMLDivElement, TimetableSharingTemp
190
196
textColor = { color . headerText }
191
197
/>
192
198
</ Timetable >
193
- < TemplateStudent textColor = { color . headerText } />
199
+ < TemplateStudent textColor = { color . studentText } />
194
200
< TemplateCredit >
195
201
< TemplateCreditChip bgColor = { color . chipBg } textColor = { color . chipText } >
196
202
< div className = "text-[10px]" > 이수학점</ div >
0 commit comments