lumina-sass 2.1.0 → 2.1.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lumina-sass",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
4
4
  "description": "Lumina Sass design tokens, mixins and public sub-modules (flexbox, color, mix).",
5
5
  "main": "src/_index.sass",
6
6
  "sass": "src/_index.sass",
@@ -0,0 +1,105 @@
1
+ @use 'sass:list'
2
+
3
+ // Font family collections used throughout the project.
4
+ // The lists are deliberately extensive to cover most common web‑safe and Google‑font families.
5
+
6
+ // Sans‑serif fonts – primary list referenced by `fonts.$sans-serif`.
7
+ $sans-serif: (
8
+ 'Roboto',
9
+ 'Helvetica',
10
+ 'Arial',
11
+ 'Work Sans',
12
+ 'Nunito',
13
+ 'Open Sans',
14
+ 'Lato',
15
+ 'Montserrat',
16
+ 'Source Sans Pro',
17
+ 'Inter',
18
+ 'Tahoma',
19
+ 'Verdana',
20
+ 'Gill Sans',
21
+ 'Futura',
22
+ 'Ubuntu',
23
+ 'Noto Sans',
24
+ 'Noto Sans KR',
25
+ 'Noto Sans JP',
26
+ 'Noto Sans SC',
27
+ 'Noto Sans Arabic',
28
+ 'Noto Sans Hebrew'
29
+ )
30
+
31
+ // Serif fonts – provided for completeness, may be used elsewhere.
32
+ $serif: (
33
+ 'Georgia',
34
+ 'Times New Roman',
35
+ 'Palatino',
36
+ 'Libre Baskerville',
37
+ 'Merriweather',
38
+ 'PT Serif',
39
+ 'Noto Serif',
40
+ 'Noto Serif KR',
41
+ 'Noto Serif JP',
42
+ 'Noto Serif SC'
43
+ )
44
+
45
+ // Monospace fonts – useful for code blocks and UI elements.
46
+ $mono: (
47
+ 'Courier New',
48
+ 'Consolas',
49
+ 'Ubuntu Mono',
50
+ 'Source Code Pro',
51
+ 'Fira Code',
52
+ 'Inconsolata',
53
+ 'Menlo',
54
+ 'Monaco',
55
+ 'Noto Mono'
56
+ )
57
+
58
+ // Map each font name to its generic family. This is used by `font-family-of()`.
59
+ $font-family: (
60
+ // Sans‑serif
61
+ 'Roboto': sans-serif,
62
+ 'Helvetica': sans-serif,
63
+ 'Arial': sans-serif,
64
+ 'Work Sans': sans-serif,
65
+ 'Nunito': sans-serif,
66
+ 'Open Sans': sans-serif,
67
+ 'Lato': sans-serif,
68
+ 'Montserrat': sans-serif,
69
+ 'Source Sans Pro': sans-serif,
70
+ 'Inter': sans-serif,
71
+ 'Tahoma': sans-serif,
72
+ 'Verdana': sans-serif,
73
+ 'Gill Sans': sans-serif,
74
+ 'Futura': sans-serif,
75
+ 'Ubuntu': sans-serif,
76
+ 'Noto Sans': sans-serif,
77
+ 'Noto Sans KR': sans-serif,
78
+ 'Noto Sans JP': sans-serif,
79
+ 'Noto Sans SC': sans-serif,
80
+ 'Noto Sans Arabic': sans-serif,
81
+ 'Noto Sans Hebrew': sans-serif,
82
+
83
+ // Serif
84
+ 'Georgia': serif,
85
+ 'Times New Roman': serif,
86
+ 'Palatino': serif,
87
+ 'Libre Baskerville': serif,
88
+ 'Merriweather': serif,
89
+ 'PT Serif': serif,
90
+ 'Noto Serif': serif,
91
+ 'Noto Serif KR': serif,
92
+ 'Noto Serif JP': serif,
93
+ 'Noto Serif SC': serif,
94
+
95
+ // Monospace
96
+ 'Courier New': monospace,
97
+ 'Consolas': monospace,
98
+ 'Ubuntu Mono': monospace,
99
+ 'Source Code Pro': monospace,
100
+ 'Fira Code': monospace,
101
+ 'Inconsolata': monospace,
102
+ 'Menlo': monospace,
103
+ 'Monaco': monospace,
104
+ 'Noto Mono': monospace
105
+ )
@@ -0,0 +1,27 @@
1
+ $booleanControls: ( 'radio', 'checkbox' )
2
+ $utility-inputs: ( 'range', 'color', 'hidden' )
3
+ $buttons: ( 'file', 'submit', 'reset', 'button')
4
+ $datetimePickers: ( 'date', 'time', 'week', 'month', 'datetime-local' )
5
+ $inputControls:( 'tel', 'url', 'text', 'email', 'search','number','password' )
6
+
7
+ $inputs: (
8
+ 'buttons': $buttons,
9
+ 'inputControls': $inputControls,
10
+ 'utility-inputs': $utility-inputs,
11
+ 'booleanControls': $booleanControls,
12
+ 'datetimePickers': $datetimePickers,
13
+
14
+ )
15
+
16
+ $default-input-props: (
17
+ border: rgb(204, 204, 204) solid 1px,
18
+ padding: 0.5rem 1rem,
19
+ "border-radius": 0.5rem,
20
+ "background-color": rgb(255, 255, 255),
21
+ "font-size": 1rem,
22
+ "line-height": 1.5,
23
+ "box-sizing": border-box,
24
+ outline: 1px solid rgb(0, 120, 215),
25
+ "focus-outline": rgb(0, 120, 215),
26
+ cursor: text
27
+ )