-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.default.css
More file actions
25 lines (18 loc) · 889 Bytes
/
Copy paththeme.default.css
File metadata and controls
25 lines (18 loc) · 889 Bytes
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
/* DEFAULT THEME */
/*
Basic design tokens and UI abstractions
Import it next to mcss.css
@import url(./framework/mcss.css);
@import url(./framework/theme.default.css);
mcss.css imports no theme itself; without this file every token is unset
and the page will look broken..
Don't edit the default theme.
To make your own theme, either duplicate/rename the 2 files below and
import theme instead of the default, or just override the bits you want
to change and imported that AFTER the defaults. There is `theme.starter.css`
to get you started if you want to go that road (recommended)).
*/
/* Defensive redundancy - Same layers as in mcss.css */
@layer base, elements, global, components, theme.default, theme.user, external, helpers;
@import url(./theme.default.tokens.css) layer(theme.default);
@import url(./theme.default.ui.css) layer(theme.default);