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
use crate::ext::*;

// https://tailwindcss.com/docs/box-shadow
constant!(shadow);
constant!(shadow sm);
constant!(shadow md);
constant!(shadow lg);
constant!(shadow xl);
constant!(shadow 2xl);
constant!(shadow inner);
constant!(shadow none);

// https://tailwindcss.com/docs/box-shadow-color
colors!(shadow);

// https://tailwindcss.com/docs/opacity
constant!(opacity 0);
constant!(opacity 5);
constant!(opacity 10);
constant!(opacity 20);
constant!(opacity 25);
constant!(opacity 30);
constant!(opacity 40);
constant!(opacity 50);
constant!(opacity 60);
constant!(opacity 70);
constant!(opacity 75);
constant!(opacity 80);
constant!(opacity 90);
constant!(opacity 95);
constant!(opacity 100);

any!(opacity);

// https://tailwindcss.com/docs/mix-blend-mode
blend!(mix blend);
constant!(mix blend plus lighter);

// https://tailwindcss.com/docs/background-blend-mode
blend!(bg blend);