Skip to content

test for mixed components #1186

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
Mar 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion plugin-packs/postcss-preset-env/FEATURES.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ The `ID` listed is the key for PostCSS Preset Env configuration in your project.
| [<img alt="Baseline Status" src="https://cssdb.org/images/badges-baseline/place-properties.svg" height="18">](https://cssdb.org/#place-properties) | `place-properties` | Place Properties | [example](https://preset-env.cssdb.org/features/#place-properties) | [docs](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-place#readme) |
| [<img alt="Baseline Status" src="https://cssdb.org/images/badges-baseline/prefers-color-scheme-query.svg" height="18">](https://cssdb.org/#prefers-color-scheme-query) | `prefers-color-scheme-query` | `prefers-color-scheme` Media Query | [example](https://preset-env.cssdb.org/features/#prefers-color-scheme-query) | [docs](https://github.com/csstools/postcss-plugins/tree/main/plugins/css-prefers-color-scheme#readme) |
| [<img alt="Baseline Status" src="https://cssdb.org/images/badges-baseline/rebeccapurple-color.svg" height="18">](https://cssdb.org/#rebeccapurple-color) | `rebeccapurple-color` | `rebeccapurple` Color | [example](https://preset-env.cssdb.org/features/#rebeccapurple-color) | [docs](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-rebeccapurple#readme) |
| [<img alt="Baseline Status" src="https://cssdb.org/images/badges-baseline/relative-color-syntax.svg" height="18">](https://cssdb.org/#relative-color-syntax) | `relative-color-syntax` | Relative Color Syntax | [example](https://preset-env.cssdb.org/features/#relative-color-syntax) | [docs](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-relative-color-syntax#readme) |
| [<img alt="Baseline Status" src="https://cssdb.org/images/badges-baseline/relative-color-syntax.svg" height="18">](https://cssdb.org/#relative-color-syntax) | `relative-color-syntax` | Relative Colors | [example](https://preset-env.cssdb.org/features/#relative-color-syntax) | [docs](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-relative-color-syntax#readme) |
| [<img alt="Baseline Status" src="https://cssdb.org/images/badges-baseline/scope-pseudo-class.svg" height="18">](https://cssdb.org/#scope-pseudo-class) | `scope-pseudo-class` | `:scope()` Reference Element Pseudo-class | [example](https://preset-env.cssdb.org/features/#scope-pseudo-class) | [docs](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-scope-pseudo-class#readme) |
| [<img alt="Baseline Status" src="https://cssdb.org/images/badges-baseline/stepped-value-functions.svg" height="18">](https://cssdb.org/#stepped-value-functions) | `stepped-value-functions` | `round()`, `mod()` and `rem()` functions | [example](https://preset-env.cssdb.org/features/#stepped-value-functions) | [docs](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-stepped-value-functions#readme) |
| [<img alt="Baseline Status" src="https://cssdb.org/images/badges-baseline/system-ui-font-family.svg" height="18">](https://cssdb.org/#system-ui-font-family) | `system-ui-font-family` | `system-ui` Font Family | [example](https://preset-env.cssdb.org/features/#system-ui-font-family) | [docs](https://github.com/JLHwung/postcss-font-family-system-ui#readme) |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,7 @@
}
}

@supports (color: color(display-p3 0 0 0)) {
@supports (color: color(display-p3 0 0 0%)) {
.gradients-interpolation-method {
--background-image: linear-gradient(rgb(245, 137, 137) 0%, rgb(245, 140, 170), rgb(238, 146, 202), rgb(227, 155, 230), rgb(210, 166, 253), rgb(189, 181, 255), rgb(172, 194, 255), rgb(155, 205, 255), rgb(126, 217, 255), rgb(99, 228, 255), rgb(94, 237, 237) 100%);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,7 @@
}
}

@supports (color: color(display-p3 0 0 0)) {
@supports (color: color(display-p3 0 0 0%)) {
.gradients-interpolation-method {
--background-image: linear-gradient(rgb(245, 137, 137) 0%, rgb(245, 140, 170), rgb(238, 146, 202), rgb(227, 155, 230), rgb(210, 166, 253), rgb(189, 181, 255), rgb(172, 194, 255), rgb(155, 205, 255), rgb(126, 217, 255), rgb(99, 228, 255), rgb(94, 237, 237) 100%);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@
}
}

@supports (color: color(display-p3 0 0 0)) {
@supports (color: color(display-p3 0 0 0%)) {
.gradients-interpolation-method {
--background-image: linear-gradient(rgb(245, 137, 137) 0%, rgb(245, 140, 170), rgb(238, 146, 202), rgb(227, 155, 230), rgb(210, 166, 253), rgb(189, 181, 255), rgb(172, 194, 255), rgb(155, 205, 255), rgb(126, 217, 255), rgb(99, 228, 255), rgb(94, 237, 237) 100%);
}
Expand Down
2 changes: 1 addition & 1 deletion plugin-packs/postcss-preset-env/test/basic.ch38.expect.css
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@
}
}

@supports (color: color(display-p3 0 0 0)) {
@supports (color: color(display-p3 0 0 0%)) {
.gradients-interpolation-method {
--background-image: linear-gradient(rgb(245, 137, 137) 0%, rgb(245, 140, 170), rgb(238, 146, 202), rgb(227, 155, 230), rgb(210, 166, 253), rgb(189, 181, 255), rgb(172, 194, 255), rgb(155, 205, 255), rgb(126, 217, 255), rgb(99, 228, 255), rgb(94, 237, 237) 100%);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ h1.test-custom-selectors:not(.does-not-exist), h2.test-custom-selectors:not(.doe
}
}

@supports (color: color(display-p3 0 0 0)) {
@supports (color: color(display-p3 0 0 0%)) {
.gradients-interpolation-method {
--background-image: linear-gradient(rgb(245, 137, 137) 0%, rgb(245, 140, 170), rgb(238, 146, 202), rgb(227, 155, 230), rgb(210, 166, 253), rgb(189, 181, 255), rgb(172, 194, 255), rgb(155, 205, 255), rgb(126, 217, 255), rgb(99, 228, 255), rgb(94, 237, 237) 100%);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ h1.test-custom-selectors:not(.does-not-exist), h2.test-custom-selectors:not(.doe
}
}

@supports (color: color(display-p3 0 0 0)) {
@supports (color: color(display-p3 0 0 0%)) {
.gradients-interpolation-method {
--background-image: linear-gradient(rgb(245, 137, 137) 0%, rgb(245, 140, 170), rgb(238, 146, 202), rgb(227, 155, 230), rgb(210, 166, 253), rgb(189, 181, 255), rgb(172, 194, 255), rgb(155, 205, 255), rgb(126, 217, 255), rgb(99, 228, 255), rgb(94, 237, 237) 100%);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ h1.test-custom-selectors:not(.does-not-exist), h2.test-custom-selectors:not(.doe
}
}

@supports (color: color(display-p3 0 0 0)) {
@supports (color: color(display-p3 0 0 0%)) {
.gradients-interpolation-method {
--background-image: linear-gradient(rgb(245, 137, 137) 0%, rgb(245, 140, 170), rgb(238, 146, 202), rgb(227, 155, 230), rgb(210, 166, 253), rgb(189, 181, 255), rgb(172, 194, 255), rgb(155, 205, 255), rgb(126, 217, 255), rgb(99, 228, 255), rgb(94, 237, 237) 100%);
}
Expand Down
2 changes: 1 addition & 1 deletion plugin-packs/postcss-preset-env/test/basic.expect.css
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@
}
}

@supports (color: color(display-p3 0 0 0)) {
@supports (color: color(display-p3 0 0 0%)) {
.gradients-interpolation-method {
--background-image: linear-gradient(rgb(245, 137, 137) 0%, rgb(245, 140, 170), rgb(238, 146, 202), rgb(227, 155, 230), rgb(210, 166, 253), rgb(189, 181, 255), rgb(172, 194, 255), rgb(155, 205, 255), rgb(126, 217, 255), rgb(99, 228, 255), rgb(94, 237, 237) 100%);
}
Expand Down
2 changes: 1 addition & 1 deletion plugin-packs/postcss-preset-env/test/basic.ff49.expect.css
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@
}
}

@supports (color: color(display-p3 0 0 0)) {
@supports (color: color(display-p3 0 0 0%)) {
.gradients-interpolation-method {
--background-image: linear-gradient(rgb(245, 137, 137) 0%, rgb(245, 140, 170), rgb(238, 146, 202), rgb(227, 155, 230), rgb(210, 166, 253), rgb(189, 181, 255), rgb(172, 194, 255), rgb(155, 205, 255), rgb(126, 217, 255), rgb(99, 228, 255), rgb(94, 237, 237) 100%);
}
Expand Down
2 changes: 1 addition & 1 deletion plugin-packs/postcss-preset-env/test/basic.ff66.expect.css
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@
}
}

@supports (color: color(display-p3 0 0 0)) {
@supports (color: color(display-p3 0 0 0%)) {
.gradients-interpolation-method {
--background-image: linear-gradient(rgb(245, 137, 137) 0%, rgb(245, 140, 170), rgb(238, 146, 202), rgb(227, 155, 230), rgb(210, 166, 253), rgb(189, 181, 255), rgb(172, 194, 255), rgb(155, 205, 255), rgb(126, 217, 255), rgb(99, 228, 255), rgb(94, 237, 237) 100%);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
}

.test-custom-property-fallbacks {
--firebrick: lab(40% 56.6 39);
--firebrick: rgb(179, 35, 35);
}

.test-custom-properties {
Expand Down Expand Up @@ -95,8 +95,8 @@
}

.test-lab-function {
background-color: lab(40% 56.6 39);
color: lch(40% 68.8 34.5 / 50%);
background-color: rgb(179, 35, 35);
color: rgba(179, 34, 35, 0.5);
order: 17;
}

Expand Down Expand Up @@ -315,50 +315,50 @@
}

.oklab {
color-1: oklab(40% 0.001236 0.0039);
color-2: oklab(40% 0.1236 0.0039 / 1);
color-3: oklab(40% 0.1236 0.0039 / .5);
color-4: oklab(40% 0.1236 0.0039 / 100%);
color-5: oklab(40% 0.1236 0.0039 / 50%);
color-6: oklab(60% 0.1 0);
color-1: rgb(73, 71, 69);
color-2: rgb(121, 34, 67);
color-3: rgba(121, 34, 67, 0.5);
color-4: rgb(121, 34, 67);
color-5: rgba(121, 34, 67, 0.5);
color-6: rgb(177, 102, 126);
color-7: oklab(60% 0.1 0 foo);
color-8: oklab(40.101% 0.1147 0.0453);
color-9: oklab(59.686% 0.1009 0.1192);
color-10: oklab(65.125% -0.0320 0.1274);
color-11: oklab(66.016% -0.1084 0.1114);
color-12: oklab(72.322% -0.0465 -0.1150);
color-8: rgb(125, 35, 41);
color-9: rgb(198, 93, 7);
color-10: rgb(157, 147, 24);
color-11: rgb(104, 166, 57);
color-12: rgb(98, 172, 239);
}

.oklch {
color-1: oklch(40% 0.1268735435 34.568626);
color-2: oklch(40% 0.1268735435 34.568626 / 1);
color-3: oklch(40% 0.1268735435 34.568626 / .5);
color-4: oklch(40% 0.1268735435 34.568626 / 100%);
color-5: oklch(40% 0.1268735435 34.568626 / 50%);
color-6: oklch(60% 0.150 0);
color-1: rgb(126, 37, 15);
color-2: rgb(126, 37, 15);
color-3: rgba(126, 37, 15, 0.5);
color-4: rgb(126, 37, 15);
color-5: rgba(126, 37, 15, 0.5);
color-6: rgb(197, 84, 124);

color-7: rgb(0, 149, 131);
color-8: rgb(0, 149, 131);
color-9: rgb(0, 149, 131);
color-10: rgb(0, 149, 131);
color-11: rgb(0, 149, 131);

color-12: oklch(60% 0.1250 45);
color-13: oklch(60% 0.1250 45deg);
color-14: oklch(60% 0.1250 0.125turn);
color-15: oklch(60% 0.1250 50grad);
color-16: oklch(60% 0.1250 0.785398rad);
color-12: rgb(188, 101, 59);
color-13: rgb(188, 101, 59);
color-14: rgb(188, 101, 59);
color-15: rgb(188, 101, 59);
color-16: rgb(188, 101, 59);
color-17: oklch(60% 0.1250 0.785398unknown);
}

@media (color-gamut: p3) {
.oklch {

color-7: oklch(60% 0.1250 180);
color-8: oklch(60% 0.1250 180deg);
color-9: oklch(60% 0.1250 0.5turn);
color-10: oklch(60% 0.1250 200grad);
color-11: oklch(60% 0.1250 3.14159rad);
color-7: color(display-p3 0.19244 0.58461 0.51559);
color-8: color(display-p3 0.19244 0.58461 0.51559);
color-9: color(display-p3 0.19244 0.58461 0.51559);
color-10: color(display-p3 0.19244 0.58461 0.51559);
color-11: color(display-p3 0.19244 0.58461 0.51559);
}
}

Expand Down Expand Up @@ -480,10 +480,10 @@
background-image: radial-gradient(farthest-corner circle at 50% 115% in oklch, rgb(255, 157, 133) 0%, rgb(31, 251, 255) 100%);
}

@media (color-gamut: rec2020) {
@media (color-gamut: p3) {
.gradients-interpolation-method {

background-image: radial-gradient(farthest-corner circle at 50% 115% in oklch, oklch(80% .3 34) 0%, oklch(90% .3 200) 100%);
background-image: radial-gradient(farthest-corner circle at 50% 115% in oklch, color(display-p3 1 0.61669 0.51066) 0%, color(display-p3 0.46442 0.97081 1) 100%);
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,7 @@ h1.test-custom-selectors:not(.does-not-exist), h2.test-custom-selectors:not(.doe
}
}

@supports (color: color(display-p3 0 0 0)) {
@supports (color: color(display-p3 0 0 0%)) {
.gradients-interpolation-method {
--background-image: linear-gradient(rgb(245, 137, 137) 0%, rgb(245, 140, 170), rgb(238, 146, 202), rgb(227, 155, 230), rgb(210, 166, 253), rgb(189, 181, 255), rgb(172, 194, 255), rgb(155, 205, 255), rgb(126, 217, 255), rgb(99, 228, 255), rgb(94, 237, 237) 100%);
}
Expand Down
2 changes: 1 addition & 1 deletion plugin-packs/postcss-preset-env/test/basic.ie10.expect.css
Original file line number Diff line number Diff line change
Expand Up @@ -634,7 +634,7 @@
}
}

@supports (color: color(display-p3 0 0 0)) {
@supports (color: color(display-p3 0 0 0%)) {
.gradients-interpolation-method {
--background-image: linear-gradient(rgb(245, 137, 137) 0%, rgb(245, 140, 170), rgb(238, 146, 202), rgb(227, 155, 230), rgb(210, 166, 253), rgb(189, 181, 255), rgb(172, 194, 255), rgb(155, 205, 255), rgb(126, 217, 255), rgb(99, 228, 255), rgb(94, 237, 237) 100%);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,7 @@ h1.test-custom-selectors:not(.does-not-exist), h2.test-custom-selectors:not(.doe
}
}

@supports (color: color(display-p3 0 0 0)) {
@supports (color: color(display-p3 0 0 0%)) {
.gradients-interpolation-method {
--background-image: linear-gradient(rgb(245, 137, 137) 0%, rgb(245, 140, 170), rgb(238, 146, 202), rgb(227, 155, 230), rgb(210, 166, 253), rgb(189, 181, 255), rgb(172, 194, 255), rgb(155, 205, 255), rgb(126, 217, 255), rgb(99, 228, 255), rgb(94, 237, 237) 100%);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,7 @@ h1.test-custom-selectors:not(.does-not-exist), h2.test-custom-selectors:not(.doe
}
}

@supports (color: color(display-p3 0 0 0)) {
@supports (color: color(display-p3 0 0 0%)) {
.gradients-interpolation-method {
--background-image: linear-gradient(rgb(245, 137, 137) 0%, rgb(245, 140, 170), rgb(238, 146, 202), rgb(227, 155, 230), rgb(210, 166, 253), rgb(189, 181, 255), rgb(172, 194, 255), rgb(155, 205, 255), rgb(126, 217, 255), rgb(99, 228, 255), rgb(94, 237, 237) 100%);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -734,7 +734,7 @@ h1.test-custom-selectors:not(.does-not-exist), h2.test-custom-selectors:not(.doe
}
}

@supports (color: color(display-p3 0 0 0)) {
@supports (color: color(display-p3 0 0 0%)) {
.gradients-interpolation-method {
--background-image: linear-gradient(rgb(245, 137, 137) 0%, rgb(245, 140, 170), rgb(238, 146, 202), rgb(227, 155, 230), rgb(210, 166, 253), rgb(189, 181, 255), rgb(172, 194, 255), rgb(155, 205, 255), rgb(126, 217, 255), rgb(99, 228, 255), rgb(94, 237, 237) 100%);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
--firebrick: rgb(179, 35, 35);
}

@supports (color: lab(0% 0 0)) {
@supports (color: lab(0% 0 0%)) {
.test-custom-property-fallbacks {
--firebrick: lab(40% 56.6 39);
}
Expand Down Expand Up @@ -1002,7 +1002,7 @@ h1.test-custom-selectors:not(.does-not-exist), h2.test-custom-selectors:not(.doe
}
}

@supports (color: color(display-p3 0 0 0)) {
@supports (color: color(display-p3 0 0 0%)) {
.gradients-interpolation-method {
--background-image: linear-gradient(rgb(245, 137, 137) 0%, rgb(245, 140, 170), rgb(238, 146, 202), rgb(227, 155, 230), rgb(210, 166, 253), rgb(189, 181, 255), rgb(172, 194, 255), rgb(155, 205, 255), rgb(126, 217, 255), rgb(99, 228, 255), rgb(94, 237, 237) 100%);
}
Expand Down Expand Up @@ -1072,7 +1072,7 @@ h1.test-custom-selectors:not(.does-not-exist), h2.test-custom-selectors:not(.doe
--color: rgb(0, 249, 66);
}

@supports (color: color(display-p3 0 0 0)) {
@supports (color: color(display-p3 0 0 0%)) {
.out-of-gamut {
--color: rgb(0, 249, 66);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
}

.test-custom-property-fallbacks {
--firebrick: lab(40% 56.6 39);
--firebrick: rgb(179, 35, 35);
}

.test-custom-properties {
Expand Down Expand Up @@ -98,8 +98,8 @@
}

.test-lab-function {
background-color: lab(40% 56.6 39);
color: lch(40% 68.8 34.5 / 50%);
background-color: rgb(179, 35, 35);
color: rgba(179, 34, 35, 0.5);
order: 17;
}

Expand Down Expand Up @@ -487,7 +487,7 @@
}
}

@supports (color: color(display-p3 0 0 0)) {
@supports (color: color(display-p3 0 0 0%)) {
.gradients-interpolation-method {
--background-image: linear-gradient(rgb(245, 137, 137) 0%, rgb(245, 140, 170), rgb(238, 146, 202), rgb(227, 155, 230), rgb(210, 166, 253), rgb(189, 181, 255), rgb(172, 194, 255), rgb(155, 205, 255), rgb(126, 217, 255), rgb(99, 228, 255), rgb(94, 237, 237) 100%);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ h1.test-custom-selectors:not(.does-not-exist), h2.test-custom-selectors:not(.doe
}
}

@supports (color: color(display-p3 0 0 0)) {
@supports (color: color(display-p3 0 0 0%)) {
.gradients-interpolation-method {
--background-image: linear-gradient(rgb(245, 137, 137) 0%, rgb(245, 140, 170), rgb(238, 146, 202), rgb(227, 155, 230), rgb(210, 166, 253), rgb(189, 181, 255), rgb(172, 194, 255), rgb(155, 205, 255), rgb(126, 217, 255), rgb(99, 228, 255), rgb(94, 237, 237) 100%);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ h1.test-custom-selectors:not(.does-not-exist), h2.test-custom-selectors:not(.doe
}
}

@supports (color: color(display-p3 0 0 0)) {
@supports (color: color(display-p3 0 0 0%)) {
.gradients-interpolation-method {
--background-image: linear-gradient(rgb(245, 137, 137) 0%, rgb(245, 140, 170), rgb(238, 146, 202), rgb(227, 155, 230), rgb(210, 166, 253), rgb(189, 181, 255), rgb(172, 194, 255), rgb(155, 205, 255), rgb(126, 217, 255), rgb(99, 228, 255), rgb(94, 237, 237) 100%);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,7 @@ h1.test-custom-selectors:not(.does-not-exist), h2.test-custom-selectors:not(.doe
}
}

@supports (color: color(display-p3 0 0 0)) {
@supports (color: color(display-p3 0 0 0%)) {
.gradients-interpolation-method {
--background-image: linear-gradient(rgb(245, 137, 137) 0%, rgb(245, 140, 170), rgb(238, 146, 202), rgb(227, 155, 230), rgb(210, 166, 253), rgb(189, 181, 255), rgb(172, 194, 255), rgb(155, 205, 255), rgb(126, 217, 255), rgb(99, 228, 255), rgb(94, 237, 237) 100%);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@
}
}

@supports (color: color(display-p3 0 0 0)) {
@supports (color: color(display-p3 0 0 0%)) {
.gradients-interpolation-method {
--background-image: linear-gradient(rgb(245, 137, 137) 0%, rgb(245, 140, 170), rgb(238, 146, 202), rgb(227, 155, 230), rgb(210, 166, 253), rgb(189, 181, 255), rgb(172, 194, 255), rgb(155, 205, 255), rgb(126, 217, 255), rgb(99, 228, 255), rgb(94, 237, 237) 100%);
}
Expand Down
Loading