@@ -7,8 +7,14 @@ module Make = (
7
7
) => {
8
8
include CssJs
9
9
10
- let zIndex = x => Css_Js_Core .zIndex (x -> CustomZIndex .zIndex )
10
+ module TokenizedShadow = {
11
+ let box = (~x = ?, ~y = ?, ~blur = ?, ~spread = ?, ~inset = ?, color ) =>
12
+ CssJs .Shadow .box (~x ?, ~y ?, ~blur ?, ~spread ?, ~inset ?, color )
13
+
14
+ let text = (~x = ?, ~y = ?, ~blur = ?, color ) => CssJs .Shadow .text (~x ?, ~y ?, ~blur ?, color )
15
+ }
11
16
17
+ let zIndex = x => Css_Js_Core .zIndex (x -> CustomZIndex .zIndex )
12
18
/*
13
19
* Colors
14
20
*/
@@ -17,6 +23,15 @@ module Make = (
17
23
18
24
let border = (length , style , color ) =>
19
25
Css_Js_Core .border (length , style , color -> CustomColors .colors )
26
+ let borderBottom = (length , style , color ) =>
27
+ Css_Js_Core .borderBottom (length , style , color -> CustomColors .colors )
28
+ let borderTop = (length , style , color ) =>
29
+ Css_Js_Core .borderTop (length , style , color -> CustomColors .colors )
30
+ let borderLeft = (length , style , color ) =>
31
+ Css_Js_Core .borderLeft (length , style , color -> CustomColors .colors )
32
+ let borderRight = (length , style , color ) =>
33
+ Css_Js_Core .borderRight (length , style , color -> CustomColors .colors )
34
+
20
35
let borderColor = x => Css_Js_Core .borderColor (x -> CustomColors .colors )
21
36
let borderTopColor = x => Css_Js_Core .borderTopColor (x -> CustomColors .colors )
22
37
let borderBottomColor = x => Css_Js_Core .borderBottomColor (x -> CustomColors .colors )
0 commit comments