
Security News
Package Maintainers Call for Improvements to GitHub’s New npm Security Plan
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
@teamtailor/design-tokens
Advanced tools
Repository for converting Figma design tokens into readable format for Tailwind to be used in all Teamtailor apps.
yarn add -D @teamtailor/design-tokens
To use this inside your Tailwind config you should import the relevant config into tailwind.config.js
inside your project and override the theme conf for that setting.
// tailwind.config.js
const { tokenColors, themeColors } = require("@teamtailor/design-tokens")
module.exports = {
// ...
theme: {
colors: {
...tokenColors,
},
extend: {
backgroundColor: {
...themeColors.background,
},
textColor: {
...themeColors.text,
icon: {
...themeColors.icon,
},
},
borderColor: {
...themeColors.border,
},
},
},
};
Make sure to import the specific theme css files to be able to use functional color names.
Css files are located here and are apply by using .theme-light
or .theme-dark
, on a wrapper.
@teamtailor/design-tokens/src/output/theme-light.css';
@teamtailor/design-tokens/src/output/theme-dark.css';
Do those steps in order to change colors:
chore/figma-changes
(we will generate files depending on this branch name)tokens.json
FAQs
Teamtailor Design tokens
We found that @teamtailor/design-tokens demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 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
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.