[csswg-drafts] Suggestion for Enhancing CSS Variable System Integration (#11247)

EKotb456 has just created a new issue for https://github.com/w3c/csswg-drafts:

== Suggestion for Enhancing CSS Variable System Integration ==
Dear Mr/Maam; 
I am aware that this field is designated for reporting issues, and I apologize for any inconvenience this may cause
I would be grateful if you could consider incorporating the new variable system syntax of CSS. As a group of web developers, we believe that integrating this SCSS variable system as a CSS feature:
`$color: red;
.test {
  $background: white;
  color: $color, black;
  background-color: $background, white;
}`
This change would greatly simplify our programming tasks and enhance efficiency compared to the current approach. I hope this change will be beneficial to all programmers in the world.

`:root {
 --color: red;
}
.test {
  --background: black;
  color: var(--color, black);
  background-color: var(--background, white);
}`

Furthermore, the lengthy process of compiling SCSS to CSS significantly impacts our productivity. 
I sincerely appreciate your great efforts and the assistance you have provided to us, and I would like to extend my heartfelt thanks.
Yours, 
Kotb456; 

Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/11247 using your GitHub account


-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config

Received on Wednesday, 20 November 2024 10:19:59 UTC