This repository has been archived by the owner on Jun 14, 2021. It is now read-only.
forked from astrada/bs-css-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Css.rei
2417 lines (1743 loc) · 55.9 KB
/
Css.rei
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* Based on https://github.com/SentiaAnalytics/bs-css/blob/master/src/Css.rei */
/* TYPES */
/***
* A generic JS object that collects CSS declarations/rules.
* For example:
{
"backgroundColor": "white",
"padding": "15px",
"animationName": {
"0%": {"opacity": "0", "transform": "scale(0.1, 0.1)"},
"100%": {"opacity": "1", "transform": "scale(1, 1)"},
"60%": {"opacity": "1", "transform": "scale(1.2, 1.2)"}
}
}
*/
type styleObject('style) = Js.t({..} as 'style);
/***
* A CSS rule. It can be a simple property/value pair (e.g.: { color: white }),
* or a CSS ruleset (e.g.:
:hover {
color: orange;
}
*/
type rule;
/***
* A CSS color value. E.g.: white, black, #fafafa, rgb(255, 255, 128),
* rgba(117, 190, 218, 0.0).
* https://developer.mozilla.org/en-US/docs/Web/CSS/color_value
*/
type color;
/***
* A CSS length. E.g. 10px, 1rem, 5em.
* https://developer.mozilla.org/en-US/docs/Web/CSS/length
*/
type cssunit;
/***
* A CSS angle. E.g.: 90deg, 100grad, 1rad, 0.25turn.
* https://developer.mozilla.org/en-US/docs/Web/CSS/angle
*/
type angle;
/***
* One or more keyframe rules. E.g.:
animation-name: {
0%: {opacity: 0; transform: scale(0.1, 0.1)};
100%: {opacity: 1; transform: scale(1, 1)};
60%: {opacity: 1; transform: scale(1.2, 1.2)}
}
* https://developer.mozilla.org/en-US/docs/Web/CSS/@keyframes
*/
type keyframeObject;
/***
* A transform declaration. E.g.:
{ transform: scale(2, 0.5); }
* https://developer.mozilla.org/en-US/docs/Web/CSS/transform
*/
type transform;
/* GENERIC RULES */
/*** Returns an empty style object. */
let empty: unit => styleObject('style);
let unsafeValue: string => 'a;
let label: string => rule;
/***
* Builds a style object from a list of rules.
* E.g.:
style([
backgroundColor(white),
padding(px(15))
])
returns:
{
"backgroundColor": "white",
"padding": "15px"
}
*/
let style: list(rule) => styleObject('style);
/*** Builds a keyframe rule from a list of keyframe blocks. */
let keyframes: list((string, list(rule))) => keyframeObject;
/*** Builds a rule from a property/value string pair. */
let unsafe: (string, 'a) => rule;
/*** Builds a rule from a descriptor and a list of rules. */
let selector: (string, list(rule)) => rule;
let stringsOfProperty: rule => (string, string);
let stringOfUnit: cssunit => string;
/***
* Marks a rule as important. E.g.: { color: red !important }
* https://www.w3.org/TR/css3-cascade/#importance
*/
let important: rule => rule;
/* ANGLES */
/***
* Returns an angle in radians.
* https://developer.mozilla.org/en-US/docs/Web/CSS/angle#rad
*/
let rad: float => angle;
/***
* Returns an angle in gradians.
* https://developer.mozilla.org/en-US/docs/Web/CSS/angle#grad
*/
let grad: float => angle;
/***
* Returns an angle in degrees.
* https://developer.mozilla.org/en-US/docs/Web/CSS/angle#deg
*/
let deg: float => angle;
/***
* Returns an angle in number of turns.
* https://developer.mozilla.org/en-US/docs/Web/CSS/angle#turn
*/
let turn: float => angle;
/* LENGTHS */
/***
* Returns a length in pixels.
* https://developer.mozilla.org/en-US/docs/Web/CSS/length#px
*/
let px: int => cssunit;
/***
* Returns a length in points.
* https://developer.mozilla.org/en-US/docs/Web/CSS/length#pt
*/
let pt: int => cssunit;
/***
* Returns a length in percentual.
* https://developer.mozilla.org/en-US/docs/Web/CSS/percentage
*/
let pct: float => cssunit;
/***
* Returns a length in rem units (font-size of the root element).
* https://developer.mozilla.org/en-US/docs/Web/CSS/length#rem
*/
let rem: float => cssunit;
/***
* Returns a length in em units (calculated font-size of the element).
* https://developer.mozilla.org/en-US/docs/Web/CSS/length#em
*/
let em: float => cssunit;
/***
* Returns a length in ex units (x-height of the element's font).
* https://developer.mozilla.org/en-US/docs/Web/CSS/length#ex
*/
let ex: float => cssunit;
/***
* Returns a length in ch units (width, or more precisely the advance measure, of the glyph "0").
* https://developer.mozilla.org/en-US/docs/Web/CSS/length#ex
*/
let ch: float => cssunit;
/***
* Returns a length in vh units (1% of the height of the viewport's initial containing block).
* https://developer.mozilla.org/en-US/docs/Web/CSS/length#vh
*/
let vh: float => cssunit;
/***
* Returns a length in vw units (1% of the width of the viewport's initial containing block).
* https://developer.mozilla.org/en-US/docs/Web/CSS/length#vw
*/
let vw: float => cssunit;
let vmin: float => cssunit;
let vmax: float => cssunit;
/***
* Returns a length in centimeters.
* https://developer.mozilla.org/en-US/docs/Web/CSS/length#cm
*/
let cm: float => cssunit;
/***
* Returns a length in millimeters.
* https://developer.mozilla.org/en-US/docs/Web/CSS/length#mm
*/
let mm: float => cssunit;
/***
* Returns a length in quarters of a millimiter.
* https://developer.mozilla.org/en-US/docs/Web/CSS/length#q
*/
let q: float => cssunit;
/***
* Returns a length in inches.
* https://developer.mozilla.org/en-US/docs/Web/CSS/length#in
*/
let inch: float => cssunit;
/***
* Returns a length in picas (1 pica = 12 points).
* https://developer.mozilla.org/en-US/docs/Web/CSS/length#pc
*/
let pc: float => cssunit;
/*** Returns a length of zero. */
let zero: cssunit;
/*** Used to specify an auto height/lenght. */
let auto: cssunit;
/* COLORS */
/***
* Returns a color from its red, green, and blue components.
* https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#rgb()
*/
let rgb: (int, int, int) => color;
/***
* Returns a color from its red, green, blue, and alpha (transparency) components.
* https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#rgba()
*/
let rgba: (int, int, int, float) => color;
/***
* Returns a color from its hue, saturation, and lightness components.
* https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#hsl()
*/
let hsl: (angle, int, int) => color;
/***
* Returns a color from its hue, saturation, lightness, and alpha components.
* https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#hsla()
*/
let hsla: (angle, int, int, float) => color;
/***
* Returns a color from its hexadecimal notation.
* https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#Syntax
*/
let hex: string => color;
/***
* The currentColor keyword represents the value of an element's color property.
* https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#currentColor
*/
let currentColor: color;
/***
* The transparent keyword represents a fully transparent color.
* https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#transparent
*/
let transparent: color;
let inherit_: color;
/* CSS Level 1 colors. */
let black: color;
let silver: color;
let gray: color;
let white: color;
let maroon: color;
let red: color;
let purple: color;
let fuchsia: color;
let green: color;
let lime: color;
let olive: color;
let yellow: color;
let navy: color;
let blue: color;
let teal: color;
let aqua: color;
/* CSS Level 2 (Revision 1) colors. */
let orange: color;
/* CSS Color Module Level 3. */
let aliceblue: color;
let antiquewhite: color;
let aquamarine: color;
let azure: color;
let beige: color;
let bisque: color;
let blanchedalmond: color;
let blueviolet: color;
let brown: color;
let burlywood: color;
let cadetblue: color;
let chartreuse: color;
let chocolate: color;
let coral: color;
let cornflowerblue: color;
let cornsilk: color;
let crimson: color;
let cyan: color; /*synonym of aqua*/
let darkblue: color;
let darkcyan: color;
let darkgoldenrod: color;
let darkgray: color;
let darkgreen: color;
let darkgrey: color;
let darkkhaki: color;
let darkmagenta: color;
let darkolivegreen: color;
let darkorange: color;
let darkorchid: color;
let darkred: color;
let darksalmon: color;
let darkseagreen: color;
let darkslateblue: color;
let darkslategray: color;
let darkslategrey: color;
let darkturquoise: color;
let darkviolet: color;
let deeppink: color;
let deepskyblue: color;
let dimgray: color;
let dimgrey: color;
let dodgerblue: color;
let firebrick: color;
let floralwhite: color;
let forestgreen: color;
let gainsboro: color;
let ghostwhite: color;
let gold: color;
let goldenrod: color;
let greenyellow: color;
let grey: color;
let honeydew: color;
let hotpink: color;
let indianred: color;
let indigo: color;
let ivory: color;
let khaki: color;
let lavender: color;
let lavenderblush: color;
let lawngreen: color;
let lemonchiffon: color;
let lightblue: color;
let lightcoral: color;
let lightcyan: color;
let lightgoldenrodyellow: color;
let lightgray: color;
let lightgreen: color;
let lightgrey: color;
let lightpink: color;
let lightsalmon: color;
let lightseagreen: color;
let lightskyblue: color;
let lightslategray: color;
let lightslategrey: color;
let lightsteelblue: color;
let lightyellow: color;
let limegreen: color;
let linen: color;
let magenta: color; /* synonym of fuchsia */
let mediumaquamarine: color;
let mediumblue: color;
let mediumorchid: color;
let mediumpurple: color;
let mediumseagreen: color;
let mediumslateblue: color;
let mediumspringgreen: color;
let mediumturquoise: color;
let mediumvioletred: color;
let midnightblue: color;
let mintcream: color;
let mistyrose: color;
let moccasin: color;
let navajowhite: color;
let oldlace: color;
let olivedrab: color;
let orangered: color;
let orchid: color;
let palegoldenrod: color;
let palegreen: color;
let paleturquoise: color;
let palevioletred: color;
let papayawhip: color;
let peachpuff: color;
let peru: color;
let pink: color;
let plum: color;
let powderblue: color;
let rosybrown: color;
let royalblue: color;
let saddlebrown: color;
let salmon: color;
let sandybrown: color;
let seagreen: color;
let seashell: color;
let sienna: color;
let skyblue: color;
let slateblue: color;
let slategray: color;
let slategrey: color;
let snow: color;
let springgreen: color;
let steelblue: color;
let tan: color;
let thistle: color;
let tomato: color;
let turquoise: color;
let violet: color;
let wheat: color;
let whitesmoke: color;
let yellowgreen: color;
/* CSS Color Module Level 4. */
let rebeccapurple: color;
/* CSS PROPERTIES */
/*** Gradient direction. */
type direction =
| Angle(angle)
| ToTop
| ToBottom
| ToLeft
| ToRight
| ToTopLeft
| ToTopRight
| ToBottomLeft
| ToBottomRight;
/*** Gradient vertical position. */
type verticalPosition =
| Top
| FromTop(cssunit)
| Center
| Bottom
| FromBottom(cssunit);
/*** Gradient horizontal position. */
type horizontalPosition =
| Left
| FromLeft(cssunit)
| Center
| Right
| FromRight(cssunit);
/*** Gradient shape. */
type shape =
| Circle
| Ellipse;
/*** Gradient extent. */
type extent =
| ClosestSide
| ClosestCorner
| FarthestSide
| FarthestCorner;
/*** Gradient color stop. */
type colorStop = (color, cssunit);
/***
* The <gradient> CSS data type is a special type of <image> that consists of a progressive
* transition between two or more colors.
* https://developer.mozilla.org/en-US/docs/Web/CSS/gradient
*/
type gradient;
/***
* The linear-gradient() CSS function creates an image consisting of a progressive
* transition between two or more colors along a straight line.
* https://developer.mozilla.org/en-US/docs/Web/CSS/linear-gradient
*/
let linearGradient: (direction, list(colorStop)) => gradient;
/***
* The radial-gradient() CSS function creates an image consisting of a progressive
* transition between two or more colors that radiate from an origin.
* https://developer.mozilla.org/en-US/docs/Web/CSS/radial-gradient
*/
let radialGradient:
(shape, verticalPosition, horizontalPosition, extent, list(colorStop)) =>
gradient;
/***
* The repeating-linear-gradient() CSS function creates an image consisting of repeating linear gradients.
* https://developer.mozilla.org/en-US/docs/Web/CSS/repeating-linear-gradient
*/
let repeatingLinearGradient: (direction, list(colorStop)) => gradient;
/***
* The repeating-radial-gradient() CSS function creates an image consisting of repeating gradients that radiate from an origin.
* https://developer.mozilla.org/en-US/docs/Web/CSS/repeating-radial-gradient
*/
let repeatingRadialGradient:
(shape, verticalPosition, horizontalPosition, extent, list(colorStop)) =>
gradient;
/***
* The <image> CSS data type represents a two-dimensional image.
* https://developer.mozilla.org/en-US/docs/Web/CSS/image
*/
type image =
| None
| Url(string)
| Gradient(gradient)
| Element(string);
/***
* The opacity CSS property specifies the level of transparency of an element.
* https://developer.mozilla.org/en-US/docs/Web/CSS/opacity
*/
let opacity: float => rule;
/*** Visibility values. */
type visibility =
| Visible
| Hidden
| Collapse;
/***
* The visibility CSS property can show or hide an element without affecting the layout of a document.
* https://developer.mozilla.org/en-US/docs/Web/CSS/visibility
*/
let visibility: visibility => rule;
type listStyleType =
| Disc
| Circle
| Square
| Decimal
| DecimalLeadingZero
| LowerRoman
| UpperRoman
| LowerGreek
| LowerLatin
| UpperLatin
| Armenian
| Georgian
| LowerAlpha
| UpperAlpha
| None;
/***
* The list-style-type CSS property specifies the appearance of a list item element.
* https://developer.mozilla.org/en-US/docs/Web/CSS/list-style-type
*/
let listStyleType: listStyleType => rule;
type listStyleImage =
| None
| Url(string);
/***
* The list-style-image property specifies an image to be used as the list item marker.
* https://developer.mozilla.org/en-US/docs/Web/CSS/list-style-image
*/
let listStyleImage: listStyleImage => rule;
type listStylePosition =
| Inside
| Outside;
/***
* The list-style-position property specifies the position of the marker box in the principal block box.
* https://developer.mozilla.org/en-US/docs/Web/CSS/list-style-position
*/
let listStylePopsition: listStylePosition => rule;
/* BACKGROUND */
/***
* The background-image CSS property sets one or more background images on an element.
* https://developer.mozilla.org/en-US/docs/Web/CSS/background-image
*/
let backgroundImage: image => rule;
/***
* Sets a gradient as a background-image.
*/
let backgroundGradient: gradient => rule;
type backgroundAttachment =
| Scroll
| Fixed
| Local
| Initial;
/***
* If a background-image is specified, the background-attachment CSS property
* determines whether that image's position is fixed within the viewport,
* or scrolls along with its containing block.
* https://developer.mozilla.org/en-US/docs/Web/CSS/background-attachment
*/
let backgroundAttachment: backgroundAttachment => rule;
/***
* The background-color CSS property sets the background color of an element,
* using a color value.
* https://developer.mozilla.org/en-US/docs/Web/CSS/background-color
*/
let backgroundColor: color => rule;
type backgroundSize =
| Cover
| Contain
| Width(cssunit)
| Height(cssunit)
| Custom(cssunit, cssunit);
/***
* The background-size CSS property specifies the size of an element's background image.
* https://developer.mozilla.org/en-US/docs/Web/CSS/background-size
*/
let backgroundSize: backgroundSize => rule;
type backgroundPosition =
| Top
| Bottom
| Left
| Right
| Center
| Custom(cssunit, cssunit);
/***
* The background-position CSS property sets the initial position for each defined
* background image, relative to the background position layer defined by
* background-origin.
* https://developer.mozilla.org/en-US/docs/Web/CSS/background-position
*/
let backgroundPosition: backgroundPosition => rule;
type backgroundRepeat =
| RepeatX
| RepeatY
| Repeat
| Space
| Round
| NoRepeat;
/***
* The background-repeat CSS property defines how background images are repeated.
* https://developer.mozilla.org/en-US/docs/Web/CSS/background-repeat
*/
let backgroundRepeat: backgroundRepeat => rule;
type background =
| None
| Color(color)
| Image(image)
| Gradient(gradient);
/***
* The CSS background shorthand property lets you adjust all of the available background
* style options at once.
* https://developer.mozilla.org/en-US/docs/Web/CSS/background
*/
let background: background => rule;
/* TEXT */
/***
* The color CSS property sets the foreground color value of an element's text content
* and text decorations.
* https://developer.mozilla.org/en-US/docs/Web/CSS/color
*/
let color: color => rule;
/***
* The font-family CSS property specifies a prioritized list of one or more font family
* names and/or generic family names for the selected element.
* https://developer.mozilla.org/en-US/docs/Web/CSS/font-family
*/
let fontFamily: string => rule;
/***
* The font-size CSS property specifies the size of the font.
* https://developer.mozilla.org/en-US/docs/Web/CSS/font-size
*/
let fontSize: cssunit => rule;
type fontStyle =
| Normal
| Italic
| Oblique
| Inherit;
/***
* The font-style CSS property specifies whether a font should be styled with a normal,
* italic, or oblique face from its font-family.
* https://developer.mozilla.org/en-US/docs/Web/CSS/font-style
*/
let fontStyle: fontStyle => rule;
type fontWeight =
| Normal
| Bold
| Lighter
| Bolder
| W100
| W200
| W300
| W400
| W500
| W600
| W700
| W800
| W900
| Inherit
| Initial
| Unset;
/***
* The font-weight CSS property specifies the weight (or boldness) of the font.
* https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight
*/
let fontWeight: fontWeight => rule;
type fontVariant =
| Normal
| SmallCaps;
/***
* The font-variant CSS property is a shorthand for the longhand properties
* font-variant-caps, font-variant-numeric, font-variant-alternates, font-variant-ligatures,
* and font-variant-east-asian.
* https://developer.mozilla.org/en-US/docs/Web/CSS/font-variant
*/
let fontVariant: fontVariant => rule;
type textDecoration =
| None
| Underline(color)
| UnderlineWavy(color);
/***
* The text-decoration CSS property specifies the appearance of decorative lines used on text.
* https://developer.mozilla.org/en-US/docs/Web/CSS/text-decoration
*/
[@deprecated "Use the individual textDecoration properties instead"]
let textDecoration: textDecoration => rule;
type textDecorationLineValue =
| Underline
| Overline
| LineThrough;
type textDecorationLine =
| None
| Values(list(textDecorationLineValue));
/***
* The text-decoration-line CSS property sets the kind of decoration that is used on text in an element.
* https://developer.mozilla.org/en-US/docs/Web/CSS/text-decoration-line
*/
let textDecorationLine: textDecorationLine => rule;
type textDecorationStyle =
| Solid
| Double
| Dotted
| Dashed
| Wavy;
/***
* The text-decoration-style CSS property sets the style of the lines specified by text-decoration-line.
* https://developer.mozilla.org/en-US/docs/Web/CSS/text-decoration-style
*/
let textDecorationStyle: textDecorationStyle => rule;
/***
* The text-decoration-color CSS property sets the color of the decorative additions to text that are specified by text-decoration-line.
* https://developer.mozilla.org/en-US/docs/Web/CSS/text-decoration-color