@times-design-system/theme-scss 1.1.1-alpha.831
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +193 -0
- package/dist/index.js +11 -0
- package/dist/palettes/_brand-dark.scss +166 -0
- package/dist/palettes/_brand-light.scss +166 -0
- package/dist/palettes/_business-dark.scss +148 -0
- package/dist/palettes/_business-light.scss +148 -0
- package/dist/palettes/_channels-dark.scss +279 -0
- package/dist/palettes/_channels-light.scss +279 -0
- package/dist/palettes/_comment-dark.scss +148 -0
- package/dist/palettes/_comment-light.scss +148 -0
- package/dist/palettes/_core-dark.scss +148 -0
- package/dist/palettes/_core-light.scss +148 -0
- package/dist/palettes/_culture-dark.scss +148 -0
- package/dist/palettes/_culture-light.scss +148 -0
- package/dist/palettes/_dataVisualisation-dark.scss +202 -0
- package/dist/palettes/_dataVisualisation-light.scss +202 -0
- package/dist/palettes/_home-dark.scss +148 -0
- package/dist/palettes/_home-light.scss +148 -0
- package/dist/palettes/_ireland-dark.scss +148 -0
- package/dist/palettes/_ireland-light.scss +148 -0
- package/dist/palettes/_lifeAndStyle-dark.scss +146 -0
- package/dist/palettes/_lifeAndStyle-light.scss +146 -0
- package/dist/palettes/_marketing-dark.scss +16 -0
- package/dist/palettes/_marketing-light.scss +16 -0
- package/dist/palettes/_money-dark.scss +148 -0
- package/dist/palettes/_money-light.scss +148 -0
- package/dist/palettes/_obituaries-dark.scss +148 -0
- package/dist/palettes/_obituaries-light.scss +148 -0
- package/dist/palettes/_puzzles-dark.scss +146 -0
- package/dist/palettes/_puzzles-light.scss +146 -0
- package/dist/palettes/_sport-dark.scss +148 -0
- package/dist/palettes/_sport-light.scss +148 -0
- package/dist/palettes/_travel-dark.scss +148 -0
- package/dist/palettes/_travel-light.scss +148 -0
- package/dist/palettes/_uk-dark.scss +148 -0
- package/dist/palettes/_uk-light.scss +148 -0
- package/dist/palettes/_world-dark.scss +148 -0
- package/dist/palettes/_world-light.scss +148 -0
- package/dist/tds-layout.scss +180 -0
- package/dist/tds-typography.scss +827 -0
- package/package.json +48 -0
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
$tds-surface-undercanvas: #f2f2f2;
|
|
2
|
+
$tds-surface-canvas: #ffffff;
|
|
3
|
+
$tds-surface-level-1: #ffffff;
|
|
4
|
+
$tds-surface-level-2: #ffffff;
|
|
5
|
+
$tds-surface-level-3: #ffffff;
|
|
6
|
+
$tds-surface-level-4: #ffffff;
|
|
7
|
+
$tds-surface-inverse: #000000;
|
|
8
|
+
$tds-surface-overlay: rgba(0, 0, 0, 0.45);
|
|
9
|
+
$tds-surface-channel-high: #21709c;
|
|
10
|
+
$tds-surface-channel-medium: #a2a2a2;
|
|
11
|
+
$tds-surface-channel-low: #ebebeb;
|
|
12
|
+
$tds-surface-static-dark: #000000;
|
|
13
|
+
$tds-surface-static-light: #ffffff;
|
|
14
|
+
$tds-text-primary: #1a1a1a;
|
|
15
|
+
$tds-text-secondary: #404040;
|
|
16
|
+
$tds-text-tertiary: #737373;
|
|
17
|
+
$tds-text-inverse-primary: #ffffff;
|
|
18
|
+
$tds-text-inverse-secondary: #8c8c8c;
|
|
19
|
+
$tds-text-channel-primary: #171717;
|
|
20
|
+
$tds-text-channel-secondary: #21709c;
|
|
21
|
+
$tds-text-static-dark: #000000;
|
|
22
|
+
$tds-text-static-light: #ffffff;
|
|
23
|
+
$tds-icon-primary: #1a1a1a;
|
|
24
|
+
$tds-icon-secondary: #404040;
|
|
25
|
+
$tds-icon-tertiary: #737373;
|
|
26
|
+
$tds-icon-inverse-primary: #ffffff;
|
|
27
|
+
$tds-icon-inverse-secondary: #8c8c8c;
|
|
28
|
+
$tds-icon-channel-primary: #21709c;
|
|
29
|
+
$tds-icon-channel-secondary: #252525;
|
|
30
|
+
$tds-border-primary: #a6a6a6;
|
|
31
|
+
$tds-border-secondary: #cccccc;
|
|
32
|
+
$tds-border-tertiary: #e6e6e6;
|
|
33
|
+
$tds-border-inverse-primary: #ffffff;
|
|
34
|
+
$tds-border-inverse-secondary: #8c8c8c;
|
|
35
|
+
$tds-border-channel-primary: #252525;
|
|
36
|
+
$tds-border-channel-secondary: #535353;
|
|
37
|
+
$tds-border-channel-tertiary: #a2a2a2;
|
|
38
|
+
$tds-border-elevation: #e6e6e6;
|
|
39
|
+
$tds-border-static-dark: #000000;
|
|
40
|
+
$tds-border-static-light: #ffffff;
|
|
41
|
+
$tds-input-fill-default: #ffffff;
|
|
42
|
+
$tds-input-fill-error: #fff9f9;
|
|
43
|
+
$tds-input-fill-hover: #e6e6e6;
|
|
44
|
+
$tds-input-fill-active: #d9d9d9;
|
|
45
|
+
$tds-input-fill-completed: #f4fafc;
|
|
46
|
+
$tds-input-fill-success: #f4fafc;
|
|
47
|
+
$tds-input-fill-warning: #f2fff6;
|
|
48
|
+
$tds-input-fill-info: #f0f0f0;
|
|
49
|
+
$tds-input-border-default: #333333;
|
|
50
|
+
$tds-input-border-error: #b30000;
|
|
51
|
+
$tds-input-border-hover: #404040;
|
|
52
|
+
$tds-input-border-active: #262626;
|
|
53
|
+
$tds-input-border-completed: #3db2c5;
|
|
54
|
+
$tds-input-border-success: #3db2c5;
|
|
55
|
+
$tds-input-border-warning: #26ff68;
|
|
56
|
+
$tds-input-border-info: #0f4aa2;
|
|
57
|
+
$tds-input-text-default: #737373;
|
|
58
|
+
$tds-input-text-error: #800000;
|
|
59
|
+
$tds-input-text-hover: #000000;
|
|
60
|
+
$tds-input-text-active: #000000;
|
|
61
|
+
$tds-input-text-completed: #1d5962;
|
|
62
|
+
$tds-input-text-success: #1d5962;
|
|
63
|
+
$tds-input-text-warning: #00992e;
|
|
64
|
+
$tds-input-text-info: #090909;
|
|
65
|
+
$tds-input-icon-default: #737373;
|
|
66
|
+
$tds-input-icon-hover: #000000;
|
|
67
|
+
$tds-input-icon-active: #000000;
|
|
68
|
+
$tds-input-icon-completed: #1d5962;
|
|
69
|
+
$tds-input-icon-error: #800000;
|
|
70
|
+
$tds-input-icon-success: #1d5962;
|
|
71
|
+
$tds-input-icon-warning: #00992e;
|
|
72
|
+
$tds-input-icon-info: #090909;
|
|
73
|
+
$tds-feedback-fill-error: #fff9f9;
|
|
74
|
+
$tds-feedback-fill-success: #f4fafc;
|
|
75
|
+
$tds-feedback-fill-warning: #f2fff6;
|
|
76
|
+
$tds-feedback-fill-info: #f0f0f0;
|
|
77
|
+
$tds-feedback-text-error: #800000;
|
|
78
|
+
$tds-feedback-text-success: #1d5962;
|
|
79
|
+
$tds-feedback-text-warning: #00992e;
|
|
80
|
+
$tds-feedback-text-info: #090909;
|
|
81
|
+
$tds-feedback-border-error: #b30000;
|
|
82
|
+
$tds-feedback-border-success: #3db2c5;
|
|
83
|
+
$tds-feedback-border-warning: #26ff68;
|
|
84
|
+
$tds-feedback-border-info: #0f4aa2;
|
|
85
|
+
$tds-feedback-icon-error: #800000;
|
|
86
|
+
$tds-feedback-icon-success: #1d5962;
|
|
87
|
+
$tds-feedback-icon-warning: #00992e;
|
|
88
|
+
$tds-feedback-icon-info: #090909;
|
|
89
|
+
$tds-interactive-primary-fill-default: #005c8a;
|
|
90
|
+
$tds-interactive-primary-fill-hover: #005c8a;
|
|
91
|
+
$tds-interactive-primary-fill-pressed: #005c8a;
|
|
92
|
+
$tds-interactive-primary-text-default: #000000;
|
|
93
|
+
$tds-interactive-primary-text-hover: #000000;
|
|
94
|
+
$tds-interactive-primary-text-pressed: #000000;
|
|
95
|
+
$tds-interactive-primary-icon-default: #000000;
|
|
96
|
+
$tds-interactive-primary-icon-hover: #000000;
|
|
97
|
+
$tds-interactive-primary-icon-pressed: #000000;
|
|
98
|
+
$tds-interactive-secondary-fill-default: #ffffff;
|
|
99
|
+
$tds-interactive-secondary-fill-hover: #ffffff;
|
|
100
|
+
$tds-interactive-secondary-fill-pressed: #ffffff;
|
|
101
|
+
$tds-interactive-secondary-border-default: #000000;
|
|
102
|
+
$tds-interactive-secondary-border-hover: #000000;
|
|
103
|
+
$tds-interactive-secondary-border-pressed: #000000;
|
|
104
|
+
$tds-interactive-secondary-text-default: #404040;
|
|
105
|
+
$tds-interactive-secondary-text-hover: #404040;
|
|
106
|
+
$tds-interactive-secondary-text-pressed: #404040;
|
|
107
|
+
$tds-interactive-secondary-icon-default: #404040;
|
|
108
|
+
$tds-interactive-secondary-icon-hover: #404040;
|
|
109
|
+
$tds-interactive-secondary-icon-pressed: #404040;
|
|
110
|
+
$tds-interactive-disabled-a: #d9d9d9;
|
|
111
|
+
$tds-interactive-disabled-b: #bfbfbf;
|
|
112
|
+
$tds-interactive-disabled-c: #a6a6a6;
|
|
113
|
+
$tds-interactive-link-primary-default: #005c8a;
|
|
114
|
+
$tds-interactive-link-primary-hover: #005c8a;
|
|
115
|
+
$tds-interactive-link-primary-pressed: #005c8a;
|
|
116
|
+
$tds-interactive-link-secondary-default: #737373;
|
|
117
|
+
$tds-interactive-link-secondary-hover: #737373;
|
|
118
|
+
$tds-interactive-link-secondary-pressed: #737373;
|
|
119
|
+
$tds-selection-background: #000000;
|
|
120
|
+
$tds-selection-text: #f2f2f2;
|
|
121
|
+
$tds-selected-fill-default: #000000;
|
|
122
|
+
$tds-selected-fill-hover: #000000;
|
|
123
|
+
$tds-selected-fill-pressed: #000000;
|
|
124
|
+
$tds-selected-text-default: #ffffff;
|
|
125
|
+
$tds-selected-text-hover: #ffffff;
|
|
126
|
+
$tds-selected-text-pressed: #ffffff;
|
|
127
|
+
$tds-selected-border-default: #000000;
|
|
128
|
+
$tds-selected-border-hover: #000000;
|
|
129
|
+
$tds-selected-border-pressed: #000000;
|
|
130
|
+
$tds-selected-icon-default: #ffffff;
|
|
131
|
+
$tds-selected-icon-hover: #ffffff;
|
|
132
|
+
$tds-selected-icon-pressed: #ffffff;
|
|
133
|
+
$tds-active-fill: #000000;
|
|
134
|
+
$tds-active-text: #ffffff;
|
|
135
|
+
$tds-active-border: #000000;
|
|
136
|
+
$tds-active-icon: #ffffff;
|
|
137
|
+
$tds-focus-border: #737373;
|
|
138
|
+
$tds-tag-filled-live-fill: #b30000;
|
|
139
|
+
$tds-tag-filled-live-text: #ffffff;
|
|
140
|
+
$tds-tag-filled-primary-fill: #21709c;
|
|
141
|
+
$tds-tag-filled-primary-text: #ffffff;
|
|
142
|
+
$tds-tag-filled-secondary-border: #f2f2f2;
|
|
143
|
+
$tds-tag-filled-secondary-fill: #f2f2f2;
|
|
144
|
+
$tds-tag-filled-secondary-text: #f2f2f2;
|
|
145
|
+
$tds-tag-inline-live-text: #b30000;
|
|
146
|
+
$tds-tag-inline-primary-text: #21709c;
|
|
147
|
+
$tds-tag-inline-secondary-text: #f2f2f2;
|
|
148
|
+
$tds-tag-channel-text: #535353;
|
|
@@ -0,0 +1,279 @@
|
|
|
1
|
+
$tds-brand-channels-ramp-home-50: #020202;
|
|
2
|
+
$tds-brand-channels-ramp-home-100: #040404;
|
|
3
|
+
$tds-brand-channels-ramp-home-150: #060606;
|
|
4
|
+
$tds-brand-channels-ramp-home-200: #080808;
|
|
5
|
+
$tds-brand-channels-ramp-home-250: #090909;
|
|
6
|
+
$tds-brand-channels-ramp-home-300: #0b0b0b;
|
|
7
|
+
$tds-brand-channels-ramp-home-350: #0d0d0d;
|
|
8
|
+
$tds-brand-channels-ramp-home-400: #0f0f0f;
|
|
9
|
+
$tds-brand-channels-ramp-home-450: #111111;
|
|
10
|
+
$tds-brand-channels-ramp-home-500: #135dcb;
|
|
11
|
+
$tds-brand-channels-ramp-home-550: #141414;
|
|
12
|
+
$tds-brand-channels-ramp-home-600: #151515;
|
|
13
|
+
$tds-brand-channels-ramp-home-650: #1f1f1f;
|
|
14
|
+
$tds-brand-channels-ramp-home-700: #2c2c2c;
|
|
15
|
+
$tds-brand-channels-ramp-home-750: #393939;
|
|
16
|
+
$tds-brand-channels-ramp-home-800: #474747;
|
|
17
|
+
$tds-brand-channels-ramp-home-850: #545454;
|
|
18
|
+
$tds-brand-channels-ramp-home-900: #616161;
|
|
19
|
+
$tds-brand-channels-ramp-home-950: #6e6e6e;
|
|
20
|
+
$tds-brand-channels-ramp-home-1000: #7b7b7b;
|
|
21
|
+
$tds-brand-channels-ramp-uk-50: #080808;
|
|
22
|
+
$tds-brand-channels-ramp-uk-100: #111111;
|
|
23
|
+
$tds-brand-channels-ramp-uk-150: #191919;
|
|
24
|
+
$tds-brand-channels-ramp-uk-200: #222222;
|
|
25
|
+
$tds-brand-channels-ramp-uk-250: #2a2a2a;
|
|
26
|
+
$tds-brand-channels-ramp-uk-300: #333333;
|
|
27
|
+
$tds-brand-channels-ramp-uk-350: #3b3b3b;
|
|
28
|
+
$tds-brand-channels-ramp-uk-400: #444444;
|
|
29
|
+
$tds-brand-channels-ramp-uk-450: #4c4c4c;
|
|
30
|
+
$tds-brand-channels-ramp-uk-500: #556d7f;
|
|
31
|
+
$tds-brand-channels-ramp-uk-550: #5b5b5b;
|
|
32
|
+
$tds-brand-channels-ramp-uk-600: #616161;
|
|
33
|
+
$tds-brand-channels-ramp-uk-650: #676767;
|
|
34
|
+
$tds-brand-channels-ramp-uk-700: #707070;
|
|
35
|
+
$tds-brand-channels-ramp-uk-750: #797979;
|
|
36
|
+
$tds-brand-channels-ramp-uk-800: #828282;
|
|
37
|
+
$tds-brand-channels-ramp-uk-850: #8b8b8b;
|
|
38
|
+
$tds-brand-channels-ramp-uk-900: #949494;
|
|
39
|
+
$tds-brand-channels-ramp-uk-950: #9d9d9d;
|
|
40
|
+
$tds-brand-channels-ramp-uk-1000: #a6a6a6;
|
|
41
|
+
$tds-brand-channels-ramp-world-50: #00000c;
|
|
42
|
+
$tds-brand-channels-ramp-world-100: #000019;
|
|
43
|
+
$tds-brand-channels-ramp-world-150: #000025;
|
|
44
|
+
$tds-brand-channels-ramp-world-200: #000032;
|
|
45
|
+
$tds-brand-channels-ramp-world-250: #00003e;
|
|
46
|
+
$tds-brand-channels-ramp-world-300: #00004a;
|
|
47
|
+
$tds-brand-channels-ramp-world-350: #000057;
|
|
48
|
+
$tds-brand-channels-ramp-world-400: #000063;
|
|
49
|
+
$tds-brand-channels-ramp-world-450: #000070;
|
|
50
|
+
$tds-brand-channels-ramp-world-500: #00787c;
|
|
51
|
+
$tds-brand-channels-ramp-world-550: #00008f;
|
|
52
|
+
$tds-brand-channels-ramp-world-600: #0000a3;
|
|
53
|
+
$tds-brand-channels-ramp-world-650: #0000b6;
|
|
54
|
+
$tds-brand-channels-ramp-world-700: #0000c9;
|
|
55
|
+
$tds-brand-channels-ramp-world-750: #0000dd;
|
|
56
|
+
$tds-brand-channels-ramp-world-800: #0000f0;
|
|
57
|
+
$tds-brand-channels-ramp-world-850: #0404ff;
|
|
58
|
+
$tds-brand-channels-ramp-world-900: #1717ff;
|
|
59
|
+
$tds-brand-channels-ramp-world-950: #2b2bff;
|
|
60
|
+
$tds-brand-channels-ramp-world-1000: #3e3eff;
|
|
61
|
+
$tds-brand-channels-ramp-business-50: #030303;
|
|
62
|
+
$tds-brand-channels-ramp-business-100: #070707;
|
|
63
|
+
$tds-brand-channels-ramp-business-150: #0a0a0a;
|
|
64
|
+
$tds-brand-channels-ramp-business-200: #0d0d0d;
|
|
65
|
+
$tds-brand-channels-ramp-business-250: #101010;
|
|
66
|
+
$tds-brand-channels-ramp-business-300: #141414;
|
|
67
|
+
$tds-brand-channels-ramp-business-350: #171717;
|
|
68
|
+
$tds-brand-channels-ramp-business-400: #1a1a1a;
|
|
69
|
+
$tds-brand-channels-ramp-business-450: #1e1e1e;
|
|
70
|
+
$tds-brand-channels-ramp-business-500: #21709c;
|
|
71
|
+
$tds-brand-channels-ramp-business-550: #242424;
|
|
72
|
+
$tds-brand-channels-ramp-business-600: #272727;
|
|
73
|
+
$tds-brand-channels-ramp-business-650: #292929;
|
|
74
|
+
$tds-brand-channels-ramp-business-700: #2c2c2c;
|
|
75
|
+
$tds-brand-channels-ramp-business-750: #383838;
|
|
76
|
+
$tds-brand-channels-ramp-business-800: #464646;
|
|
77
|
+
$tds-brand-channels-ramp-business-850: #535353;
|
|
78
|
+
$tds-brand-channels-ramp-business-900: #606060;
|
|
79
|
+
$tds-brand-channels-ramp-business-950: #6d6d6d;
|
|
80
|
+
$tds-brand-channels-ramp-business-1000: #7b7b7b;
|
|
81
|
+
$tds-brand-channels-ramp-money-50: #090e10;
|
|
82
|
+
$tds-brand-channels-ramp-money-100: #121b21;
|
|
83
|
+
$tds-brand-channels-ramp-money-150: #1a2931;
|
|
84
|
+
$tds-brand-channels-ramp-money-200: #233641;
|
|
85
|
+
$tds-brand-channels-ramp-money-250: #2c4452;
|
|
86
|
+
$tds-brand-channels-ramp-money-300: #355262;
|
|
87
|
+
$tds-brand-channels-ramp-money-350: #3e5f72;
|
|
88
|
+
$tds-brand-channels-ramp-money-400: #466d82;
|
|
89
|
+
$tds-brand-channels-ramp-money-450: #4f7a93;
|
|
90
|
+
$tds-brand-channels-ramp-money-500: #58a385;
|
|
91
|
+
$tds-brand-channels-ramp-money-550: #5f8ea9;
|
|
92
|
+
$tds-brand-channels-ramp-money-600: #6894ad;
|
|
93
|
+
$tds-brand-channels-ramp-money-650: #709ab2;
|
|
94
|
+
$tds-brand-channels-ramp-money-700: #78a0b6;
|
|
95
|
+
$tds-brand-channels-ramp-money-750: #81a6bb;
|
|
96
|
+
$tds-brand-channels-ramp-money-800: #89acbf;
|
|
97
|
+
$tds-brand-channels-ramp-money-850: #92b2c4;
|
|
98
|
+
$tds-brand-channels-ramp-money-900: #9ab8c9;
|
|
99
|
+
$tds-brand-channels-ramp-money-950: #a2becd;
|
|
100
|
+
$tds-brand-channels-ramp-money-1000: #abc4d2;
|
|
101
|
+
$tds-brand-channels-ramp-comment-50: #030303;
|
|
102
|
+
$tds-brand-channels-ramp-comment-100: #060606;
|
|
103
|
+
$tds-brand-channels-ramp-comment-150: #090909;
|
|
104
|
+
$tds-brand-channels-ramp-comment-200: #0c0c0c;
|
|
105
|
+
$tds-brand-channels-ramp-comment-250: #101010;
|
|
106
|
+
$tds-brand-channels-ramp-comment-300: #131313;
|
|
107
|
+
$tds-brand-channels-ramp-comment-350: #161616;
|
|
108
|
+
$tds-brand-channels-ramp-comment-400: #191919;
|
|
109
|
+
$tds-brand-channels-ramp-comment-450: #1c1c1c;
|
|
110
|
+
$tds-brand-channels-ramp-comment-500: #9b1f45;
|
|
111
|
+
$tds-brand-channels-ramp-comment-550: #222222;
|
|
112
|
+
$tds-brand-channels-ramp-comment-600: #242424;
|
|
113
|
+
$tds-brand-channels-ramp-comment-650: #272727;
|
|
114
|
+
$tds-brand-channels-ramp-comment-700: #2a2a2a;
|
|
115
|
+
$tds-brand-channels-ramp-comment-750: #353535;
|
|
116
|
+
$tds-brand-channels-ramp-comment-800: #424242;
|
|
117
|
+
$tds-brand-channels-ramp-comment-850: #505050;
|
|
118
|
+
$tds-brand-channels-ramp-comment-900: #5d5d5d;
|
|
119
|
+
$tds-brand-channels-ramp-comment-950: #6b6b6b;
|
|
120
|
+
$tds-brand-channels-ramp-comment-1000: #787878;
|
|
121
|
+
$tds-brand-channels-ramp-sport-50: #000b0c;
|
|
122
|
+
$tds-brand-channels-ramp-sport-100: #001718;
|
|
123
|
+
$tds-brand-channels-ramp-sport-150: #002225;
|
|
124
|
+
$tds-brand-channels-ramp-sport-200: #002e31;
|
|
125
|
+
$tds-brand-channels-ramp-sport-250: #00393d;
|
|
126
|
+
$tds-brand-channels-ramp-sport-300: #004549;
|
|
127
|
+
$tds-brand-channels-ramp-sport-350: #005055;
|
|
128
|
+
$tds-brand-channels-ramp-sport-400: #005c62;
|
|
129
|
+
$tds-brand-channels-ramp-sport-450: #00676e;
|
|
130
|
+
$tds-brand-channels-ramp-sport-500: #007a3f;
|
|
131
|
+
$tds-brand-channels-ramp-sport-550: #00858d;
|
|
132
|
+
$tds-brand-channels-ramp-sport-600: #0097a1;
|
|
133
|
+
$tds-brand-channels-ramp-sport-650: #00aab4;
|
|
134
|
+
$tds-brand-channels-ramp-sport-700: #00bcc8;
|
|
135
|
+
$tds-brand-channels-ramp-sport-750: #00cedb;
|
|
136
|
+
$tds-brand-channels-ramp-sport-800: #00e0ee;
|
|
137
|
+
$tds-brand-channels-ramp-sport-850: #03f0ff;
|
|
138
|
+
$tds-brand-channels-ramp-sport-900: #16f1ff;
|
|
139
|
+
$tds-brand-channels-ramp-sport-950: #2af2ff;
|
|
140
|
+
$tds-brand-channels-ramp-sport-1000: #3df4ff;
|
|
141
|
+
$tds-brand-channels-ramp-travel-50: #040404;
|
|
142
|
+
$tds-brand-channels-ramp-travel-100: #090909;
|
|
143
|
+
$tds-brand-channels-ramp-travel-150: #0d0d0d;
|
|
144
|
+
$tds-brand-channels-ramp-travel-200: #121212;
|
|
145
|
+
$tds-brand-channels-ramp-travel-250: #161616;
|
|
146
|
+
$tds-brand-channels-ramp-travel-300: #1a1a1a;
|
|
147
|
+
$tds-brand-channels-ramp-travel-350: #1f1f1f;
|
|
148
|
+
$tds-brand-channels-ramp-travel-400: #232323;
|
|
149
|
+
$tds-brand-channels-ramp-travel-450: #282828;
|
|
150
|
+
$tds-brand-channels-ramp-travel-500: #2c79ad;
|
|
151
|
+
$tds-brand-channels-ramp-travel-550: #2f2f2f;
|
|
152
|
+
$tds-brand-channels-ramp-travel-600: #323232;
|
|
153
|
+
$tds-brand-channels-ramp-travel-650: #383838;
|
|
154
|
+
$tds-brand-channels-ramp-travel-700: #444444;
|
|
155
|
+
$tds-brand-channels-ramp-travel-750: #505050;
|
|
156
|
+
$tds-brand-channels-ramp-travel-800: #5b5b5b;
|
|
157
|
+
$tds-brand-channels-ramp-travel-850: #676767;
|
|
158
|
+
$tds-brand-channels-ramp-travel-900: #737373;
|
|
159
|
+
$tds-brand-channels-ramp-travel-950: #7f7f7f;
|
|
160
|
+
$tds-brand-channels-ramp-travel-1000: #8a8a8a;
|
|
161
|
+
$tds-brand-channels-ramp-puzzle-50: #111804;
|
|
162
|
+
$tds-brand-channels-ramp-puzzle-100: #223007;
|
|
163
|
+
$tds-brand-channels-ramp-puzzle-150: #34470b;
|
|
164
|
+
$tds-brand-channels-ramp-puzzle-200: #455f0f;
|
|
165
|
+
$tds-brand-channels-ramp-puzzle-250: #567713;
|
|
166
|
+
$tds-brand-channels-ramp-puzzle-300: #678f16;
|
|
167
|
+
$tds-brand-channels-ramp-puzzle-350: #79a61a;
|
|
168
|
+
$tds-brand-channels-ramp-puzzle-400: #8abe1e;
|
|
169
|
+
$tds-brand-channels-ramp-puzzle-450: #9bd622;
|
|
170
|
+
$tds-brand-channels-ramp-puzzle-500: #df7334;
|
|
171
|
+
$tds-brand-channels-ramp-puzzle-550: #ace13e;
|
|
172
|
+
$tds-brand-channels-ramp-puzzle-600: #b0e248;
|
|
173
|
+
$tds-brand-channels-ramp-puzzle-650: #b4e452;
|
|
174
|
+
$tds-brand-channels-ramp-puzzle-700: #b9e55d;
|
|
175
|
+
$tds-brand-channels-ramp-puzzle-750: #bde767;
|
|
176
|
+
$tds-brand-channels-ramp-puzzle-800: #c2e971;
|
|
177
|
+
$tds-brand-channels-ramp-puzzle-850: #c6ea7b;
|
|
178
|
+
$tds-brand-channels-ramp-puzzle-900: #caec85;
|
|
179
|
+
$tds-brand-channels-ramp-puzzle-950: #cfed8f;
|
|
180
|
+
$tds-brand-channels-ramp-puzzle-1000: #d3ef9a;
|
|
181
|
+
$tds-brand-channels-ramp-culture-50: #030303;
|
|
182
|
+
$tds-brand-channels-ramp-culture-100: #070707;
|
|
183
|
+
$tds-brand-channels-ramp-culture-150: #0a0a0a;
|
|
184
|
+
$tds-brand-channels-ramp-culture-200: #0e0e0e;
|
|
185
|
+
$tds-brand-channels-ramp-culture-250: #121212;
|
|
186
|
+
$tds-brand-channels-ramp-culture-300: #151515;
|
|
187
|
+
$tds-brand-channels-ramp-culture-350: #181818;
|
|
188
|
+
$tds-brand-channels-ramp-culture-400: #1c1c1c;
|
|
189
|
+
$tds-brand-channels-ramp-culture-450: #202020;
|
|
190
|
+
$tds-brand-channels-ramp-culture-500: #942364;
|
|
191
|
+
$tds-brand-channels-ramp-culture-550: #262626;
|
|
192
|
+
$tds-brand-channels-ramp-culture-600: #292929;
|
|
193
|
+
$tds-brand-channels-ramp-culture-650: #2c2c2c;
|
|
194
|
+
$tds-brand-channels-ramp-culture-700: #303030;
|
|
195
|
+
$tds-brand-channels-ramp-culture-750: #393939;
|
|
196
|
+
$tds-brand-channels-ramp-culture-800: #464646;
|
|
197
|
+
$tds-brand-channels-ramp-culture-850: #535353;
|
|
198
|
+
$tds-brand-channels-ramp-culture-900: #606060;
|
|
199
|
+
$tds-brand-channels-ramp-culture-950: #6e6e6e;
|
|
200
|
+
$tds-brand-channels-ramp-culture-1000: #7b7b7b;
|
|
201
|
+
$tds-brand-channels-ramp-life-&-style-50: #02020d;
|
|
202
|
+
$tds-brand-channels-ramp-life-&-style-100: #04041b;
|
|
203
|
+
$tds-brand-channels-ramp-life-&-style-150: #060628;
|
|
204
|
+
$tds-brand-channels-ramp-life-&-style-200: #080836;
|
|
205
|
+
$tds-brand-channels-ramp-life-&-style-250: #0a0a43;
|
|
206
|
+
$tds-brand-channels-ramp-life-&-style-300: #0c0c50;
|
|
207
|
+
$tds-brand-channels-ramp-life-&-style-350: #0e0e5e;
|
|
208
|
+
$tds-brand-channels-ramp-life-&-style-400: #10106b;
|
|
209
|
+
$tds-brand-channels-ramp-life-&-style-450: #121279;
|
|
210
|
+
$tds-brand-channels-ramp-life-&-style-500: #149fb5;
|
|
211
|
+
$tds-brand-channels-ramp-life-&-style-550: #161690;
|
|
212
|
+
$tds-brand-channels-ramp-life-&-style-600: #17179b;
|
|
213
|
+
$tds-brand-channels-ramp-life-&-style-650: #1919a5;
|
|
214
|
+
$tds-brand-channels-ramp-life-&-style-700: #2020ad;
|
|
215
|
+
$tds-brand-channels-ramp-life-&-style-750: #2e2eb2;
|
|
216
|
+
$tds-brand-channels-ramp-life-&-style-800: #3c3cb7;
|
|
217
|
+
$tds-brand-channels-ramp-life-&-style-850: #4a4abc;
|
|
218
|
+
$tds-brand-channels-ramp-life-&-style-900: #5858c1;
|
|
219
|
+
$tds-brand-channels-ramp-life-&-style-950: #6666c6;
|
|
220
|
+
$tds-brand-channels-ramp-life-&-style-1000: #7474cb;
|
|
221
|
+
$tds-brand-channels-ramp-obituaries-50: #0a0b0b;
|
|
222
|
+
$tds-brand-channels-ramp-obituaries-100: #151516;
|
|
223
|
+
$tds-brand-channels-ramp-obituaries-150: #1f2020;
|
|
224
|
+
$tds-brand-channels-ramp-obituaries-200: #2a2a2b;
|
|
225
|
+
$tds-brand-channels-ramp-obituaries-250: #353536;
|
|
226
|
+
$tds-brand-channels-ramp-obituaries-300: #3f4041;
|
|
227
|
+
$tds-brand-channels-ramp-obituaries-350: #494a4c;
|
|
228
|
+
$tds-brand-channels-ramp-obituaries-400: #545556;
|
|
229
|
+
$tds-brand-channels-ramp-obituaries-450: #5e6061;
|
|
230
|
+
$tds-brand-channels-ramp-obituaries-500: #6c6c69;
|
|
231
|
+
$tds-brand-channels-ramp-obituaries-550: #707274;
|
|
232
|
+
$tds-brand-channels-ramp-obituaries-600: #78797b;
|
|
233
|
+
$tds-brand-channels-ramp-obituaries-650: #7f8083;
|
|
234
|
+
$tds-brand-channels-ramp-obituaries-700: #87888a;
|
|
235
|
+
$tds-brand-channels-ramp-obituaries-750: #8e8f91;
|
|
236
|
+
$tds-brand-channels-ramp-obituaries-800: #969799;
|
|
237
|
+
$tds-brand-channels-ramp-obituaries-850: #9d9ea0;
|
|
238
|
+
$tds-brand-channels-ramp-obituaries-900: #a5a6a7;
|
|
239
|
+
$tds-brand-channels-ramp-obituaries-950: #acadae;
|
|
240
|
+
$tds-brand-channels-ramp-obituaries-1000: #b4b5b6;
|
|
241
|
+
$tds-brand-channels-ramp-ireland-50: #020206;
|
|
242
|
+
$tds-brand-channels-ramp-ireland-100: #03030c;
|
|
243
|
+
$tds-brand-channels-ramp-ireland-150: #040412;
|
|
244
|
+
$tds-brand-channels-ramp-ireland-200: #060618;
|
|
245
|
+
$tds-brand-channels-ramp-ireland-250: #07071f;
|
|
246
|
+
$tds-brand-channels-ramp-ireland-300: #090925;
|
|
247
|
+
$tds-brand-channels-ramp-ireland-350: #0a0a2b;
|
|
248
|
+
$tds-brand-channels-ramp-ireland-400: #0c0c31;
|
|
249
|
+
$tds-brand-channels-ramp-ireland-450: #0d0d37;
|
|
250
|
+
$tds-brand-channels-ramp-ireland-500: #0f3d38;
|
|
251
|
+
$tds-brand-channels-ramp-ireland-550: #13134e;
|
|
252
|
+
$tds-brand-channels-ramp-ireland-600: #181860;
|
|
253
|
+
$tds-brand-channels-ramp-ireland-650: #1c1c71;
|
|
254
|
+
$tds-brand-channels-ramp-ireland-700: #202083;
|
|
255
|
+
$tds-brand-channels-ramp-ireland-750: #242494;
|
|
256
|
+
$tds-brand-channels-ramp-ireland-800: #2929a6;
|
|
257
|
+
$tds-brand-channels-ramp-ireland-850: #2d2db7;
|
|
258
|
+
$tds-brand-channels-ramp-ireland-900: #3131c8;
|
|
259
|
+
$tds-brand-channels-ramp-ireland-950: #3f3fd0;
|
|
260
|
+
$tds-brand-channels-ramp-ireland-1000: #5151d4;
|
|
261
|
+
$tds-brand-channels-base-puzzle: #df7334;
|
|
262
|
+
$tds-brand-channels-base-culture: #942364;
|
|
263
|
+
$tds-brand-channels-base-obituaries: #6c6c69;
|
|
264
|
+
$tds-brand-channels-base-ireland: #0f3d38;
|
|
265
|
+
$tds-brand-channels-base-life-&-style: #149fb5;
|
|
266
|
+
$tds-brand-channels-base-travel: #2c79ad;
|
|
267
|
+
$tds-brand-channels-base-sport: #007a3f;
|
|
268
|
+
$tds-brand-channels-base-business: #21709c;
|
|
269
|
+
$tds-brand-channels-base-comment: #9b1f45;
|
|
270
|
+
$tds-brand-channels-base-money: #58a385;
|
|
271
|
+
$tds-brand-channels-base-world: #00787c;
|
|
272
|
+
$tds-brand-channels-base-home: #135dcb;
|
|
273
|
+
$tds-brand-channels-base-uk: #556d7f;
|
|
274
|
+
$tds-surface-static-dark: #000000;
|
|
275
|
+
$tds-surface-static-light: #ffffff;
|
|
276
|
+
$tds-text-static-dark: #000000;
|
|
277
|
+
$tds-text-static-light: #ffffff;
|
|
278
|
+
$tds-border-static-dark: #000000;
|
|
279
|
+
$tds-border-static-light: #ffffff;
|