
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
@bassist/uno
Advanced tools
Custom configuration for UnoCSS by @chengpeiquan .
With npm(or yarn, or pnpm):
npm install -D unocss @bassist/uno
Yeah, this is a UnoCSS configuration, so you need to install UnoCSS at the same time.
Create a configuration file named uno.config.ts
(or .js
) in the root path of the project.
// uno.config.ts
import { defineConfig } from '@bassist/uno'
export default defineConfig()
See: Integrations to integrate UnoCSS into your frameworks.
You can overwrite or merge your custom configuration.
e.g. Specify a theme color as a Hex value.
// uno.config.ts
import { defineConfig } from '@bassist/uno'
export default defineConfig({
theme: {
colors: {
primary: '#065f46',
},
},
})
e.g. Specify a theme color as a CSS Variable.
// uno.config.ts
import { defineConfig } from '@bassist/uno'
export default defineConfig({
theme: {
colors: {
primary: 'var(--c-primary)',
},
},
})
e.g. Specify a theme color as a set of color palettes.
// uno.config.ts
import { defineConfig } from '@bassist/uno'
export default defineConfig({
theme: {
colors: {
primary: {
100: '#d1fae5',
200: '#a7f3d0',
300: '#6ee7b7',
400: '#34d399',
500: '#10b981',
600: '#059669',
700: '#047857',
800: '#065f46',
900: '#064e3b',
DEFAULT: '#065f46',
},
},
},
})
For more configuration, please refer to the documentation.
Based on the preset foundation of Tailwind CSS and Windi CSS , some commonly used default configurations are built in, you can refer to their documentation for detailed usage.
What are the commonly used default configurations? See: Source Code .
See: VS Code Extension
Please refer to CHANGELOG for details.
MIT License © 2023-PRESENT chengpeiquan
FAQs
Custom configuration for UnoCSS by @chengpeiquan .
We found that @bassist/uno demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.