
Security News
RubyGems Adds Cooldown Feature to Bundler for Newly Published Gems
RubyGems and Bundler 4.0.13 introduced an opt-in cooldown feature that delays newly published gems during dependency resolution.
@wearesyntesa/karbit-ui
Advanced tools
Brutalist design system built on Lit with Chakra UI-like API and Tailwind CSS
A karbit-peeps web component library built on Lit v3. Ships with React wrappers and works with Vue, Svelte, and vanilla HTML out of the box.
Components render in the Light DOM, so Tailwind CSS classes apply directly without Shadow DOM barriers.
This project is under active development.
npm install @wearesyntesa/karbit-ui
KarbitUI outputs Tailwind utility classes. Your project must have Tailwind CSS configured.
Add the KarbitUI preset to your tailwind.config.ts:
import type { Config } from 'tailwindcss'
import karbitPreset from '@wearesyntesa/karbit-ui/tailwind.config'
const config: Config = {
presets: [karbitPreset],
content: ['./src/**/*.{html,js,ts,jsx,tsx}', './node_modules/@wearesyntesa/karbit-ui/dist/**/*.js'],
}
export default config
The preset registers brutal box shadows, kb-* color tokens, IBM Plex Mono as the default mono font, and 0px border radius defaults.
<script type="module">
import '@wearesyntesa/karbit-ui'
</script>
<kb-button variant="solid" size="lg">EXECUTE</kb-button>
<kb-input placeholder="Enter value" variant="outline"></kb-input>
import { Button, Input, Stack } from '@wearesyntesa/karbit-ui/react'
function App() {
return (
<Stack direction="vertical" gap="4">
<Input placeholder="Username" variant="outline" onKbChange={(e) => console.log(e.detail.value)} />
<Button variant="solid" size="md">
SUBMIT
</Button>
</Stack>
)
}
All components inherit style props from the base element. These map directly to Tailwind utility classes.
<kb-box p="4" m="2" bg="blue-500" color="white" w="full" shadow="brutal"> Content </kb-box>
p="4" produces p-4, bg="red-500" produces bg-red-500, and so on. Props cover spacing, color, sizing, border, layout, flex, grid, and typography.
Full component API reference and live examples are available at the documentation site.
pnpm docs:build # build the documentation site
pnpm docs:serve # preview the built site locally
pnpm install
pnpm build # typecheck + vite library build
pnpm typecheck # tsc --noEmit
pnpm dev # vite build in watch mode
pnpm example:react # run the React sample app
pnpm example:vue # run the Vue sample app
pnpm example:svelte # run the Svelte sample app
MIT
FAQs
Brutalist design system built on Lit with Chakra UI-like API and Tailwind CSS
We found that @wearesyntesa/karbit-ui demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers 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
RubyGems and Bundler 4.0.13 introduced an opt-in cooldown feature that delays newly published gems during dependency resolution.

Security News
pnpm 11.5 now recognizes npm staged publish approvals in release metadata, preventing those releases from being mistaken for lower-trust package publishes.

Security News
Federal audit finds NIST lacked a plan to clear the NVD backlog, wasted funds on duplicate work, and delayed use of CISA data.