This repository has been archived by the owner on Jan 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy pathstyle-libraries.js
61 lines (59 loc) · 2.37 KB
/
style-libraries.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
module.exports = {
key: "style-libraries",
name: "Style Libraries",
description:
"Tools that assist you with applying CSS to your components or HTML.",
aka: ["css processors", "style utilities", "stylers"],
tags: [
{
name: "css processor",
description:
"Converts another language into CSS or modifies/improves CSS.",
},
{
name: "inline",
description:
"Works by setting styles in JavaScript rather than in a separate style file.",
},
{
name: "react",
description:
"Works only with React or mentions specifically that it works well with React.",
},
],
projects: [
{ url: "https://github.com/Khan/aphrodite" },
{ url: "https://github.com/adamterlson/cairn" },
{ url: "https://github.com/blakeembrey/react-free-style", tags: ["react"] },
{
url: "https://github.com/casesandberg/reactcss",
tags: ["inline", "react"],
},
{ url: "https://github.com/css-modules/css-modules", tags: ["react"] },
{ url: "https://github.com/FormidableLabs/radium", tags: ["inline"] },
{ url: "https://github.com/gajus/react-css-modules", tags: ["react"] },
{ url: "https://github.com/iamvdo/pleeease", tags: ["css processor"] },
{ url: "https://github.com/cssinjs/jss" },
{ url: "https://github.com/less/less.js", tags: ["css processor"] },
{ url: "https://github.com/maxguzenski/react-easy-style", tags: ["react"] },
{ url: "https://github.com/paypal/glamorous", tags: ["inline"] },
{ url: "https://github.com/jsxstyle/jsxstyle", tags: ["inline"] },
{ url: "https://github.com/postcss/postcss", tags: ["css processor"] },
{ url: "https://github.com/rofrischmann/fela" },
{ url: "https://github.com/rofrischmann/react-look", tags: ["react"] },
{ url: "https://github.com/sass/sass", tags: ["css processor"] },
{ url: "https://github.com/segmentio/myth", tags: ["css processor"] },
{
url: "https://github.com/styled-components/styled-components",
tags: ["react"],
},
{ url: "https://github.com/stylus/stylus", tags: ["css processor"] },
{
url: "https://github.com/unicorn-standard/react-pacomo",
tags: ["react"],
},
{ url: "https://github.com/rtsao/styletron" },
{ url: "https://github.com/zeit/styled-jsx", tags: ["react"] },
{ url: "https://github.com/emotion-js/emotion", tags: ["inline"] },
],
};