git ssb

16+

Dominic / patchbay



Tree: 75fbecbdcbff096403ae2a6adeda63498269fd05

Files: 75fbecbdcbff096403ae2a6adeda63498269fd05 / main / styles / mixins.js

425 bytesRaw
1const nest = require('depnest')
2const { assign } = Object
3
4// this is either:
5// - wrong domain
6// - wrong gives
7//
8exports.gives = nest('styles.mixins')
9
10exports.create = function (api) {
11 return nest('styles.mixins', (sofar = {}) => {
12 return assign(sofar, { mainMixins })
13 })
14}
15
16const mainMixins = `
17_textPrimary {
18 color: #222
19}
20
21_textSubtle {
22 color: gray
23}
24
25_backgroundPrimary {
26 background-color: #50aadf
27}
28`
29
30

Built with git-ssb-web