mirror of
https://github.com/swc-project/swc.git
synced 2024-12-22 05:01:42 +03:00
17 lines
380 B
CSS
17 lines
380 B
CSS
.div {
|
|
color: rgb("test");
|
|
|
|
color: rgb("test", 100, 100);
|
|
color: rgb(100, "test", 100);
|
|
color: rgb(100, 100, "test");
|
|
color: rgb(100, 100, 100, "test");
|
|
|
|
color: rgb("test" 100 100);
|
|
color: rgb(100 "test" 100);
|
|
color: rgb(100 100 "test");
|
|
color: rgb(100 100 100 / "test");
|
|
|
|
color: rgb(var(--red));
|
|
color: rgb(var(--red) var(--green));
|
|
}
|