@triptease/stylesheet 1.0.6
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/dist/_variables.css +108 -0
- package/dist/assets/fonts/Noe/noeDisplayRegular.ttf +0 -0
- package/dist/assets/fonts/Noe/noeDisplayRegular.woff +0 -0
- package/dist/assets/fonts/Noe/noeTextBook.ttf +0 -0
- package/dist/assets/fonts/Noe/noeTextBook.woff +0 -0
- package/dist/assets/icons/close.svg +3 -0
- package/dist/assets/icons/tick.svg +3 -0
- package/dist/base.css +870 -0
- package/dist/blocks.css +224 -0
- package/dist/compositions.css +99 -0
- package/dist/exceptions.css +9 -0
- package/dist/triptease.css +1172 -0
- package/dist/utilities.css +9 -0
- package/dist/web/tokens.json +3235 -0
- package/package.json +37 -0
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not edit directly, this file was auto-generated.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
:root {
|
|
6
|
+
--asset-font-noe-text-name: 'Noe Text';
|
|
7
|
+
--asset-font-noe-text-style: normal;
|
|
8
|
+
--asset-font-noe-text-weight: 400;
|
|
9
|
+
--asset-font-inter-name: Inter;
|
|
10
|
+
--asset-font-inter-style: normal;
|
|
11
|
+
--color-alert-100: #ffd6d6;
|
|
12
|
+
--color-alert-200: #ff9999;
|
|
13
|
+
--color-alert-300: #f93939;
|
|
14
|
+
--color-alert-400: #da0707;
|
|
15
|
+
--color-alert-500: #a80505;
|
|
16
|
+
--color-border-100: #e8eaec;
|
|
17
|
+
--color-border-200: #e0e1e5;
|
|
18
|
+
--color-border-300: #d7d9dd;
|
|
19
|
+
--color-border-400: #c5c8ce;
|
|
20
|
+
--color-border-500: #b7bbc2;
|
|
21
|
+
--color-text-100: #ffffff;
|
|
22
|
+
--color-text-200: #b5b0b5;
|
|
23
|
+
--color-text-300: #575157;
|
|
24
|
+
--color-text-400: #3b353b;
|
|
25
|
+
--color-text-500: #0d0c0d;
|
|
26
|
+
--color-text-inverted-100: #0d0c0d;
|
|
27
|
+
--color-text-inverted-200: #77758a;
|
|
28
|
+
--color-text-inverted-300: #9d9cab;
|
|
29
|
+
--color-text-inverted-400: #d3d3da;
|
|
30
|
+
--color-text-inverted-500: #ffffff;
|
|
31
|
+
--color-info-100: #e5f3ff;
|
|
32
|
+
--color-info-400: #0b99ff;
|
|
33
|
+
--color-primary-100: #f3f0fa;
|
|
34
|
+
--color-primary-200: #e8e3f6;
|
|
35
|
+
--color-primary-300: #cfc6ed;
|
|
36
|
+
--color-primary-400: #5e43c2;
|
|
37
|
+
--color-primary-500: #4d35a1;
|
|
38
|
+
--color-success-100: #e8f6e3;
|
|
39
|
+
--color-success-200: #c8e9bb;
|
|
40
|
+
--color-success-300: #a7db93;
|
|
41
|
+
--color-success-400: #86d06d;
|
|
42
|
+
--color-success-500: #65c345;
|
|
43
|
+
--color-surface-100: #ffffff;
|
|
44
|
+
--color-surface-200: #f9fafb;
|
|
45
|
+
--color-surface-300: #f1f2f4;
|
|
46
|
+
--color-surface-400: #e8eaec;
|
|
47
|
+
--color-surface-500: #e0e1e5;
|
|
48
|
+
--color-surface-600: #d7d9dd;
|
|
49
|
+
--color-surface-700: #75767e;
|
|
50
|
+
--color-surface-800: #1c1b27;
|
|
51
|
+
--color-surface-inverted-100: #1c1b27;
|
|
52
|
+
--color-surface-inverted-200: #3a384d;
|
|
53
|
+
--color-surface-inverted-300: #5b5974;
|
|
54
|
+
--color-surface-inverted-400: #7f7d95;
|
|
55
|
+
--color-surface-inverted-500: #acaabc;
|
|
56
|
+
--color-warning-100: #ffedd6;
|
|
57
|
+
--color-warning-200: #ffe0b8;
|
|
58
|
+
--color-warning-300: #ffce8f;
|
|
59
|
+
--color-warning-400: #ffb95e;
|
|
60
|
+
--color-warning-500: #ff9d1f;
|
|
61
|
+
--font-family-serif: 'Noe Text', 'PT Serif', serif;
|
|
62
|
+
--font-family-sans: 'Roboto', sans-serif;
|
|
63
|
+
--font-family-inter: 'Inter', 'Helvetica Neue', sans-serif;
|
|
64
|
+
--font-line-height-100: 1.4; /** Line height for small text */
|
|
65
|
+
--font-line-height-200: 1.5; /** Line height for body text */
|
|
66
|
+
--font-line-height-300: 1.3; /** Line height for heading 3 text */
|
|
67
|
+
--font-line-height-400: 1.4; /** Line height for heading 2 text */
|
|
68
|
+
--font-line-height-500: 1.3; /** Line height for heading 1 text */
|
|
69
|
+
--font-line-height-600: 1.5; /** Line height for display text */
|
|
70
|
+
--font-size-100: 0.875rem; /** Small text */
|
|
71
|
+
--font-size-200: 1rem; /** Body text */
|
|
72
|
+
--font-size-300: 1.125rem; /** Heading 3 text */
|
|
73
|
+
--font-size-400: 1.25rem; /** Heading 2 text */
|
|
74
|
+
--font-size-500: 1.5rem; /** Heading 1 text */
|
|
75
|
+
--font-size-600: 2rem; /** Display text */
|
|
76
|
+
--font-weight-light: 300;
|
|
77
|
+
--font-weight-normal: 400; /** This is called 'regular' in Figma. */
|
|
78
|
+
--font-weight-medium: 500;
|
|
79
|
+
--font-weight-semibold: 600;
|
|
80
|
+
--font-weight-bold: 700;
|
|
81
|
+
--space-scale-1: 0.5rem;
|
|
82
|
+
--space-scale-2: 1rem;
|
|
83
|
+
--space-scale-3: 1.5rem;
|
|
84
|
+
--space-scale-4: 2.5rem;
|
|
85
|
+
--space-scale-5: 3.5rem;
|
|
86
|
+
--space-scale-6: 4.5rem;
|
|
87
|
+
--space-scale-7: 5.5rem;
|
|
88
|
+
--space-scale-8: 6.5rem;
|
|
89
|
+
--space-scale-9: 7.5rem;
|
|
90
|
+
--space-scale-10: 8.5rem;
|
|
91
|
+
--space-scale-0-5: 0.25rem;
|
|
92
|
+
--space-scale-1-5: 0.75rem;
|
|
93
|
+
--space-scale-2-5: 1.25rem;
|
|
94
|
+
--space-scale-3-5: 2rem;
|
|
95
|
+
--space-scale-4-5: 3rem;
|
|
96
|
+
--space-scale-5-5: 4rem;
|
|
97
|
+
--space-scale-6-5: 5rem;
|
|
98
|
+
--space-scale-7-5: 6rem;
|
|
99
|
+
--space-scale-8-5: 7rem;
|
|
100
|
+
--space-scale-9-5: 8rem;
|
|
101
|
+
--border-radius: 0.5rem; /** Legacy border radius, use 'border-radius-100' instead */
|
|
102
|
+
--border-radius-50: 0.25rem; /** Small border radius for badges and other small visual components */
|
|
103
|
+
--border-radius-100: 0.5rem;
|
|
104
|
+
--border-radius-200: 1rem;
|
|
105
|
+
--box-shadow-sm: 0px 2px 5px rgba(0, 0, 0, 0.1);
|
|
106
|
+
--box-shadow-lg: 0px 2px 20px rgba(0, 0, 0, 0.1);
|
|
107
|
+
--box-shadow-lg-hover: 0px 10px 20px rgba(0, 0, 0, 0.2); /** Large box shadow used for hover effects */
|
|
108
|
+
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|