Files: 60e60ca4a797710df7dce064463d8f89346ea260 / modules_core / style / mixins.js
281 bytesRaw
1 | |
2 | const mixins = ` |
3 | $textPrimary { |
4 | color: #222 |
5 | } |
6 | |
7 | $textSubtle { |
8 | color: gray |
9 | } |
10 | |
11 | $backgroundPrimary { |
12 | background-color: #50aadf |
13 | } |
14 | ` |
15 | |
16 | module.exports = { |
17 | gives: { |
18 | mcss: true |
19 | }, |
20 | create: function (api) { |
21 | return { |
22 | mcss: () => mixins |
23 | } |
24 | } |
25 | } |
26 | |
27 |
Built with git-ssb-web