thenoseman / lit-css

Build Plugins for CSS tagged-template-literals

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Am Yisrael Chai - עם ישראל חי

lit-CSS Plugins

Build plugins to import css files as JavaScript tagged-template literal objects.

The "Lit" stands for "Literal"

You can use it to import CSS for various libraries like lit-element, @microsoft/fast-element, or others.

Do I Need This?

No. These are optional packages whose sole purpose is to make it easier to write CSS-in-CSS. You can just as easily write your CSS in some 'styles.css.js' modules a la:

import { css } from 'lit';
export default css`:host { display: block; }`;

And this may actually be preferred.

Hopefully this package will become quickly obsolete when the CSS Modules Proposal (or something like it) is accepted and implemented.

In the mean time, enjoy importing your CSS into your component files.

About

Build Plugins for CSS tagged-template-literals

License:MIT License


Languages

Language:JavaScript 51.8%Language:TypeScript 47.5%Language:CSS 0.5%Language:SCSS 0.2%