Skip to content
This repository has been archived by the owner on Jul 2, 2024. It is now read-only.

on variables sharing #8

Open
thien-do opened this issue Aug 28, 2019 · 0 comments
Open

on variables sharing #8

thien-do opened this issue Aug 28, 2019 · 0 comments

Comments

@thien-do
Copy link
Contributor

Don't use @apply. They are unnecessarily complicated and can be solved easier with native solution: CSS variables. For example:

:root {
  --color-red: #123456
}

to use in tailwinds:

red: "var(--color-red)",

to use outside of tailwind:

body {
  color: var(--color-red);
}
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant