-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyled.d.ts
49 lines (46 loc) · 925 Bytes
/
styled.d.ts
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
import 'styled-components';
export interface LagoonTheme {
colorScheme: 'dark' | 'light';
backgrounds: {
primary: string;
secondary: string;
tertiary: string;
modalOverlay: string;
input: string;
sidebar: string;
box: string;
table: string;
tableLight: string;
breadCrumbs: string;
breadCrumb: string;
content: string;
boxLabel: string;
copy: string;
};
texts: {
primary: string;
label: string;
navigation: string;
description: string;
accordionHeading: string;
};
highlights: {
selection: string;
};
borders: {
input: string;
box: string;
tableRow: string;
};
gradients: {
headerFooterGradient: string;
organizationsHeaderGradient: string;
};
skeleton: {
base: string;
highlight: string;
};
}
declare module 'styled-components' {
export interface DefaultTheme extends LagoonTheme {}
}