fscss 1.1.20 → 1.1.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -1
- package/bin/fscss.js +0 -0
- package/e/exec.js +1696 -2
- package/e/xfscss.js +1721 -2
- package/exec.js +1696 -2
- package/lib/functions/all.js +88 -152
- package/package.json +6 -6
- package/xfscss.js +1720 -1
package/README.md
CHANGED
|
@@ -115,7 +115,16 @@ https://github.com/fscss-ttr/fscss-modules/
|
|
|
115
115
|
- `@event` → conditional styling
|
|
116
116
|
- `exec()` → debugging tools
|
|
117
117
|
|
|
118
|
-
|
|
118
|
+
```css
|
|
119
|
+
@event theme(mode){
|
|
120
|
+
if mode:dark{
|
|
121
|
+
return: #1a1a1a;
|
|
122
|
+
}
|
|
123
|
+
el{
|
|
124
|
+
return: #f8f8f8;
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
```
|
|
119
128
|
|
|
120
129
|
---
|
|
121
130
|
|
package/bin/fscss.js
CHANGED
|
File without changes
|