@takeoff-design/tokens 0.1.0-beta.0

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/LICENSE ADDED
@@ -0,0 +1,17 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ https://www.apache.org/licenses/
4
+
5
+ Copyright 2026 Turkish Technology
6
+
7
+ Licensed under the Apache License, Version 2.0 (the "License");
8
+ you may not use this file except in compliance with the License.
9
+ You may obtain a copy of the License at
10
+
11
+ https://www.apache.org/licenses/LICENSE-2.0
12
+
13
+ Unless required by applicable law or agreed to in writing, software
14
+ distributed under the License is distributed on an "AS IS" BASIS,
15
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ See the License for the specific language governing permissions and
17
+ limitations under the License.
package/README.md ADDED
@@ -0,0 +1,38 @@
1
+ # @takeoff-design/tokens
2
+
3
+ Design token outputs for Takeoff Design. The package ships generated CSS, SCSS,
4
+ JavaScript, Tailwind theme assets, fonts CSS, and component recipe styles.
5
+
6
+ ## Install
7
+
8
+ ```bash
9
+ pnpm add @takeoff-design/tokens
10
+ ```
11
+
12
+ For GitHub Packages, configure the registry first:
13
+
14
+ ```ini
15
+ @takeoff-design:registry=https://npm.pkg.github.com
16
+ ```
17
+
18
+ ## Usage
19
+
20
+ ```css
21
+ @import '@takeoff-design/tokens/css/default/theme.css';
22
+ ```
23
+
24
+ ```scss
25
+ @use '@takeoff-design/tokens/scss/variables';
26
+ @use '@takeoff-design/tokens/scss/components';
27
+ ```
28
+
29
+ ```js
30
+ import tokens from '@takeoff-design/tokens';
31
+ ```
32
+
33
+ ```css
34
+ @import '@takeoff-design/tokens/tailwind/theme.css';
35
+ ```
36
+
37
+ Raw source token JSON and internal sync/build scripts are repository internals
38
+ and are not part of the npm package contract.