mirror of
https://github.com/swc-project/swc.git
synced 2025-01-07 06:06:41 +03:00
14 lines
314 B
CSS
14 lines
314 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");
|
|
}
|