SASs
Sass is a CSS preprocessor language that extends CSS with features such as variables, nesting, mixins, and functions, and compiles to standard CSS. It was created by Hampton Catlin and developed by Natalie Weizenbaum, with the first release in 2006. The name stands for Syntactically Awesome Style Sheets. Sass comes in two syntaxes: SCSS, which uses braces and semicolons and resembles CSS, and the original indented Sass syntax, which relies on indentation rather than braces. Both syntaxes compile to CSS.
Key features include variables for reusable values, nesting of selectors to reflect the HTML structure, mixins
Sass code is transformed by a compiler into CSS. The official implementation in modern tooling is Dart