Files: c24aab4d406daa99a57712bf37fc9f5d7c2971ff / main / styles / mixins.js
519 bytesRaw
1 | const nest = require('depnest') |
2 | const { assign } = Object |
3 | |
4 | // this is either: |
5 | // - wrong domain |
6 | // - wrong gives |
7 | // |
8 | exports.gives = nest('styles.mixins') |
9 | |
10 | exports.create = function (api) { |
11 | return nest('styles.mixins', (sofar = {}) => { |
12 | return assign(sofar, { mainMixins }) |
13 | }) |
14 | } |
15 | |
16 | const mainMixins = ` |
17 | _textPrimary { |
18 | color: #222 |
19 | } |
20 | |
21 | _textSubtle { |
22 | color: gray |
23 | } |
24 | |
25 | _backgroundPrimary { |
26 | background-color: #50aadf |
27 | } |
28 | |
29 | _avatarLarge { |
30 | width: 56px |
31 | height: 56px |
32 | } |
33 | |
34 | _avatarSmall { |
35 | width: 32px |
36 | height: 32px |
37 | } |
38 | ` |
39 | |
40 |
Built with git-ssb-web