@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 +17 -0
- package/README.md +38 -0
- package/dist/css/ajet/theme.css +6018 -0
- package/dist/css/ajet/variables.css +1885 -0
- package/dist/css/aviation/theme.css +6018 -0
- package/dist/css/aviation/variables.css +1885 -0
- package/dist/css/default/theme.css +6018 -0
- package/dist/css/default/variables.css +1885 -0
- package/dist/css/fonts.css +2 -0
- package/dist/css/sarp/theme.css +6018 -0
- package/dist/css/sarp/variables.css +1885 -0
- package/dist/css/technology/theme.css +6018 -0
- package/dist/css/technology/variables.css +1885 -0
- package/dist/js/ajet/tokens.mjs +3213 -0
- package/dist/js/aviation/tokens.mjs +3213 -0
- package/dist/js/default/tokens.mjs +3213 -0
- package/dist/js/sarp/tokens.mjs +3213 -0
- package/dist/js/technology/tokens.mjs +3213 -0
- package/dist/scss/_components.scss +4130 -0
- package/dist/scss/_variables.scss +1885 -0
- package/dist/tailwind/_components.css +529 -0
- package/dist/tailwind/_theme-vars.css +376 -0
- package/dist/tailwind/colors.js +178 -0
- package/dist/tailwind/effects.js +28 -0
- package/dist/tailwind/radius.js +14 -0
- package/dist/tailwind/screens.js +8 -0
- package/dist/tailwind/spacing.js +39 -0
- package/dist/tailwind/theme.css +905 -0
- package/dist/tailwind/typography.js +457 -0
- package/package.json +54 -0
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.
|