ESCSS-SCSS takes the full potential of CSS and Tailwind in SCSS.
// _awaken.scss
$SM: 0px;
$MD: 0px;
$LG: 0px;
$XL: 0px;
$XXL: 0px;
-
Support: basic / arbitrary / media / dark mode utilities.
-
Performance: Some mixins require
\
,()
to reduce file size.#Demo { @include \-m-1\/2; // -m-1/2 @include m-1\/2; // m-1/2 @include m-(20px); // m-[20px] @include border-rose-500; // same @include border-x-( $color-rose-500 ); // border-x-rose-500, border-x/y/s/e/t/r/b/l-($color) @include bg-rose-500; // same @include bg-rose-500(25%); // bg-rose-500/[25%] @include bg-rose-500(0.25); // bg-rose-500/25 @include bg-(length 200px 100px); // bg-[length:200px_100px] // Media: sm、md、lg、xl、\2xl @include sm { color: black; @include bg-rose-500; } @include \2xl { color: black; @include bg-rose-500; } // Media: sm、md、lg、xl、\2xl @include sm { color: black; @include bg-rose-500; } @include \2xl { color: black; @include bg-rose-500; } // Dark Mode: Combines selector and media queries (unlike Tailwind) // - selector strategy: Add a '--dark' class to the html/body/top level, and toggle the class using JavaScript. // - media strategy: Automatically handled for you when using the @include dark. Only be triggered if the user has set their browser to dark mode. @include dark { color: black; @include bg-rose-500; } // Reset some tailwind variables. If you're feeling lazy, you can use it in every ID/Class (recommended). }
#Demo {
background: red;
@include bg-green-50; // override red
&:hover {
color: red;
}
// Reset some tailwind variables. If you're feeling lazy, you can use it in every ID/Class (recommended).
}
space-*
anddivide-*
need to comply with Breaking Change: Mixed Declarations to avoid conflicts.
// ✅
#Demo {
background: red;
@include space-x-8;
@include divide-x-8;
@include sm {
background: green;
@include divide-green-50;
}
}
// ❌
#Demo-1 {
@include space-x-8;
background: red; // warning
@include divide-x-8;
}
#Demo-2 {
background: red;
@include space-x-8;
@include divide-x-8;
@include sm {
@include divide-green-50;
background: green; // warning
}
}
#Demo-3 {
background: red;
@include bg-orange-500;
@include bg-amber-500;
@include sm {
background: green;
@include divide-green-50;
}
background: green; // warning
}
- Install 'SCSS IntelliSense' extension in VSCode
- sass >= v1.23.0
- vite (if >= v5.4.0, use sass-embedded)
npm add -D sass-embedded
yarn add -D sass-embedded
pnpm add -D sass-embedded
bun add -D sass-embedded
// vite.config.js
export default defineConfig({
css: {
preprocessorOptions: {
scss: {
api: "modern-compiler",
additionalData: `@use '/assets/styles/_awaken.scss' as *;`,
},
},
},
});
Each project has its own unique breakpoint, so setting 0 as the default value also means triggering AGPL-3.0, §13, I think it is reasonable to get paid for your own labor.
Yes. The original intention of the design was to use ESCSS-SCSS to assist the project's Sass & Tailwind transition to the latest version. I followed the specifications of Sass and Tailwind to ensure a smooth transition.
When used in conjunction with Tailwind, you gain the rapid development advantages of Tailwind while also benefiting from the encapsulation of SCSS and the timeless nature of native CSS. This achieves an excellent balance in maintainability and development efficiency.