@nswds/tokens 2.2.1 → 2.4.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/dist/index.d.mts +3009 -0
- package/dist/index.d.ts +3009 -0
- package/dist/index.js +10718 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +10706 -0
- package/dist/index.mjs.map +1 -0
- package/dist/json/colors/global/hex.json +1 -0
- package/dist/json/colors/global/hsl.json +1 -0
- package/dist/json/colors/global/oklch.json +1 -0
- package/dist/json/colors/global/rgb.json +1 -0
- package/dist/json/colors/themes/masterbrand/hex.json +1 -0
- package/dist/json/colors/themes/masterbrand/hsl.json +1 -0
- package/dist/json/colors/themes/masterbrand/oklch.json +1 -0
- package/dist/json/colors/themes/masterbrand/rgb.json +1 -0
- package/package.json +55 -6
- package/src/css/colors/global/hex.css +192 -0
- package/src/css/colors/global/hsl.css +192 -0
- package/src/css/colors/global/oklch.css +192 -0
- package/src/css/colors/global/rgb.css +192 -0
- package/src/css/colors/themes/masterbrand/hex.css +2 -0
- package/src/css/colors/themes/masterbrand/hsl.css +2 -0
- package/src/css/colors/themes/masterbrand/oklch.css +2 -0
- package/src/css/colors/themes/masterbrand/rgb.css +2 -0
- package/src/index.ts +295 -0
- package/src/js/colors/global/hex.js +210 -0
- package/src/js/colors/global/hsl.js +210 -0
- package/src/js/colors/global/oklch.js +210 -0
- package/src/js/colors/global/rgb.js +210 -0
- package/src/js/colors/themes/masterbrand/hex.js +72 -0
- package/src/js/colors/themes/masterbrand/hsl.js +72 -0
- package/src/js/colors/themes/masterbrand/oklch.js +72 -0
- package/src/js/colors/themes/masterbrand/rgb.js +72 -0
- package/src/json/colors/global/hex.json +1 -0
- package/src/json/colors/global/hsl.json +1 -0
- package/src/json/colors/global/oklch.json +1 -0
- package/src/json/colors/global/rgb.json +1 -0
- package/src/json/colors/themes/masterbrand/hex.json +1 -0
- package/src/json/colors/themes/masterbrand/hsl.json +1 -0
- package/src/json/colors/themes/masterbrand/oklch.json +1 -0
- package/src/json/colors/themes/masterbrand/rgb.json +1 -0
- package/src/less/colors/global/hsl.less +0 -0
- package/src/less/colors/global/oklch.less +0 -0
- package/src/less/colors/global/rgb.less +0 -0
- package/src/less/colors/themes/masterbrand/hex.less +0 -0
- package/src/less/colors/themes/masterbrand/hsl.less +0 -0
- package/src/less/colors/themes/masterbrand/oklch.less +0 -0
- package/src/less/colors/themes/masterbrand/rgb.less +0 -0
- package/src/scss/colors/global/hex.scss +190 -0
- package/src/scss/colors/global/hsl.scss +190 -0
- package/src/scss/colors/global/oklch.scss +190 -0
- package/src/scss/colors/global/rgb.scss +190 -0
- package/src/scss/colors/themes/masterbrand/hex.scss +56 -0
- package/src/scss/colors/themes/masterbrand/hsl.scss +56 -0
- package/src/scss/colors/themes/masterbrand/oklch.scss +56 -0
- package/src/scss/colors/themes/masterbrand/rgb.scss +56 -0
- package/src/tailwind/colors/global/hex.css +192 -0
- package/src/tailwind/colors/global/hsl.css +192 -0
- package/src/tailwind/colors/global/oklch.css +192 -0
- package/src/tailwind/colors/global/rgb.css +192 -0
- package/src/tailwind/colors/themes/masterbrand/hex.css +58 -0
- package/src/tailwind/colors/themes/masterbrand/hsl.css +58 -0
- package/src/tailwind/colors/themes/masterbrand/oklch.css +58 -0
- package/src/tailwind/colors/themes/masterbrand/rgb.css +58 -0
- package/src/ts/colors/global/hex.ts +210 -0
- package/src/ts/colors/global/hsl.ts +210 -0
- package/src/ts/colors/global/oklch.ts +210 -0
- package/src/ts/colors/global/rgb.ts +210 -0
- package/src/ts/colors/themes/masterbrand/hex.ts +72 -0
- package/src/ts/colors/themes/masterbrand/hsl.ts +72 -0
- package/src/ts/colors/themes/masterbrand/oklch.ts +72 -0
- package/src/ts/colors/themes/masterbrand/rgb.ts +72 -0
- package/src/types.d.ts +25 -0
- package/.gitattributes +0 -2
- package/.github/workflows/ai-pr-title.yml +0 -115
- package/.github/workflows/openai-pr-description.yml +0 -13
- package/.github/workflows/opencommit.yml +0 -36
- package/.github/workflows/release.yml +0 -30
- package/.github/workflows/validate-branch-name.yml +0 -21
- package/.prettierignore +0 -18
- package/.prettierrc +0 -8
- package/CHANGELOG.md +0 -38
- package/assets/placeholder.svg +0 -1
- package/brand/black/logo.png +0 -0
- package/brand/black/logo.svg +0 -30
- package/brand/icon-dark.ico +0 -0
- package/brand/icon-dark.png +0 -0
- package/brand/icon-dark.svg +0 -17
- package/brand/icon-light.ico +0 -0
- package/brand/icon-light.png +0 -0
- package/brand/icon-light.svg +0 -30
- package/brand/icon.svg +0 -30
- package/brand/logo.png +0 -0
- package/brand/logo.svg +0 -34
- package/brand/placeholder.svg +0 -1
- package/brand/reversed/logo.png +0 -0
- package/brand/reversed/logo.svg +0 -34
- package/brand/white/logo.png +0 -0
- package/brand/white/logo.svg +0 -21
- package/create-branch.sh +0 -29
- package/eslint.config.js +0 -20
- package/git-conventional-commits.yaml +0 -43
- package/icons/account_circle.svg +0 -1
- package/icons/attach_file.svg +0 -1
- package/icons/cancel.svg +0 -1
- package/icons/check.svg +0 -1
- package/icons/check_circle.svg +0 -1
- package/icons/chevron_down.svg +0 -1
- package/icons/chevron_left.svg +0 -1
- package/icons/chevron_right.svg +0 -1
- package/icons/chevron_up.svg +0 -1
- package/icons/close.svg +0 -1
- package/icons/collapse_all.svg +0 -1
- package/icons/computer.svg +0 -1
- package/icons/copy.svg +0 -1
- package/icons/dark_mode.svg +0 -1
- package/icons/delete.svg +0 -1
- package/icons/desktop.svg +0 -1
- package/icons/display_settings.svg +0 -1
- package/icons/dock_to_left.svg +0 -1
- package/icons/dock_to_right.svg +0 -1
- package/icons/double_arrow_left.svg +0 -1
- package/icons/double_arrow_right.svg +0 -1
- package/icons/download.svg +0 -1
- package/icons/east.svg +0 -1
- package/icons/error.svg +0 -1
- package/icons/exclamation.svg +0 -1
- package/icons/eye.svg +0 -1
- package/icons/favorite.svg +0 -1
- package/icons/help.svg +0 -1
- package/icons/info.svg +0 -1
- package/icons/language.svg +0 -1
- package/icons/light_mode.svg +0 -1
- package/icons/link.svg +0 -1
- package/icons/login.svg +0 -1
- package/icons/logout.svg +0 -1
- package/icons/menu.svg +0 -1
- package/icons/more_horiz.svg +0 -1
- package/icons/more_vert.svg +0 -1
- package/icons/north.svg +0 -1
- package/icons/open_in_new.svg +0 -1
- package/icons/print.svg +0 -1
- package/icons/progress_activity.svg +0 -1
- package/icons/remove.svg +0 -1
- package/icons/search.svg +0 -1
- package/icons/settings_brightness.svg +0 -1
- package/icons/share.svg +0 -1
- package/icons/side_navigation.svg +0 -1
- package/icons/south.svg +0 -1
- package/icons/unfold_less.svg +0 -1
- package/icons/unfold_more.svg +0 -1
- package/icons/upload.svg +0 -1
- package/icons/west.svg +0 -1
- package/pull-request.sh +0 -61
- package/release.config.mjs +0 -24
- package/tokens/global/color/hex.json +0 -782
- package/tokens/global/color/hsl.json +0 -1542
- package/tokens/global/color/oklch.json +0 -1542
- package/tokens/global/color/rgb.json +0 -1542
- package/tokens/themes/masterbrand/color/hex.json +0 -242
- package/tokens/themes/masterbrand/color/hsl.json +0 -466
- package/tokens/themes/masterbrand/color/oklch.json +0 -466
- package/tokens/themes/masterbrand/color/rgb.json +0 -466
- /package/{index.ts → src/less/colors/global/hex.less} +0 -0
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
name: 'OpenCommit Action'
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
push:
|
|
5
|
-
branches-ignore: [main master dev development release]
|
|
6
|
-
|
|
7
|
-
jobs:
|
|
8
|
-
opencommit:
|
|
9
|
-
timeout-minutes: 10
|
|
10
|
-
name: OpenCommit
|
|
11
|
-
runs-on: ubuntu-latest
|
|
12
|
-
permissions: write-all
|
|
13
|
-
steps:
|
|
14
|
-
- name: Setup Node.js Environment
|
|
15
|
-
uses: actions/setup-node@v2
|
|
16
|
-
with:
|
|
17
|
-
node-version: '16'
|
|
18
|
-
- uses: actions/checkout@v3
|
|
19
|
-
with:
|
|
20
|
-
fetch-depth: 0
|
|
21
|
-
- uses: di-sukharev/opencommit@github-action-v1.0.4
|
|
22
|
-
with:
|
|
23
|
-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
24
|
-
|
|
25
|
-
env:
|
|
26
|
-
OCO_OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
|
|
27
|
-
|
|
28
|
-
# customization
|
|
29
|
-
OCO_TOKENS_MAX_INPUT: 4096
|
|
30
|
-
OCO_TOKENS_MAX_OUTPUT: 500
|
|
31
|
-
OCO_OPENAI_BASE_PATH: ''
|
|
32
|
-
OCO_DESCRIPTION: false
|
|
33
|
-
OCO_EMOJI: false
|
|
34
|
-
OCO_MODEL: gpt-4o
|
|
35
|
-
OCO_LANGUAGE: en
|
|
36
|
-
OCO_PROMPT_MODULE: conventional-commit
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
name: Release
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
push:
|
|
5
|
-
branches: [main]
|
|
6
|
-
|
|
7
|
-
jobs:
|
|
8
|
-
release:
|
|
9
|
-
runs-on: ubuntu-latest
|
|
10
|
-
steps:
|
|
11
|
-
- uses: actions/checkout@v4
|
|
12
|
-
|
|
13
|
-
- uses: actions/setup-node@v4
|
|
14
|
-
with:
|
|
15
|
-
node-version: 20
|
|
16
|
-
registry-url: https://registry.npmjs.org/
|
|
17
|
-
|
|
18
|
-
- run: npm ci
|
|
19
|
-
|
|
20
|
-
- name: Create .npmrc
|
|
21
|
-
run: |
|
|
22
|
-
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc
|
|
23
|
-
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > $NPM_CONFIG_USERCONFIG
|
|
24
|
-
env:
|
|
25
|
-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
26
|
-
|
|
27
|
-
- run: npx semantic-release
|
|
28
|
-
env:
|
|
29
|
-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
30
|
-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
# .github/workflows/validate-branch-name.yml
|
|
2
|
-
name: Validate Branch Name
|
|
3
|
-
|
|
4
|
-
on:
|
|
5
|
-
pull_request:
|
|
6
|
-
types: [opened, edited, reopened]
|
|
7
|
-
|
|
8
|
-
jobs:
|
|
9
|
-
check-branch-name:
|
|
10
|
-
runs-on: ubuntu-latest
|
|
11
|
-
steps:
|
|
12
|
-
- name: Check branch name
|
|
13
|
-
run: |
|
|
14
|
-
BRANCH_NAME="${{ github.head_ref }}"
|
|
15
|
-
echo "Branch name: $BRANCH_NAME"
|
|
16
|
-
if [[ ! "$BRANCH_NAME" =~ ^(feature|bugfix|hotfix|release|docs|build|test|refactor|chore)(/(issue|ticket)/[A-Za-z0-9_-]+)?/[a-z0-9-]+$ ]]; then
|
|
17
|
-
echo "❌ Branch name '$BRANCH_NAME' does not follow naming convention."
|
|
18
|
-
exit 1
|
|
19
|
-
fi
|
|
20
|
-
echo "✅ Branch name '$BRANCH_NAME' follows naming convention."
|
|
21
|
-
|
package/.prettierignore
DELETED
package/.prettierrc
DELETED
package/CHANGELOG.md
DELETED
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
## [2.2.1](https://github.com/digitalnsw/nswds-tokens/compare/v2.2.0...v2.2.1) (2025-03-27)
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
### Bug Fixes
|
|
5
|
-
|
|
6
|
-
* **pull-request.sh:** remove auto-generated body text for PR creation to allow for custom descriptions ([f5178e5](https://github.com/digitalnsw/nswds-tokens/commit/f5178e5168602d13fad0287110d8664755e49bc0))
|
|
7
|
-
|
|
8
|
-
# [2.2.0](https://github.com/digitalnsw/nswds-tokens/compare/v2.1.1...v2.2.0) (2025-03-27)
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
### Features
|
|
12
|
-
|
|
13
|
-
* **github:** add branch name validation workflow to enforce naming conventions ([dafc071](https://github.com/digitalnsw/nswds-tokens/commit/dafc0717ffdf394ca404e4d5a15831d76d241329))
|
|
14
|
-
* **workflows:** add AI PR title generator workflow to automate PR title suggestions based on commit messages ([f717d26](https://github.com/digitalnsw/nswds-tokens/commit/f717d26f939b5dbdc3e8ed19f751f02224e8ab49))
|
|
15
|
-
|
|
16
|
-
## [2.1.1](https://github.com/digitalnsw/nswds-tokens/compare/v2.1.0...v2.1.1) (2025-03-25)
|
|
17
|
-
|
|
18
|
-
### Bug Fixes
|
|
19
|
-
|
|
20
|
-
- **workflow:** rename environment variable OCO_API_KEY to OCO_OPENAI_API_KEY for clarity and consistency ([6c162b1](https://github.com/digitalnsw/nswds-tokens/commit/6c162b1e0c7d0509321d064d3c18d2bf00428dd7))
|
|
21
|
-
- **workflow:** rename OCO_API_KEY to OCO_OPENAI_API_KEY for clarity ([b980c42](https://github.com/digitalnsw/nswds-tokens/commit/b980c425dbc69e940b8e71fd60d142d2570c57ef))
|
|
22
|
-
|
|
23
|
-
# [2.1.0](https://github.com/digitalnsw/nswds-tokens/compare/v2.0.0...v2.1.0) (2025-03-25)
|
|
24
|
-
|
|
25
|
-
### Features
|
|
26
|
-
|
|
27
|
-
- **workflow:** add OpenCommit GitHub Action workflow for automated commit messages generation ([5ba4c6c](https://github.com/digitalnsw/nswds-tokens/commit/5ba4c6cf9e429f4776c6ade072adf1fe9818fd69))
|
|
28
|
-
|
|
29
|
-
# 2.0.0 (2025-03-24)
|
|
30
|
-
|
|
31
|
-
### Features
|
|
32
|
-
|
|
33
|
-
- add GitHub Actions workflow for autofilling PR descriptions ([6304e82](https://github.com/digitalnsw/nswds-tokens/commit/6304e822759e8ebd60bc146f5871e7eaf31bcaee))
|
|
34
|
-
- **colors:** add new color definitions for various themes in hex, hsl, oklch, and rgb formats to enhance design consistency across the application ([74b4def](https://github.com/digitalnsw/nswds-tokens/commit/74b4defec3d7e552de453852b14de47d157c38e6))
|
|
35
|
-
- **colors:** add new color definitions in hex, hsl, oklch, and rgb formats for global and masterbrand themes to enhance design consistency across the application ([a113b2d](https://github.com/digitalnsw/nswds-tokens/commit/a113b2daccbf67ecfc66c96fb77b3c772f17eb3a))
|
|
36
|
-
- **release:** add GitHub Actions workflow for automated releases on main branch ([8ebd9f3](https://github.com/digitalnsw/nswds-tokens/commit/8ebd9f37003af25caaba62f97f455ce07bcc93fa))
|
|
37
|
-
- **release:** add GitHub Actions workflow for automated releases on main branch ([0ad84c0](https://github.com/digitalnsw/nswds-tokens/commit/0ad84c0d3676006be55e519d425cbae499174dd3))
|
|
38
|
-
- **tokens:** add new color tokens in various formats (json, js, css, scss, less) for improved design consistency across the application ([c8cf2d9](https://github.com/digitalnsw/nswds-tokens/commit/c8cf2d9e4eab87b9ec026e92a80067a28fbb7e30))
|
package/assets/placeholder.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="1200" fill="none"><rect width="1200" height="1200" fill="#EAEAEA" rx="3"/><g opacity=".5"><g opacity=".5"><path fill="#FAFAFA" d="M600.709 736.5c-75.454 0-136.621-61.167-136.621-136.62 0-75.454 61.167-136.621 136.621-136.621 75.453 0 136.62 61.167 136.62 136.621 0 75.453-61.167 136.62-136.62 136.62Z"/><path stroke="#C9C9C9" stroke-width="2.418" d="M600.709 736.5c-75.454 0-136.621-61.167-136.621-136.62 0-75.454 61.167-136.621 136.621-136.621 75.453 0 136.62 61.167 136.62 136.621 0 75.453-61.167 136.62-136.62 136.62Z"/></g><path stroke="url(#a)" stroke-width="2.418" d="M0-1.209h553.581" transform="scale(1 -1) rotate(45 1163.11 91.165)"/><path stroke="url(#b)" stroke-width="2.418" d="M404.846 598.671h391.726"/><path stroke="url(#c)" stroke-width="2.418" d="M599.5 795.742V404.017"/><path stroke="url(#d)" stroke-width="2.418" d="m795.717 796.597-391.441-391.44"/><path fill="#fff" d="M600.709 656.704c-31.384 0-56.825-25.441-56.825-56.824 0-31.384 25.441-56.825 56.825-56.825 31.383 0 56.824 25.441 56.824 56.825 0 31.383-25.441 56.824-56.824 56.824Z"/><g clip-path="url(#e)"><path fill="#666" fill-rule="evenodd" d="M616.426 586.58h-31.434v16.176l3.553-3.554.531-.531h9.068l.074-.074 8.463-8.463h2.565l7.18 7.181V586.58Zm-15.715 14.654 3.698 3.699 1.283 1.282-2.565 2.565-1.282-1.283-5.2-5.199h-6.066l-5.514 5.514-.073.073v2.876a2.418 2.418 0 0 0 2.418 2.418h26.598a2.418 2.418 0 0 0 2.418-2.418v-8.317l-8.463-8.463-7.181 7.181-.071.072Zm-19.347 5.442v4.085a6.045 6.045 0 0 0 6.046 6.045h26.598a6.044 6.044 0 0 0 6.045-6.045v-7.108l1.356-1.355-1.282-1.283-.074-.073v-17.989h-38.689v23.43l-.146.146.146.147Z" clip-rule="evenodd"/></g><path stroke="#C9C9C9" stroke-width="2.418" d="M600.709 656.704c-31.384 0-56.825-25.441-56.825-56.824 0-31.384 25.441-56.825 56.825-56.825 31.383 0 56.824 25.441 56.824 56.825 0 31.383-25.441 56.824-56.824 56.824Z"/></g><defs><linearGradient id="a" x1="554.061" x2="-.48" y1=".083" y2=".087" gradientUnits="userSpaceOnUse"><stop stop-color="#C9C9C9" stop-opacity="0"/><stop offset=".208" stop-color="#C9C9C9"/><stop offset=".792" stop-color="#C9C9C9"/><stop offset="1" stop-color="#C9C9C9" stop-opacity="0"/></linearGradient><linearGradient id="b" x1="796.912" x2="404.507" y1="599.963" y2="599.965" gradientUnits="userSpaceOnUse"><stop stop-color="#C9C9C9" stop-opacity="0"/><stop offset=".208" stop-color="#C9C9C9"/><stop offset=".792" stop-color="#C9C9C9"/><stop offset="1" stop-color="#C9C9C9" stop-opacity="0"/></linearGradient><linearGradient id="c" x1="600.792" x2="600.794" y1="403.677" y2="796.082" gradientUnits="userSpaceOnUse"><stop stop-color="#C9C9C9" stop-opacity="0"/><stop offset=".208" stop-color="#C9C9C9"/><stop offset=".792" stop-color="#C9C9C9"/><stop offset="1" stop-color="#C9C9C9" stop-opacity="0"/></linearGradient><linearGradient id="d" x1="404.85" x2="796.972" y1="403.903" y2="796.02" gradientUnits="userSpaceOnUse"><stop stop-color="#C9C9C9" stop-opacity="0"/><stop offset=".208" stop-color="#C9C9C9"/><stop offset=".792" stop-color="#C9C9C9"/><stop offset="1" stop-color="#C9C9C9" stop-opacity="0"/></linearGradient><clipPath id="e"><path fill="#fff" d="M581.364 580.535h38.689v38.689h-38.689z"/></clipPath></defs></svg>
|
package/brand/black/logo.png
DELETED
|
Binary file
|
package/brand/black/logo.svg
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 259 280" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<style>
|
|
3
|
-
.nsw-red,
|
|
4
|
-
.nsw-blue {
|
|
5
|
-
fill: #000000;
|
|
6
|
-
stroke-width: 0;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
@media (prefers-color-scheme: dark) {
|
|
10
|
-
|
|
11
|
-
.nsw-red,
|
|
12
|
-
.nsw-blue {
|
|
13
|
-
fill: #FFFFFF;
|
|
14
|
-
stroke-width: 0;
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
</style>
|
|
18
|
-
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
19
|
-
d="M24.208 270.207h-5.045v-4.277l11.15.054v13.676H26.08v-2.491c-.266.278-.553.556-.86.833-.673.585-1.49 1.07-2.433 1.434-.96.373-2.143.564-3.513.564-2.33 0-4.385-.539-6.109-1.6-1.727-1.065-3.073-2.594-4.007-4.538-.926-1.927-1.395-4.231-1.395-6.85 0-2.657.494-4.994 1.47-6.946.971-1.96 2.363-3.498 4.132-4.571 1.768-1.065 3.849-1.604 6.183-1.604 1.515 0 2.915.245 4.156.725 1.255.485 2.36 1.157 3.273 1.985a9.61 9.61 0 0 1 2.192 2.852 8.196 8.196 0 0 1 .872 3.319l.021.435h-6.038l-.062-.339a5.22 5.22 0 0 0-.814-1.981 4.562 4.562 0 0 0-1.537-1.43c-.614-.352-1.345-.531-2.175-.531-1.005 0-1.931.261-2.741.775-.806.51-1.458 1.351-1.935 2.495-.486 1.169-.731 2.74-.731 4.679 0 1.579.162 2.897.482 3.925.311 1.011.739 1.819 1.266 2.403.523.581 1.117.991 1.773 1.219a6.036 6.036 0 0 0 2.089.369c.669 0 1.27-.112 1.79-.328.523-.224.98-.514 1.354-.866.377-.356.676-.746.884-1.152.216-.41.349-.816.399-1.21l.14-1.028Zm20.878-16.312c2.354 0 4.435.534 6.179 1.587 1.752 1.061 3.13 2.59 4.086 4.546.947 1.935 1.428 4.281 1.428 6.967 0 2.648-.473 4.969-1.412 6.9-.946 1.948-2.317 3.469-4.073 4.521-1.744 1.053-3.837 1.583-6.212 1.583-2.396 0-4.502-.534-6.254-1.583-1.753-1.044-3.135-2.557-4.099-4.505-.947-1.927-1.428-4.252-1.428-6.912 0-2.673.486-5.015 1.449-6.954.968-1.956 2.355-3.486 4.12-4.551 1.764-1.061 3.853-1.599 6.216-1.599Zm0 21.185c1.117 0 2.093-.265 2.898-.787.802-.523 1.433-1.372 1.881-2.516.453-1.185.686-2.772.686-4.712 0-1.993-.237-3.618-.698-4.832-.444-1.181-1.08-2.056-1.885-2.603-.814-.543-1.782-.82-2.878-.82-1.1 0-2.072.277-2.886.82-.81.543-1.453 1.422-1.906 2.611-.47 1.223-.706 2.843-.706 4.82 0 1.944.237 3.531.702 4.712.452 1.148 1.092 1.997 1.902 2.515.81.527 1.781.792 2.89.792Zm23.764-2.93-6.162-17.829H57.09l8.654 25.251h6.195l8.73-25.251h-5.607L68.85 272.15Zm30.312-2.827H88.863v5.206l12.043.016v5.027H83.103v-25.251h17.632l-.016 4.99H88.892v5.089h10.27v4.923Zm22.482-1.529c.685-.613 1.246-1.401 1.678-2.341.419-.933.635-2.081.635-3.419 0-1.497-.311-2.835-.93-3.983-.619-1.169-1.599-2.093-2.919-2.756-1.3-.647-2.973-.974-4.975-.974h-10.738v25.243h5.759v-9.404h4.24l3.991 9.404h6.046l-4.651-10.456c.673-.357 1.3-.8 1.864-1.314Zm-3.513-5.64c0 .999-.336 1.79-1.025 2.428-.69.63-1.649.949-2.857.949h-4.095v-6.606h4.456c1.038 0 1.873.286 2.545.875.657.576.976 1.347.976 2.354Zm15.159-7.833 10.527 15.23v-15.23h5.776v25.251h-5.086l-10.98-15.86v15.86h-5.759v-25.251h5.522Zm33.949 16.461-5.29-16.461h-7.894v25.251h5.809v-16.266l5.124 16.266h4.485l5.162-16.357v16.357h5.826v-25.251h-7.878l-5.344 16.461Zm33.727-1.459h-10.298v5.206l12.046.016v5.027h-17.806v-25.251h17.636l-.021 4.99h-11.818v5.089h10.261v4.923Zm21.494.228-10.523-15.23h-5.527v25.251h5.756v-15.86l10.979 15.86h5.087v-25.251h-5.772v15.23Zm15.586-10.004h-7.388v-5.226h20.402v5.226h-7.217v20.025h-5.797v-20.025Z"
|
|
20
|
-
class="nsw-blue" />
|
|
21
|
-
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
22
|
-
d="M146.699 209.236c-1.482-2.395-3.717-4.571-6.64-6.465-2.919-1.894-6.897-3.34-11.81-4.297l-13.678-2.814c-4.132-.891-6.981-2.043-8.468-3.419-1.449-1.343-2.184-3.129-2.184-5.309 0-1.388.316-2.652.943-3.759.623-1.111 1.528-2.093 2.687-2.922 1.166-.828 2.616-1.483 4.306-1.943 1.711-.469 3.633-.705 5.714-.705 2.74 0 5.211.361 7.346 1.078 2.109.713 3.857 1.881 5.194 3.481 1.338 1.6 2.16 3.775 2.442 6.465l.038.373h16.971l-.008-.427c-.075-4.575-1.371-8.773-3.85-12.474-2.483-3.705-6.141-6.681-10.879-8.852-4.726-2.164-10.623-3.262-17.528-3.262-5.801 0-11.117 1.011-15.805 3.009-4.7 2.002-8.475 4.89-11.212 8.587-2.749 3.717-4.12 8.164-4.078 13.224.112 6.175 1.99 11.186 5.577 14.903 3.576 3.697 8.476 6.158 14.567 7.306l13.795 2.81c2.529.502 4.825 1.16 6.823 1.96 1.96.784 3.525 1.803 4.651 3.03 1.1 1.197 1.657 2.772 1.657 4.67 0 2.114-.694 3.9-2.06 5.301-1.4 1.434-3.301 2.515-5.643 3.224-2.388.721-5.058 1.086-7.936 1.086-2.807 0-5.394-.435-7.686-1.297-2.28-.85-4.194-2.093-5.689-3.693-1.491-1.591-2.513-3.585-3.04-5.918l-.075-.327H83.846l.045.46c.407 4.045 1.666 7.629 3.738 10.659 2.068 3.009 4.717 5.545 7.873 7.551 3.148 1.993 6.677 3.514 10.494 4.513a46.33 46.33 0 0 0 11.693 1.5c6.466 0 12.2-1.019 17.046-3.034 4.867-2.022 8.717-4.807 11.449-8.276 2.753-3.493 4.148-7.476 4.148-11.848 0-2.064-.232-4.36-.697-6.822-.478-2.482-1.466-4.948-2.936-7.327ZM25.937 191.763l36.916 53.312H77.87v-79.724H61.072v51.282L25.754 165.53l-.125-.179H9.19v79.724h16.748v-53.312Zm196.637 24.577 14.388-50.987h16.457l-23.587 79.724h-13.367l-14.554-50.469-14.659 50.469h-13.147l-23.533-79.724h16.511l14.384 50.979 14.389-50.979h12.167l14.551 50.987Z"
|
|
23
|
-
class="nsw-blue" />
|
|
24
|
-
<path
|
|
25
|
-
d="M122.291 145.572c-19.75-2.424-38.934 3.904-72.69-5.263-3.447-.937-4.718 2.694-2.854 5.736 9.07 14.803 54.881 3.203 75.635 1.065.906-.095.814-1.426-.091-1.538ZM208.735 140.309c-33.756 9.167-52.941 2.839-72.691 5.263-.905.112-1 1.447-.091 1.538 20.759 2.138 66.566 13.738 75.635-1.065 1.864-3.042.594-6.673-2.853-5.736ZM59.882 119.132c-6.864-10.058-12.474-21.31-16.818-33.69-13.101 3.826-26.51 9.346-40.16 16.57a5.388 5.388 0 0 0-2.902 4.67 5.38 5.38 0 0 0 2.653 4.812c26.431 15.802 52.273 24.841 76.93 26.933-7.34-4.475-14.072-11.044-19.703-19.295ZM23.059 85.513a201.529 201.529 0 0 1 17.976-6.233c-2.126-6.896-3.87-14.12-5.249-21.658-6.827-.85-13.89-1.4-21.199-1.641-.062 0-.128-.004-.19-.004a5.391 5.391 0 0 0-4.647 2.602 5.383 5.383 0 0 0-.12 5.483c4.243 7.659 8.724 14.808 13.429 21.45ZM88.005 135.572c4.099 1.807 8.293 2.818 12.358 3.029-9.953-7.12-17.773-19.192-22.278-34.58-5.805-19.81-7.745-41.666-5.83-65.247-7.832-4.936-16.32-9.557-25.46-13.85a5.428 5.428 0 0 0-5.402.43 5.396 5.396 0 0 0-2.388 4.841c2.126 34.215 10.95 62.915 26.223 85.298 6.404 9.391 14.281 16.332 22.777 20.079ZM107.488 23.577A253.323 253.323 0 0 0 92.235 6.735c-1.063-1.078-2.433-1.65-3.85-1.65-.506 0-1.017.075-1.523.224-1.923.568-3.314 2.106-3.733 4.115-1.072 5.164-3.11 15.69-4.012 26.101 7.014 4.613 13.492 9.49 19.426 14.621 2.3-8.757 5.29-17.63 8.945-26.569ZM255.42 102.007c-13.65-7.223-27.058-12.744-40.16-16.569-4.343 12.38-9.953 23.631-16.818 33.689-5.63 8.255-12.362 14.82-19.708 19.296 24.658-2.093 50.5-11.132 76.931-26.934 1.715-1.024 2.707-2.822 2.653-4.811-.045-1.99-1.133-3.734-2.898-4.671ZM235.273 85.513c4.705-6.643 9.186-13.796 13.43-21.455.963-1.74.922-3.788-.121-5.483a5.4 5.4 0 0 0-4.837-2.598c-7.309.24-14.377.796-21.199 1.641-1.375 7.539-3.123 14.762-5.249 21.658a203.803 203.803 0 0 1 17.976 6.237ZM180.247 104.025c-4.505 15.384-12.329 27.46-22.278 34.58 4.065-.211 8.263-1.227 12.358-3.034 8.496-3.746 16.373-10.688 22.777-20.075 15.273-22.383 24.097-51.082 26.223-85.297a5.394 5.394 0 0 0-2.388-4.84 5.428 5.428 0 0 0-5.402-.432c-9.14 4.29-17.628 8.91-25.46 13.85 1.915 23.582-.029 45.434-5.83 65.248ZM179.214 35.52c-.901-10.406-2.94-20.932-4.011-26.1-.416-2.01-1.811-3.547-3.733-4.115a5.39 5.39 0 0 0-1.524-.224c-1.416 0-2.787.572-3.85 1.65-5.485 5.549-10.568 11.164-15.252 16.842 3.654 8.939 6.644 17.812 8.949 26.565 5.934-5.127 12.407-10.005 19.421-14.617ZM129.144 87.229c6.64-13.092 17.246-24.829 25.21-32.243-4.372-17.779-11.104-34.55-20.397-52.097C132.998 1.078 131.195 0 129.148 0s-3.845 1.082-4.808 2.889c-9.389 17.604-16.237 35.122-20.377 52.093 8.313 7.688 19.28 20.224 25.181 32.247Z"
|
|
26
|
-
class="nsw-red" />
|
|
27
|
-
<path
|
|
28
|
-
d="M153.541 133.686c6.885-4.833 13.77-13.254 18.139-24.97 8.458-22.681 9.334-47.945 8.122-65.823-15.331 10.215-39.665 31.55-47.975 54.36-3.911 10.734-5.734 25.355-2.72 33.511 1.259 3.411 3.401 5.997 6.345 7.227 4.46 1.865 11.312.456 18.089-4.305ZM125.713 95.261c-2.027-4.724-4.261-9.18-7.728-14.186-9.809-14.16-23.026-26.933-39.475-38.185-.17 2.652-2.57 31.297 5.851 59.304 6.408 21.302 17.354 29.98 23.354 33.333 6.038 3.369 11.561 4.165 18.039 2.557-6.565-8.935-5.747-27.27-.041-42.823Z"
|
|
29
|
-
class="nsw-red" />
|
|
30
|
-
</svg>
|
package/brand/icon-dark.ico
DELETED
|
Binary file
|
package/brand/icon-dark.png
DELETED
|
Binary file
|
package/brand/icon-dark.svg
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256">
|
|
2
|
-
<style>
|
|
3
|
-
.nsw-red,
|
|
4
|
-
.nsw-blue {
|
|
5
|
-
fill: #FFFFFF;
|
|
6
|
-
stroke-width: 0;
|
|
7
|
-
}
|
|
8
|
-
</style>
|
|
9
|
-
<path class="nsw-blue"
|
|
10
|
-
d="M88.9,235.9l10-11.8c6.2,5.7,14.3,9,22.7,9.2,6.8,0,11-2.7,11-7.2v-.2c0-4.3-2.6-6.4-15.3-9.7-15.3-3.7-25.2-8.2-25.2-23.3v-.2c0-13.9,11.2-23,26.7-23,10.2-.2,20.2,3.2,28.3,9.6l-8.7,12.6c-5.7-4.4-12.6-7-19.8-7.5-6.4,0-9.8,2.9-9.8,6.6v.2c0,5,3.2,6.6,16.4,10,15.4,4.1,24.1,9.7,24.1,22.8v.2c0,15.2-11.5,23.6-27.9,23.6s-23.4-4.2-32.4-12.1h0v.2h0ZM67.5,219.3l-40.8-47.9H9.5v75.2h16.8v-48l40.6,48h17.4v-75.2h-16.8v47.9h0ZM217.9,219.4l11.2-48h17.2c0,.1-19.6,74.5-19.6,74.5v.6h-17l-11.6-47.5-11.4,47.5h-17.3l-19.5-75.2h17.5l10.9,47.5,11.9-47.5h16.1l11.7,48h0Z" />
|
|
11
|
-
<path class="nsw-red"
|
|
12
|
-
d="M176.5,50.9c2.6,12.6,3.9,25.5,4,38.3.2,11.8-1.4,23.5-4.7,34.8-2.7,8.4-7.9,15.8-14.9,21.2,13.5-.4,25.7-8.8,34.3-23.8,11.2-19.6,13.6-44.2,13.9-62.2.4-20.5-1.2-25.3-1.8-27.3s-1.4-2.8-3.2-2.8c-3.4,0-18,6.6-31.6,16.3,2.1,1.2,3.5,3.2,4,5.6h0Z" />
|
|
13
|
-
<path class="nsw-red"
|
|
14
|
-
d="M139.4,148c7.1-.7,13.9-3.5,19.5-8.1s9.6-10.7,11.7-17.5c3.1-10.8,4.6-21.9,4.4-33.1.2-11.9-.9-23.9-3.2-35.6-.3-1.3-.8-3.4-2.4-3.7-1.6-.4-3,1.3-4,2.2-1,.8-24.6,21.5-34.9,47.1-3.8,8.5-5.6,17.8-5.3,27.2,0,5.9.5,12.5,3.5,16.2,2.5,3.5,6.5,5.5,10.7,5.3h0ZM175.1,37.2c-2.7-12.2-5.2-20.6-5.2-20.6-.6-1.5-1.4-2.7-2.5-2.8-1.3-.2-2.5.2-3.4,1.1-1.6,1.2-13.4,10.5-17.3,13.7,3.8,7.7,7.1,15.7,9.7,23.8,6-5.4,12.2-10.5,18.8-15.2h-.1ZM243.3,67.8c.2-1.3,0-2.6-.6-3.7-.7-1.1-1.7-1.6-4.1-1.9-8.2,0-16.5.4-24.6,1.3-.1,8-.8,16-2,23.9,5.7,2.2,11.2,4.4,17.1,7.5,11.6-14.8,13.9-24.2,14.2-26.9v-.2h0ZM254.1,119c0-2-1-3.7-4.2-5.7-12.2-8.3-25.3-15.2-39.1-20.6-2,11-5.8,21.6-11.2,31.3-4.6,8.5-11.2,15.6-19.4,20.7,22.9-1.6,42.1-5.1,55.9-11.8,15.9-7.6,18-11.5,17.9-14h0ZM203.6,148.5c-4.4.3-8.8.9-13.1,1.8-4.5.8-9.1,1.1-13.7,1h-18.3c-7.9-.2-15.7.6-23.4,2.4-.4,0-.9.3-.8.7,0,.5.6.4,1.2.4s6.3-.4,9.1-.4c8,0,16,1.2,23.7,3.5,6.7,1.9,13.6,3,20.5,3.1,8.7,0,16.2-1.1,19.1-4.2,1.2-1.3,1.7-3,1.4-4.7-.6-2.5-2.2-3.5-5.6-3.5h0ZM60.9,121.4c8.6,14.9,20.7,23.4,34.3,23.8-7-5.4-12.2-12.7-14.9-21.2-3.3-11.3-4.9-23-4.7-34.8,0-12.9,1.4-25.7,4-38.3.4-2.4,1.8-4.4,4-5.6-13.8-10.2-28.2-16.2-31.6-16.3-1.8,0-2.6.7-3.2,2.8-.6,2-2.1,6.8-1.7,27.3.3,18,2.7,42.6,13.9,62.2h0Z" />
|
|
15
|
-
<path class="nsw-red"
|
|
16
|
-
d="M90.5,52.4c-1-.8-2.5-2.5-4-2.2s-2.1,2.4-2.4,3.7c-2.4,11.7-3.5,23.6-3.2,35.6,0,11.2,1.4,22.4,4.4,33.1,2.1,6.9,6.2,13,11.8,17.6,5.6,4.5,12.4,7.3,19.6,7.9,2.8,0,5.6-.8,7.9-2.4-.8-1-1.4-2.1-1.9-3.2-2-4.6-3-9.6-2.9-14.6,0-10,1.9-19.8,5.7-29-10.3-25.7-34.1-45.8-35-46.4h0ZM128,91c6.2-12.5,14.5-23.8,24.4-33.6-5.4-16.8-13-32.9-22.5-47.9-.6-.9-1.1-1.5-2-1.5s-1.3.6-1.9,1.5c-9.4,15-16.9,31.2-22.4,48.1,9.9,9.8,18.2,21.1,24.5,33.6v-.2h0ZM109.3,28.5c-3.7-3.2-15.6-12.5-17.3-13.7-.9-.9-2.2-1.3-3.4-1.1-1.2,0-2,1.3-2.5,2.8,0,0-2.6,8.4-5.2,20.6,6.5,4.6,12.7,9.6,18.6,14.9,2.7-8.1,6-16,9.8-23.6h0ZM27,94.7c6-3,11.4-5.2,17.1-7.5-1.2-7.8-1.9-15.7-2.1-23.7-8.2-.9-16.4-1.3-24.7-1.3-2.4.3-3.3.8-4.1,1.9-.6,1.2-.7,2.5-.6,3.7.3,2.5,2.6,12,14.3,26.7v.2h.1ZM56.3,124.1c-5.4-9.8-9.2-20.4-11.2-31.3-13.8,5.4-26.9,12.3-39.1,20.6-3.2,2.1-4.1,3.7-4.1,5.7s2,6.4,17.8,14c13.8,6.7,33.1,10.2,55.9,11.8-8.1-5.1-14.8-12.3-19.3-20.7h0ZM120.9,153.4c-7.6-1.8-15.5-2.6-23.3-2.4h-18.3c-4.6.1-9.2-.2-13.8-1-4.3-.9-8.7-1.5-13-1.8-3.4,0-5,1-5.6,3.2-.4,1.7.2,3.5,1.4,4.7,2.8,3.1,10.3,4.2,19.1,4.2,6.9-.1,13.8-1.1,20.5-3.1,7.7-2.2,15.6-3.2,23.6-3.2s8.5.4,9.1.4,1.2,0,1.2-.4-.3-.6-.7-.7h-.2Z" />
|
|
17
|
-
</svg>
|
package/brand/icon-light.ico
DELETED
|
Binary file
|
package/brand/icon-light.png
DELETED
|
Binary file
|
package/brand/icon-light.svg
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256">
|
|
2
|
-
<style>
|
|
3
|
-
.nsw-red {
|
|
4
|
-
fill: #d7153a;
|
|
5
|
-
stroke-width: 0;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
.nsw-blue {
|
|
9
|
-
fill: #002664;
|
|
10
|
-
stroke-width: 0;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
@media (prefers-color-scheme: dark) {
|
|
14
|
-
|
|
15
|
-
.nsw-red,
|
|
16
|
-
.nsw-blue {
|
|
17
|
-
fill: #FFFFFF;
|
|
18
|
-
stroke-width: 0;
|
|
19
|
-
}
|
|
20
|
-
}
|
|
21
|
-
</style>
|
|
22
|
-
<path class="nsw-blue"
|
|
23
|
-
d="M88.9,235.9l10-11.8c6.2,5.7,14.3,9,22.7,9.2,6.8,0,11-2.7,11-7.2v-.2c0-4.3-2.6-6.4-15.3-9.7-15.3-3.7-25.2-8.2-25.2-23.3v-.2c0-13.9,11.2-23,26.7-23,10.2-.2,20.2,3.2,28.3,9.6l-8.7,12.6c-5.7-4.4-12.6-7-19.8-7.5-6.4,0-9.8,2.9-9.8,6.6v.2c0,5,3.2,6.6,16.4,10,15.4,4.1,24.1,9.7,24.1,22.8v.2c0,15.2-11.5,23.6-27.9,23.6s-23.4-4.2-32.4-12.1h0v.2h0ZM67.5,219.3l-40.8-47.9H9.5v75.2h16.8v-48l40.6,48h17.4v-75.2h-16.8v47.9h0ZM217.9,219.4l11.2-48h17.2c0,.1-19.6,74.5-19.6,74.5v.6h-17l-11.6-47.5-11.4,47.5h-17.3l-19.5-75.2h17.5l10.9,47.5,11.9-47.5h16.1l11.7,48h0Z" />
|
|
24
|
-
<path class="nsw-red"
|
|
25
|
-
d="M176.5,50.9c2.6,12.6,3.9,25.5,4,38.3.2,11.8-1.4,23.5-4.7,34.8-2.7,8.4-7.9,15.8-14.9,21.2,13.5-.4,25.7-8.8,34.3-23.8,11.2-19.6,13.6-44.2,13.9-62.2.4-20.5-1.2-25.3-1.8-27.3s-1.4-2.8-3.2-2.8c-3.4,0-18,6.6-31.6,16.3,2.1,1.2,3.5,3.2,4,5.6h0Z" />
|
|
26
|
-
<path class="nsw-red"
|
|
27
|
-
d="M139.4,148c7.1-.7,13.9-3.5,19.5-8.1s9.6-10.7,11.7-17.5c3.1-10.8,4.6-21.9,4.4-33.1.2-11.9-.9-23.9-3.2-35.6-.3-1.3-.8-3.4-2.4-3.7-1.6-.4-3,1.3-4,2.2-1,.8-24.6,21.5-34.9,47.1-3.8,8.5-5.6,17.8-5.3,27.2,0,5.9.5,12.5,3.5,16.2,2.5,3.5,6.5,5.5,10.7,5.3h0ZM175.1,37.2c-2.7-12.2-5.2-20.6-5.2-20.6-.6-1.5-1.4-2.7-2.5-2.8-1.3-.2-2.5.2-3.4,1.1-1.6,1.2-13.4,10.5-17.3,13.7,3.8,7.7,7.1,15.7,9.7,23.8,6-5.4,12.2-10.5,18.8-15.2h-.1ZM243.3,67.8c.2-1.3,0-2.6-.6-3.7-.7-1.1-1.7-1.6-4.1-1.9-8.2,0-16.5.4-24.6,1.3-.1,8-.8,16-2,23.9,5.7,2.2,11.2,4.4,17.1,7.5,11.6-14.8,13.9-24.2,14.2-26.9v-.2h0ZM254.1,119c0-2-1-3.7-4.2-5.7-12.2-8.3-25.3-15.2-39.1-20.6-2,11-5.8,21.6-11.2,31.3-4.6,8.5-11.2,15.6-19.4,20.7,22.9-1.6,42.1-5.1,55.9-11.8,15.9-7.6,18-11.5,17.9-14h0ZM203.6,148.5c-4.4.3-8.8.9-13.1,1.8-4.5.8-9.1,1.1-13.7,1h-18.3c-7.9-.2-15.7.6-23.4,2.4-.4,0-.9.3-.8.7,0,.5.6.4,1.2.4s6.3-.4,9.1-.4c8,0,16,1.2,23.7,3.5,6.7,1.9,13.6,3,20.5,3.1,8.7,0,16.2-1.1,19.1-4.2,1.2-1.3,1.7-3,1.4-4.7-.6-2.5-2.2-3.5-5.6-3.5h0ZM60.9,121.4c8.6,14.9,20.7,23.4,34.3,23.8-7-5.4-12.2-12.7-14.9-21.2-3.3-11.3-4.9-23-4.7-34.8,0-12.9,1.4-25.7,4-38.3.4-2.4,1.8-4.4,4-5.6-13.8-10.2-28.2-16.2-31.6-16.3-1.8,0-2.6.7-3.2,2.8-.6,2-2.1,6.8-1.7,27.3.3,18,2.7,42.6,13.9,62.2h0Z" />
|
|
28
|
-
<path class="nsw-red"
|
|
29
|
-
d="M90.5,52.4c-1-.8-2.5-2.5-4-2.2s-2.1,2.4-2.4,3.7c-2.4,11.7-3.5,23.6-3.2,35.6,0,11.2,1.4,22.4,4.4,33.1,2.1,6.9,6.2,13,11.8,17.6,5.6,4.5,12.4,7.3,19.6,7.9,2.8,0,5.6-.8,7.9-2.4-.8-1-1.4-2.1-1.9-3.2-2-4.6-3-9.6-2.9-14.6,0-10,1.9-19.8,5.7-29-10.3-25.7-34.1-45.8-35-46.4h0ZM128,91c6.2-12.5,14.5-23.8,24.4-33.6-5.4-16.8-13-32.9-22.5-47.9-.6-.9-1.1-1.5-2-1.5s-1.3.6-1.9,1.5c-9.4,15-16.9,31.2-22.4,48.1,9.9,9.8,18.2,21.1,24.5,33.6v-.2h0ZM109.3,28.5c-3.7-3.2-15.6-12.5-17.3-13.7-.9-.9-2.2-1.3-3.4-1.1-1.2,0-2,1.3-2.5,2.8,0,0-2.6,8.4-5.2,20.6,6.5,4.6,12.7,9.6,18.6,14.9,2.7-8.1,6-16,9.8-23.6h0ZM27,94.7c6-3,11.4-5.2,17.1-7.5-1.2-7.8-1.9-15.7-2.1-23.7-8.2-.9-16.4-1.3-24.7-1.3-2.4.3-3.3.8-4.1,1.9-.6,1.2-.7,2.5-.6,3.7.3,2.5,2.6,12,14.3,26.7v.2h.1ZM56.3,124.1c-5.4-9.8-9.2-20.4-11.2-31.3-13.8,5.4-26.9,12.3-39.1,20.6-3.2,2.1-4.1,3.7-4.1,5.7s2,6.4,17.8,14c13.8,6.7,33.1,10.2,55.9,11.8-8.1-5.1-14.8-12.3-19.3-20.7h0ZM120.9,153.4c-7.6-1.8-15.5-2.6-23.3-2.4h-18.3c-4.6.1-9.2-.2-13.8-1-4.3-.9-8.7-1.5-13-1.8-3.4,0-5,1-5.6,3.2-.4,1.7.2,3.5,1.4,4.7,2.8,3.1,10.3,4.2,19.1,4.2,6.9-.1,13.8-1.1,20.5-3.1,7.7-2.2,15.6-3.2,23.6-3.2s8.5.4,9.1.4,1.2,0,1.2-.4-.3-.6-.7-.7h-.2Z" />
|
|
30
|
-
</svg>
|
package/brand/icon.svg
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256">
|
|
2
|
-
<style>
|
|
3
|
-
.nsw-red {
|
|
4
|
-
fill: #d7153a;
|
|
5
|
-
stroke-width: 0;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
.nsw-blue {
|
|
9
|
-
fill: #002664;
|
|
10
|
-
stroke-width: 0;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
@media (prefers-color-scheme: dark) {
|
|
14
|
-
|
|
15
|
-
.nsw-red,
|
|
16
|
-
.nsw-blue {
|
|
17
|
-
fill: #FFFFFF;
|
|
18
|
-
stroke-width: 0;
|
|
19
|
-
}
|
|
20
|
-
}
|
|
21
|
-
</style>
|
|
22
|
-
<path class="nsw-blue"
|
|
23
|
-
d="M88.9,235.9l10-11.8c6.2,5.7,14.3,9,22.7,9.2,6.8,0,11-2.7,11-7.2v-.2c0-4.3-2.6-6.4-15.3-9.7-15.3-3.7-25.2-8.2-25.2-23.3v-.2c0-13.9,11.2-23,26.7-23,10.2-.2,20.2,3.2,28.3,9.6l-8.7,12.6c-5.7-4.4-12.6-7-19.8-7.5-6.4,0-9.8,2.9-9.8,6.6v.2c0,5,3.2,6.6,16.4,10,15.4,4.1,24.1,9.7,24.1,22.8v.2c0,15.2-11.5,23.6-27.9,23.6s-23.4-4.2-32.4-12.1h0v.2h0ZM67.5,219.3l-40.8-47.9H9.5v75.2h16.8v-48l40.6,48h17.4v-75.2h-16.8v47.9h0ZM217.9,219.4l11.2-48h17.2c0,.1-19.6,74.5-19.6,74.5v.6h-17l-11.6-47.5-11.4,47.5h-17.3l-19.5-75.2h17.5l10.9,47.5,11.9-47.5h16.1l11.7,48h0Z" />
|
|
24
|
-
<path class="nsw-red"
|
|
25
|
-
d="M176.5,50.9c2.6,12.6,3.9,25.5,4,38.3.2,11.8-1.4,23.5-4.7,34.8-2.7,8.4-7.9,15.8-14.9,21.2,13.5-.4,25.7-8.8,34.3-23.8,11.2-19.6,13.6-44.2,13.9-62.2.4-20.5-1.2-25.3-1.8-27.3s-1.4-2.8-3.2-2.8c-3.4,0-18,6.6-31.6,16.3,2.1,1.2,3.5,3.2,4,5.6h0Z" />
|
|
26
|
-
<path class="nsw-red"
|
|
27
|
-
d="M139.4,148c7.1-.7,13.9-3.5,19.5-8.1s9.6-10.7,11.7-17.5c3.1-10.8,4.6-21.9,4.4-33.1.2-11.9-.9-23.9-3.2-35.6-.3-1.3-.8-3.4-2.4-3.7-1.6-.4-3,1.3-4,2.2-1,.8-24.6,21.5-34.9,47.1-3.8,8.5-5.6,17.8-5.3,27.2,0,5.9.5,12.5,3.5,16.2,2.5,3.5,6.5,5.5,10.7,5.3h0ZM175.1,37.2c-2.7-12.2-5.2-20.6-5.2-20.6-.6-1.5-1.4-2.7-2.5-2.8-1.3-.2-2.5.2-3.4,1.1-1.6,1.2-13.4,10.5-17.3,13.7,3.8,7.7,7.1,15.7,9.7,23.8,6-5.4,12.2-10.5,18.8-15.2h-.1ZM243.3,67.8c.2-1.3,0-2.6-.6-3.7-.7-1.1-1.7-1.6-4.1-1.9-8.2,0-16.5.4-24.6,1.3-.1,8-.8,16-2,23.9,5.7,2.2,11.2,4.4,17.1,7.5,11.6-14.8,13.9-24.2,14.2-26.9v-.2h0ZM254.1,119c0-2-1-3.7-4.2-5.7-12.2-8.3-25.3-15.2-39.1-20.6-2,11-5.8,21.6-11.2,31.3-4.6,8.5-11.2,15.6-19.4,20.7,22.9-1.6,42.1-5.1,55.9-11.8,15.9-7.6,18-11.5,17.9-14h0ZM203.6,148.5c-4.4.3-8.8.9-13.1,1.8-4.5.8-9.1,1.1-13.7,1h-18.3c-7.9-.2-15.7.6-23.4,2.4-.4,0-.9.3-.8.7,0,.5.6.4,1.2.4s6.3-.4,9.1-.4c8,0,16,1.2,23.7,3.5,6.7,1.9,13.6,3,20.5,3.1,8.7,0,16.2-1.1,19.1-4.2,1.2-1.3,1.7-3,1.4-4.7-.6-2.5-2.2-3.5-5.6-3.5h0ZM60.9,121.4c8.6,14.9,20.7,23.4,34.3,23.8-7-5.4-12.2-12.7-14.9-21.2-3.3-11.3-4.9-23-4.7-34.8,0-12.9,1.4-25.7,4-38.3.4-2.4,1.8-4.4,4-5.6-13.8-10.2-28.2-16.2-31.6-16.3-1.8,0-2.6.7-3.2,2.8-.6,2-2.1,6.8-1.7,27.3.3,18,2.7,42.6,13.9,62.2h0Z" />
|
|
28
|
-
<path class="nsw-red"
|
|
29
|
-
d="M90.5,52.4c-1-.8-2.5-2.5-4-2.2s-2.1,2.4-2.4,3.7c-2.4,11.7-3.5,23.6-3.2,35.6,0,11.2,1.4,22.4,4.4,33.1,2.1,6.9,6.2,13,11.8,17.6,5.6,4.5,12.4,7.3,19.6,7.9,2.8,0,5.6-.8,7.9-2.4-.8-1-1.4-2.1-1.9-3.2-2-4.6-3-9.6-2.9-14.6,0-10,1.9-19.8,5.7-29-10.3-25.7-34.1-45.8-35-46.4h0ZM128,91c6.2-12.5,14.5-23.8,24.4-33.6-5.4-16.8-13-32.9-22.5-47.9-.6-.9-1.1-1.5-2-1.5s-1.3.6-1.9,1.5c-9.4,15-16.9,31.2-22.4,48.1,9.9,9.8,18.2,21.1,24.5,33.6v-.2h0ZM109.3,28.5c-3.7-3.2-15.6-12.5-17.3-13.7-.9-.9-2.2-1.3-3.4-1.1-1.2,0-2,1.3-2.5,2.8,0,0-2.6,8.4-5.2,20.6,6.5,4.6,12.7,9.6,18.6,14.9,2.7-8.1,6-16,9.8-23.6h0ZM27,94.7c6-3,11.4-5.2,17.1-7.5-1.2-7.8-1.9-15.7-2.1-23.7-8.2-.9-16.4-1.3-24.7-1.3-2.4.3-3.3.8-4.1,1.9-.6,1.2-.7,2.5-.6,3.7.3,2.5,2.6,12,14.3,26.7v.2h.1ZM56.3,124.1c-5.4-9.8-9.2-20.4-11.2-31.3-13.8,5.4-26.9,12.3-39.1,20.6-3.2,2.1-4.1,3.7-4.1,5.7s2,6.4,17.8,14c13.8,6.7,33.1,10.2,55.9,11.8-8.1-5.1-14.8-12.3-19.3-20.7h0ZM120.9,153.4c-7.6-1.8-15.5-2.6-23.3-2.4h-18.3c-4.6.1-9.2-.2-13.8-1-4.3-.9-8.7-1.5-13-1.8-3.4,0-5,1-5.6,3.2-.4,1.7.2,3.5,1.4,4.7,2.8,3.1,10.3,4.2,19.1,4.2,6.9-.1,13.8-1.1,20.5-3.1,7.7-2.2,15.6-3.2,23.6-3.2s8.5.4,9.1.4,1.2,0,1.2-.4-.3-.6-.7-.7h-.2Z" />
|
|
30
|
-
</svg>
|
package/brand/logo.png
DELETED
|
Binary file
|
package/brand/logo.svg
DELETED
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 259 280" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<style>
|
|
3
|
-
.nsw-red {
|
|
4
|
-
fill: #d7153a;
|
|
5
|
-
stroke-width: 0;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
.nsw-blue {
|
|
9
|
-
fill: #002664;
|
|
10
|
-
stroke-width: 0;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
@media (prefers-color-scheme: dark) {
|
|
14
|
-
|
|
15
|
-
.nsw-red,
|
|
16
|
-
.nsw-blue {
|
|
17
|
-
fill: #FFFFFF;
|
|
18
|
-
stroke-width: 0;
|
|
19
|
-
}
|
|
20
|
-
}
|
|
21
|
-
</style>
|
|
22
|
-
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
23
|
-
d="M24.208 270.207h-5.045v-4.277l11.15.054v13.676H26.08v-2.491c-.266.278-.553.556-.86.833-.673.585-1.49 1.07-2.433 1.434-.96.373-2.143.564-3.513.564-2.33 0-4.385-.539-6.109-1.6-1.727-1.065-3.073-2.594-4.007-4.538-.926-1.927-1.395-4.231-1.395-6.85 0-2.657.494-4.994 1.47-6.946.971-1.96 2.363-3.498 4.132-4.571 1.768-1.065 3.849-1.604 6.183-1.604 1.515 0 2.915.245 4.156.725 1.255.485 2.36 1.157 3.273 1.985a9.61 9.61 0 0 1 2.192 2.852 8.196 8.196 0 0 1 .872 3.319l.021.435h-6.038l-.062-.339a5.22 5.22 0 0 0-.814-1.981 4.562 4.562 0 0 0-1.537-1.43c-.614-.352-1.345-.531-2.175-.531-1.005 0-1.931.261-2.741.775-.806.51-1.458 1.351-1.935 2.495-.486 1.169-.731 2.74-.731 4.679 0 1.579.162 2.897.482 3.925.311 1.011.739 1.819 1.266 2.403.523.581 1.117.991 1.773 1.219a6.036 6.036 0 0 0 2.089.369c.669 0 1.27-.112 1.79-.328.523-.224.98-.514 1.354-.866.377-.356.676-.746.884-1.152.216-.41.349-.816.399-1.21l.14-1.028Zm20.878-16.312c2.354 0 4.435.534 6.179 1.587 1.752 1.061 3.13 2.59 4.086 4.546.947 1.935 1.428 4.281 1.428 6.967 0 2.648-.473 4.969-1.412 6.9-.946 1.948-2.317 3.469-4.073 4.521-1.744 1.053-3.837 1.583-6.212 1.583-2.396 0-4.502-.534-6.254-1.583-1.753-1.044-3.135-2.557-4.099-4.505-.947-1.927-1.428-4.252-1.428-6.912 0-2.673.486-5.015 1.449-6.954.968-1.956 2.355-3.486 4.12-4.551 1.764-1.061 3.853-1.599 6.216-1.599Zm0 21.185c1.117 0 2.093-.265 2.898-.787.802-.523 1.433-1.372 1.881-2.516.453-1.185.686-2.772.686-4.712 0-1.993-.237-3.618-.698-4.832-.444-1.181-1.08-2.056-1.885-2.603-.814-.543-1.782-.82-2.878-.82-1.1 0-2.072.277-2.886.82-.81.543-1.453 1.422-1.906 2.611-.47 1.223-.706 2.843-.706 4.82 0 1.944.237 3.531.702 4.712.452 1.148 1.092 1.997 1.902 2.515.81.527 1.781.792 2.89.792Zm23.764-2.93-6.162-17.829H57.09l8.654 25.251h6.195l8.73-25.251h-5.607L68.85 272.15Zm30.312-2.827H88.863v5.206l12.043.016v5.027H83.103v-25.251h17.632l-.016 4.99H88.892v5.089h10.27v4.923Zm22.482-1.529c.685-.613 1.246-1.401 1.678-2.341.419-.933.635-2.081.635-3.419 0-1.497-.311-2.835-.93-3.983-.619-1.169-1.599-2.093-2.919-2.756-1.3-.647-2.973-.974-4.975-.974h-10.738v25.243h5.759v-9.404h4.24l3.991 9.404h6.046l-4.651-10.456c.673-.357 1.3-.8 1.864-1.314Zm-3.513-5.64c0 .999-.336 1.79-1.025 2.428-.69.63-1.649.949-2.857.949h-4.095v-6.606h4.456c1.038 0 1.873.286 2.545.875.657.576.976 1.347.976 2.354Zm15.159-7.833 10.527 15.23v-15.23h5.776v25.251h-5.086l-10.98-15.86v15.86h-5.759v-25.251h5.522Zm33.949 16.461-5.29-16.461h-7.894v25.251h5.809v-16.266l5.124 16.266h4.485l5.162-16.357v16.357h5.826v-25.251h-7.878l-5.344 16.461Zm33.727-1.459h-10.298v5.206l12.046.016v5.027h-17.806v-25.251h17.636l-.021 4.99h-11.818v5.089h10.261v4.923Zm21.494.228-10.523-15.23h-5.527v25.251h5.756v-15.86l10.979 15.86h5.087v-25.251h-5.772v15.23Zm15.586-10.004h-7.388v-5.226h20.402v5.226h-7.217v20.025h-5.797v-20.025Z"
|
|
24
|
-
class="nsw-blue" />
|
|
25
|
-
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
26
|
-
d="M146.699 209.236c-1.482-2.395-3.717-4.571-6.64-6.465-2.919-1.894-6.897-3.34-11.81-4.297l-13.678-2.814c-4.132-.891-6.981-2.043-8.468-3.419-1.449-1.343-2.184-3.129-2.184-5.309 0-1.388.316-2.652.943-3.759.623-1.111 1.528-2.093 2.687-2.922 1.166-.828 2.616-1.483 4.306-1.943 1.711-.469 3.633-.705 5.714-.705 2.74 0 5.211.361 7.346 1.078 2.109.713 3.857 1.881 5.194 3.481 1.338 1.6 2.16 3.775 2.442 6.465l.038.373h16.971l-.008-.427c-.075-4.575-1.371-8.773-3.85-12.474-2.483-3.705-6.141-6.681-10.879-8.852-4.726-2.164-10.623-3.262-17.528-3.262-5.801 0-11.117 1.011-15.805 3.009-4.7 2.002-8.475 4.89-11.212 8.587-2.749 3.717-4.12 8.164-4.078 13.224.112 6.175 1.99 11.186 5.577 14.903 3.576 3.697 8.476 6.158 14.567 7.306l13.795 2.81c2.529.502 4.825 1.16 6.823 1.96 1.96.784 3.525 1.803 4.651 3.03 1.1 1.197 1.657 2.772 1.657 4.67 0 2.114-.694 3.9-2.06 5.301-1.4 1.434-3.301 2.515-5.643 3.224-2.388.721-5.058 1.086-7.936 1.086-2.807 0-5.394-.435-7.686-1.297-2.28-.85-4.194-2.093-5.689-3.693-1.491-1.591-2.513-3.585-3.04-5.918l-.075-.327H83.846l.045.46c.407 4.045 1.666 7.629 3.738 10.659 2.068 3.009 4.717 5.545 7.873 7.551 3.148 1.993 6.677 3.514 10.494 4.513a46.33 46.33 0 0 0 11.693 1.5c6.466 0 12.2-1.019 17.046-3.034 4.867-2.022 8.717-4.807 11.449-8.276 2.753-3.493 4.148-7.476 4.148-11.848 0-2.064-.232-4.36-.697-6.822-.478-2.482-1.466-4.948-2.936-7.327ZM25.937 191.763l36.916 53.312H77.87v-79.724H61.072v51.282L25.754 165.53l-.125-.179H9.19v79.724h16.748v-53.312Zm196.637 24.577 14.388-50.987h16.457l-23.587 79.724h-13.367l-14.554-50.469-14.659 50.469h-13.147l-23.533-79.724h16.511l14.384 50.979 14.389-50.979h12.167l14.551 50.987Z"
|
|
27
|
-
class="nsw-blue" />
|
|
28
|
-
<path
|
|
29
|
-
d="M122.291 145.572c-19.75-2.424-38.934 3.904-72.69-5.263-3.447-.937-4.718 2.694-2.854 5.736 9.07 14.803 54.881 3.203 75.635 1.065.906-.095.814-1.426-.091-1.538ZM208.735 140.309c-33.756 9.167-52.941 2.839-72.691 5.263-.905.112-1 1.447-.091 1.538 20.759 2.138 66.566 13.738 75.635-1.065 1.864-3.042.594-6.673-2.853-5.736ZM59.882 119.132c-6.864-10.058-12.474-21.31-16.818-33.69-13.101 3.826-26.51 9.346-40.16 16.57a5.388 5.388 0 0 0-2.902 4.67 5.38 5.38 0 0 0 2.653 4.812c26.431 15.802 52.273 24.841 76.93 26.933-7.34-4.475-14.072-11.044-19.703-19.295ZM23.059 85.513a201.529 201.529 0 0 1 17.976-6.233c-2.126-6.896-3.87-14.12-5.249-21.658-6.827-.85-13.89-1.4-21.199-1.641-.062 0-.128-.004-.19-.004a5.391 5.391 0 0 0-4.647 2.602 5.383 5.383 0 0 0-.12 5.483c4.243 7.659 8.724 14.808 13.429 21.45ZM88.005 135.572c4.099 1.807 8.293 2.818 12.358 3.029-9.953-7.12-17.773-19.192-22.278-34.58-5.805-19.81-7.745-41.666-5.83-65.247-7.832-4.936-16.32-9.557-25.46-13.85a5.428 5.428 0 0 0-5.402.43 5.396 5.396 0 0 0-2.388 4.841c2.126 34.215 10.95 62.915 26.223 85.298 6.404 9.391 14.281 16.332 22.777 20.079ZM107.488 23.577A253.323 253.323 0 0 0 92.235 6.735c-1.063-1.078-2.433-1.65-3.85-1.65-.506 0-1.017.075-1.523.224-1.923.568-3.314 2.106-3.733 4.115-1.072 5.164-3.11 15.69-4.012 26.101 7.014 4.613 13.492 9.49 19.426 14.621 2.3-8.757 5.29-17.63 8.945-26.569ZM255.42 102.007c-13.65-7.223-27.058-12.744-40.16-16.569-4.343 12.38-9.953 23.631-16.818 33.689-5.63 8.255-12.362 14.82-19.708 19.296 24.658-2.093 50.5-11.132 76.931-26.934 1.715-1.024 2.707-2.822 2.653-4.811-.045-1.99-1.133-3.734-2.898-4.671ZM235.273 85.513c4.705-6.643 9.186-13.796 13.43-21.455.963-1.74.922-3.788-.121-5.483a5.4 5.4 0 0 0-4.837-2.598c-7.309.24-14.377.796-21.199 1.641-1.375 7.539-3.123 14.762-5.249 21.658a203.803 203.803 0 0 1 17.976 6.237ZM180.247 104.025c-4.505 15.384-12.329 27.46-22.278 34.58 4.065-.211 8.263-1.227 12.358-3.034 8.496-3.746 16.373-10.688 22.777-20.075 15.273-22.383 24.097-51.082 26.223-85.297a5.394 5.394 0 0 0-2.388-4.84 5.428 5.428 0 0 0-5.402-.432c-9.14 4.29-17.628 8.91-25.46 13.85 1.915 23.582-.029 45.434-5.83 65.248ZM179.214 35.52c-.901-10.406-2.94-20.932-4.011-26.1-.416-2.01-1.811-3.547-3.733-4.115a5.39 5.39 0 0 0-1.524-.224c-1.416 0-2.787.572-3.85 1.65-5.485 5.549-10.568 11.164-15.252 16.842 3.654 8.939 6.644 17.812 8.949 26.565 5.934-5.127 12.407-10.005 19.421-14.617ZM129.144 87.229c6.64-13.092 17.246-24.829 25.21-32.243-4.372-17.779-11.104-34.55-20.397-52.097C132.998 1.078 131.195 0 129.148 0s-3.845 1.082-4.808 2.889c-9.389 17.604-16.237 35.122-20.377 52.093 8.313 7.688 19.28 20.224 25.181 32.247Z"
|
|
30
|
-
class="nsw-red" />
|
|
31
|
-
<path
|
|
32
|
-
d="M153.541 133.686c6.885-4.833 13.77-13.254 18.139-24.97 8.458-22.681 9.334-47.945 8.122-65.823-15.331 10.215-39.665 31.55-47.975 54.36-3.911 10.734-5.734 25.355-2.72 33.511 1.259 3.411 3.401 5.997 6.345 7.227 4.46 1.865 11.312.456 18.089-4.305ZM125.713 95.261c-2.027-4.724-4.261-9.18-7.728-14.186-9.809-14.16-23.026-26.933-39.475-38.185-.17 2.652-2.57 31.297 5.851 59.304 6.408 21.302 17.354 29.98 23.354 33.333 6.038 3.369 11.561 4.165 18.039 2.557-6.565-8.935-5.747-27.27-.041-42.823Z"
|
|
33
|
-
class="nsw-red" />
|
|
34
|
-
</svg>
|
package/brand/placeholder.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="1200" fill="none"><rect width="1200" height="1200" fill="#EAEAEA" rx="3"/><g opacity=".5"><g opacity=".5"><path fill="#FAFAFA" d="M600.709 736.5c-75.454 0-136.621-61.167-136.621-136.62 0-75.454 61.167-136.621 136.621-136.621 75.453 0 136.62 61.167 136.62 136.621 0 75.453-61.167 136.62-136.62 136.62Z"/><path stroke="#C9C9C9" stroke-width="2.418" d="M600.709 736.5c-75.454 0-136.621-61.167-136.621-136.62 0-75.454 61.167-136.621 136.621-136.621 75.453 0 136.62 61.167 136.62 136.621 0 75.453-61.167 136.62-136.62 136.62Z"/></g><path stroke="url(#a)" stroke-width="2.418" d="M0-1.209h553.581" transform="scale(1 -1) rotate(45 1163.11 91.165)"/><path stroke="url(#b)" stroke-width="2.418" d="M404.846 598.671h391.726"/><path stroke="url(#c)" stroke-width="2.418" d="M599.5 795.742V404.017"/><path stroke="url(#d)" stroke-width="2.418" d="m795.717 796.597-391.441-391.44"/><path fill="#fff" d="M600.709 656.704c-31.384 0-56.825-25.441-56.825-56.824 0-31.384 25.441-56.825 56.825-56.825 31.383 0 56.824 25.441 56.824 56.825 0 31.383-25.441 56.824-56.824 56.824Z"/><g clip-path="url(#e)"><path fill="#666" fill-rule="evenodd" d="M616.426 586.58h-31.434v16.176l3.553-3.554.531-.531h9.068l.074-.074 8.463-8.463h2.565l7.18 7.181V586.58Zm-15.715 14.654 3.698 3.699 1.283 1.282-2.565 2.565-1.282-1.283-5.2-5.199h-6.066l-5.514 5.514-.073.073v2.876a2.418 2.418 0 0 0 2.418 2.418h26.598a2.418 2.418 0 0 0 2.418-2.418v-8.317l-8.463-8.463-7.181 7.181-.071.072Zm-19.347 5.442v4.085a6.045 6.045 0 0 0 6.046 6.045h26.598a6.044 6.044 0 0 0 6.045-6.045v-7.108l1.356-1.355-1.282-1.283-.074-.073v-17.989h-38.689v23.43l-.146.146.146.147Z" clip-rule="evenodd"/></g><path stroke="#C9C9C9" stroke-width="2.418" d="M600.709 656.704c-31.384 0-56.825-25.441-56.825-56.824 0-31.384 25.441-56.825 56.825-56.825 31.383 0 56.824 25.441 56.824 56.825 0 31.383-25.441 56.824-56.824 56.824Z"/></g><defs><linearGradient id="a" x1="554.061" x2="-.48" y1=".083" y2=".087" gradientUnits="userSpaceOnUse"><stop stop-color="#C9C9C9" stop-opacity="0"/><stop offset=".208" stop-color="#C9C9C9"/><stop offset=".792" stop-color="#C9C9C9"/><stop offset="1" stop-color="#C9C9C9" stop-opacity="0"/></linearGradient><linearGradient id="b" x1="796.912" x2="404.507" y1="599.963" y2="599.965" gradientUnits="userSpaceOnUse"><stop stop-color="#C9C9C9" stop-opacity="0"/><stop offset=".208" stop-color="#C9C9C9"/><stop offset=".792" stop-color="#C9C9C9"/><stop offset="1" stop-color="#C9C9C9" stop-opacity="0"/></linearGradient><linearGradient id="c" x1="600.792" x2="600.794" y1="403.677" y2="796.082" gradientUnits="userSpaceOnUse"><stop stop-color="#C9C9C9" stop-opacity="0"/><stop offset=".208" stop-color="#C9C9C9"/><stop offset=".792" stop-color="#C9C9C9"/><stop offset="1" stop-color="#C9C9C9" stop-opacity="0"/></linearGradient><linearGradient id="d" x1="404.85" x2="796.972" y1="403.903" y2="796.02" gradientUnits="userSpaceOnUse"><stop stop-color="#C9C9C9" stop-opacity="0"/><stop offset=".208" stop-color="#C9C9C9"/><stop offset=".792" stop-color="#C9C9C9"/><stop offset="1" stop-color="#C9C9C9" stop-opacity="0"/></linearGradient><clipPath id="e"><path fill="#fff" d="M581.364 580.535h38.689v38.689h-38.689z"/></clipPath></defs></svg>
|
package/brand/reversed/logo.png
DELETED
|
Binary file
|
package/brand/reversed/logo.svg
DELETED
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 259 280" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<style>
|
|
3
|
-
.nsw-red {
|
|
4
|
-
fill: #d7153a;
|
|
5
|
-
stroke-width: 0;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
.nsw-blue {
|
|
9
|
-
fill: #FFFFFF;
|
|
10
|
-
stroke-width: 0;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
@media (prefers-color-scheme: dark) {
|
|
14
|
-
|
|
15
|
-
.nsw-red,
|
|
16
|
-
.nsw-blue {
|
|
17
|
-
fill: white;
|
|
18
|
-
stroke-width: 0;
|
|
19
|
-
}
|
|
20
|
-
}
|
|
21
|
-
</style>
|
|
22
|
-
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
23
|
-
d="M24.208 270.207h-5.045v-4.277l11.15.054v13.676H26.08v-2.491c-.266.278-.553.556-.86.833-.673.585-1.49 1.07-2.433 1.434-.96.373-2.143.564-3.513.564-2.33 0-4.385-.539-6.109-1.6-1.727-1.065-3.073-2.594-4.007-4.538-.926-1.927-1.395-4.231-1.395-6.85 0-2.657.494-4.994 1.47-6.946.971-1.96 2.363-3.498 4.132-4.571 1.768-1.065 3.849-1.604 6.183-1.604 1.515 0 2.915.245 4.156.725 1.255.485 2.36 1.157 3.273 1.985a9.61 9.61 0 0 1 2.192 2.852 8.196 8.196 0 0 1 .872 3.319l.021.435h-6.038l-.062-.339a5.22 5.22 0 0 0-.814-1.981 4.562 4.562 0 0 0-1.537-1.43c-.614-.352-1.345-.531-2.175-.531-1.005 0-1.931.261-2.741.775-.806.51-1.458 1.351-1.935 2.495-.486 1.169-.731 2.74-.731 4.679 0 1.579.162 2.897.482 3.925.311 1.011.739 1.819 1.266 2.403.523.581 1.117.991 1.773 1.219a6.036 6.036 0 0 0 2.089.369c.669 0 1.27-.112 1.79-.328.523-.224.98-.514 1.354-.866.377-.356.676-.746.884-1.152.216-.41.349-.816.399-1.21l.14-1.028Zm20.878-16.312c2.354 0 4.435.534 6.179 1.587 1.752 1.061 3.13 2.59 4.086 4.546.947 1.935 1.428 4.281 1.428 6.967 0 2.648-.473 4.969-1.412 6.9-.946 1.948-2.317 3.469-4.073 4.521-1.744 1.053-3.837 1.583-6.212 1.583-2.396 0-4.502-.534-6.254-1.583-1.753-1.044-3.135-2.557-4.099-4.505-.947-1.927-1.428-4.252-1.428-6.912 0-2.673.486-5.015 1.449-6.954.968-1.956 2.355-3.486 4.12-4.551 1.764-1.061 3.853-1.599 6.216-1.599Zm0 21.185c1.117 0 2.093-.265 2.898-.787.802-.523 1.433-1.372 1.881-2.516.453-1.185.686-2.772.686-4.712 0-1.993-.237-3.618-.698-4.832-.444-1.181-1.08-2.056-1.885-2.603-.814-.543-1.782-.82-2.878-.82-1.1 0-2.072.277-2.886.82-.81.543-1.453 1.422-1.906 2.611-.47 1.223-.706 2.843-.706 4.82 0 1.944.237 3.531.702 4.712.452 1.148 1.092 1.997 1.902 2.515.81.527 1.781.792 2.89.792Zm23.764-2.93-6.162-17.829H57.09l8.654 25.251h6.195l8.73-25.251h-5.607L68.85 272.15Zm30.312-2.827H88.863v5.206l12.043.016v5.027H83.103v-25.251h17.632l-.016 4.99H88.892v5.089h10.27v4.923Zm22.482-1.529c.685-.613 1.246-1.401 1.678-2.341.419-.933.635-2.081.635-3.419 0-1.497-.311-2.835-.93-3.983-.619-1.169-1.599-2.093-2.919-2.756-1.3-.647-2.973-.974-4.975-.974h-10.738v25.243h5.759v-9.404h4.24l3.991 9.404h6.046l-4.651-10.456c.673-.357 1.3-.8 1.864-1.314Zm-3.513-5.64c0 .999-.336 1.79-1.025 2.428-.69.63-1.649.949-2.857.949h-4.095v-6.606h4.456c1.038 0 1.873.286 2.545.875.657.576.976 1.347.976 2.354Zm15.159-7.833 10.527 15.23v-15.23h5.776v25.251h-5.086l-10.98-15.86v15.86h-5.759v-25.251h5.522Zm33.949 16.461-5.29-16.461h-7.894v25.251h5.809v-16.266l5.124 16.266h4.485l5.162-16.357v16.357h5.826v-25.251h-7.878l-5.344 16.461Zm33.727-1.459h-10.298v5.206l12.046.016v5.027h-17.806v-25.251h17.636l-.021 4.99h-11.818v5.089h10.261v4.923Zm21.494.228-10.523-15.23h-5.527v25.251h5.756v-15.86l10.979 15.86h5.087v-25.251h-5.772v15.23Zm15.586-10.004h-7.388v-5.226h20.402v5.226h-7.217v20.025h-5.797v-20.025Z"
|
|
24
|
-
class="nsw-blue" />
|
|
25
|
-
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
26
|
-
d="M146.699 209.236c-1.482-2.395-3.717-4.571-6.64-6.465-2.919-1.894-6.897-3.34-11.81-4.297l-13.678-2.814c-4.132-.891-6.981-2.043-8.468-3.419-1.449-1.343-2.184-3.129-2.184-5.309 0-1.388.316-2.652.943-3.759.623-1.111 1.528-2.093 2.687-2.922 1.166-.828 2.616-1.483 4.306-1.943 1.711-.469 3.633-.705 5.714-.705 2.74 0 5.211.361 7.346 1.078 2.109.713 3.857 1.881 5.194 3.481 1.338 1.6 2.16 3.775 2.442 6.465l.038.373h16.971l-.008-.427c-.075-4.575-1.371-8.773-3.85-12.474-2.483-3.705-6.141-6.681-10.879-8.852-4.726-2.164-10.623-3.262-17.528-3.262-5.801 0-11.117 1.011-15.805 3.009-4.7 2.002-8.475 4.89-11.212 8.587-2.749 3.717-4.12 8.164-4.078 13.224.112 6.175 1.99 11.186 5.577 14.903 3.576 3.697 8.476 6.158 14.567 7.306l13.795 2.81c2.529.502 4.825 1.16 6.823 1.96 1.96.784 3.525 1.803 4.651 3.03 1.1 1.197 1.657 2.772 1.657 4.67 0 2.114-.694 3.9-2.06 5.301-1.4 1.434-3.301 2.515-5.643 3.224-2.388.721-5.058 1.086-7.936 1.086-2.807 0-5.394-.435-7.686-1.297-2.28-.85-4.194-2.093-5.689-3.693-1.491-1.591-2.513-3.585-3.04-5.918l-.075-.327H83.846l.045.46c.407 4.045 1.666 7.629 3.738 10.659 2.068 3.009 4.717 5.545 7.873 7.551 3.148 1.993 6.677 3.514 10.494 4.513a46.33 46.33 0 0 0 11.693 1.5c6.466 0 12.2-1.019 17.046-3.034 4.867-2.022 8.717-4.807 11.449-8.276 2.753-3.493 4.148-7.476 4.148-11.848 0-2.064-.232-4.36-.697-6.822-.478-2.482-1.466-4.948-2.936-7.327ZM25.937 191.763l36.916 53.312H77.87v-79.724H61.072v51.282L25.754 165.53l-.125-.179H9.19v79.724h16.748v-53.312Zm196.637 24.577 14.388-50.987h16.457l-23.587 79.724h-13.367l-14.554-50.469-14.659 50.469h-13.147l-23.533-79.724h16.511l14.384 50.979 14.389-50.979h12.167l14.551 50.987Z"
|
|
27
|
-
class="nsw-blue" />
|
|
28
|
-
<path
|
|
29
|
-
d="M122.291 145.572c-19.75-2.424-38.934 3.904-72.69-5.263-3.447-.937-4.718 2.694-2.854 5.736 9.07 14.803 54.881 3.203 75.635 1.065.906-.095.814-1.426-.091-1.538ZM208.735 140.309c-33.756 9.167-52.941 2.839-72.691 5.263-.905.112-1 1.447-.091 1.538 20.759 2.138 66.566 13.738 75.635-1.065 1.864-3.042.594-6.673-2.853-5.736ZM59.882 119.132c-6.864-10.058-12.474-21.31-16.818-33.69-13.101 3.826-26.51 9.346-40.16 16.57a5.388 5.388 0 0 0-2.902 4.67 5.38 5.38 0 0 0 2.653 4.812c26.431 15.802 52.273 24.841 76.93 26.933-7.34-4.475-14.072-11.044-19.703-19.295ZM23.059 85.513a201.529 201.529 0 0 1 17.976-6.233c-2.126-6.896-3.87-14.12-5.249-21.658-6.827-.85-13.89-1.4-21.199-1.641-.062 0-.128-.004-.19-.004a5.391 5.391 0 0 0-4.647 2.602 5.383 5.383 0 0 0-.12 5.483c4.243 7.659 8.724 14.808 13.429 21.45ZM88.005 135.572c4.099 1.807 8.293 2.818 12.358 3.029-9.953-7.12-17.773-19.192-22.278-34.58-5.805-19.81-7.745-41.666-5.83-65.247-7.832-4.936-16.32-9.557-25.46-13.85a5.428 5.428 0 0 0-5.402.43 5.396 5.396 0 0 0-2.388 4.841c2.126 34.215 10.95 62.915 26.223 85.298 6.404 9.391 14.281 16.332 22.777 20.079ZM107.488 23.577A253.323 253.323 0 0 0 92.235 6.735c-1.063-1.078-2.433-1.65-3.85-1.65-.506 0-1.017.075-1.523.224-1.923.568-3.314 2.106-3.733 4.115-1.072 5.164-3.11 15.69-4.012 26.101 7.014 4.613 13.492 9.49 19.426 14.621 2.3-8.757 5.29-17.63 8.945-26.569ZM255.42 102.007c-13.65-7.223-27.058-12.744-40.16-16.569-4.343 12.38-9.953 23.631-16.818 33.689-5.63 8.255-12.362 14.82-19.708 19.296 24.658-2.093 50.5-11.132 76.931-26.934 1.715-1.024 2.707-2.822 2.653-4.811-.045-1.99-1.133-3.734-2.898-4.671ZM235.273 85.513c4.705-6.643 9.186-13.796 13.43-21.455.963-1.74.922-3.788-.121-5.483a5.4 5.4 0 0 0-4.837-2.598c-7.309.24-14.377.796-21.199 1.641-1.375 7.539-3.123 14.762-5.249 21.658a203.803 203.803 0 0 1 17.976 6.237ZM180.247 104.025c-4.505 15.384-12.329 27.46-22.278 34.58 4.065-.211 8.263-1.227 12.358-3.034 8.496-3.746 16.373-10.688 22.777-20.075 15.273-22.383 24.097-51.082 26.223-85.297a5.394 5.394 0 0 0-2.388-4.84 5.428 5.428 0 0 0-5.402-.432c-9.14 4.29-17.628 8.91-25.46 13.85 1.915 23.582-.029 45.434-5.83 65.248ZM179.214 35.52c-.901-10.406-2.94-20.932-4.011-26.1-.416-2.01-1.811-3.547-3.733-4.115a5.39 5.39 0 0 0-1.524-.224c-1.416 0-2.787.572-3.85 1.65-5.485 5.549-10.568 11.164-15.252 16.842 3.654 8.939 6.644 17.812 8.949 26.565 5.934-5.127 12.407-10.005 19.421-14.617ZM129.144 87.229c6.64-13.092 17.246-24.829 25.21-32.243-4.372-17.779-11.104-34.55-20.397-52.097C132.998 1.078 131.195 0 129.148 0s-3.845 1.082-4.808 2.889c-9.389 17.604-16.237 35.122-20.377 52.093 8.313 7.688 19.28 20.224 25.181 32.247Z"
|
|
30
|
-
class="nsw-red" />
|
|
31
|
-
<path
|
|
32
|
-
d="M153.541 133.686c6.885-4.833 13.77-13.254 18.139-24.97 8.458-22.681 9.334-47.945 8.122-65.823-15.331 10.215-39.665 31.55-47.975 54.36-3.911 10.734-5.734 25.355-2.72 33.511 1.259 3.411 3.401 5.997 6.345 7.227 4.46 1.865 11.312.456 18.089-4.305ZM125.713 95.261c-2.027-4.724-4.261-9.18-7.728-14.186-9.809-14.16-23.026-26.933-39.475-38.185-.17 2.652-2.57 31.297 5.851 59.304 6.408 21.302 17.354 29.98 23.354 33.333 6.038 3.369 11.561 4.165 18.039 2.557-6.565-8.935-5.747-27.27-.041-42.823Z"
|
|
33
|
-
class="nsw-red" />
|
|
34
|
-
</svg>
|
package/brand/white/logo.png
DELETED
|
Binary file
|
package/brand/white/logo.svg
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 259 280" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<style>
|
|
3
|
-
.nsw-red,
|
|
4
|
-
.nsw-blue {
|
|
5
|
-
fill: #FFFFFF;
|
|
6
|
-
stroke-width: 0;
|
|
7
|
-
}
|
|
8
|
-
</style>
|
|
9
|
-
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
10
|
-
d="M24.208 270.207h-5.045v-4.277l11.15.054v13.676H26.08v-2.491c-.266.278-.553.556-.86.833-.673.585-1.49 1.07-2.433 1.434-.96.373-2.143.564-3.513.564-2.33 0-4.385-.539-6.109-1.6-1.727-1.065-3.073-2.594-4.007-4.538-.926-1.927-1.395-4.231-1.395-6.85 0-2.657.494-4.994 1.47-6.946.971-1.96 2.363-3.498 4.132-4.571 1.768-1.065 3.849-1.604 6.183-1.604 1.515 0 2.915.245 4.156.725 1.255.485 2.36 1.157 3.273 1.985a9.61 9.61 0 0 1 2.192 2.852 8.196 8.196 0 0 1 .872 3.319l.021.435h-6.038l-.062-.339a5.22 5.22 0 0 0-.814-1.981 4.562 4.562 0 0 0-1.537-1.43c-.614-.352-1.345-.531-2.175-.531-1.005 0-1.931.261-2.741.775-.806.51-1.458 1.351-1.935 2.495-.486 1.169-.731 2.74-.731 4.679 0 1.579.162 2.897.482 3.925.311 1.011.739 1.819 1.266 2.403.523.581 1.117.991 1.773 1.219a6.036 6.036 0 0 0 2.089.369c.669 0 1.27-.112 1.79-.328.523-.224.98-.514 1.354-.866.377-.356.676-.746.884-1.152.216-.41.349-.816.399-1.21l.14-1.028Zm20.878-16.312c2.354 0 4.435.534 6.179 1.587 1.752 1.061 3.13 2.59 4.086 4.546.947 1.935 1.428 4.281 1.428 6.967 0 2.648-.473 4.969-1.412 6.9-.946 1.948-2.317 3.469-4.073 4.521-1.744 1.053-3.837 1.583-6.212 1.583-2.396 0-4.502-.534-6.254-1.583-1.753-1.044-3.135-2.557-4.099-4.505-.947-1.927-1.428-4.252-1.428-6.912 0-2.673.486-5.015 1.449-6.954.968-1.956 2.355-3.486 4.12-4.551 1.764-1.061 3.853-1.599 6.216-1.599Zm0 21.185c1.117 0 2.093-.265 2.898-.787.802-.523 1.433-1.372 1.881-2.516.453-1.185.686-2.772.686-4.712 0-1.993-.237-3.618-.698-4.832-.444-1.181-1.08-2.056-1.885-2.603-.814-.543-1.782-.82-2.878-.82-1.1 0-2.072.277-2.886.82-.81.543-1.453 1.422-1.906 2.611-.47 1.223-.706 2.843-.706 4.82 0 1.944.237 3.531.702 4.712.452 1.148 1.092 1.997 1.902 2.515.81.527 1.781.792 2.89.792Zm23.764-2.93-6.162-17.829H57.09l8.654 25.251h6.195l8.73-25.251h-5.607L68.85 272.15Zm30.312-2.827H88.863v5.206l12.043.016v5.027H83.103v-25.251h17.632l-.016 4.99H88.892v5.089h10.27v4.923Zm22.482-1.529c.685-.613 1.246-1.401 1.678-2.341.419-.933.635-2.081.635-3.419 0-1.497-.311-2.835-.93-3.983-.619-1.169-1.599-2.093-2.919-2.756-1.3-.647-2.973-.974-4.975-.974h-10.738v25.243h5.759v-9.404h4.24l3.991 9.404h6.046l-4.651-10.456c.673-.357 1.3-.8 1.864-1.314Zm-3.513-5.64c0 .999-.336 1.79-1.025 2.428-.69.63-1.649.949-2.857.949h-4.095v-6.606h4.456c1.038 0 1.873.286 2.545.875.657.576.976 1.347.976 2.354Zm15.159-7.833 10.527 15.23v-15.23h5.776v25.251h-5.086l-10.98-15.86v15.86h-5.759v-25.251h5.522Zm33.949 16.461-5.29-16.461h-7.894v25.251h5.809v-16.266l5.124 16.266h4.485l5.162-16.357v16.357h5.826v-25.251h-7.878l-5.344 16.461Zm33.727-1.459h-10.298v5.206l12.046.016v5.027h-17.806v-25.251h17.636l-.021 4.99h-11.818v5.089h10.261v4.923Zm21.494.228-10.523-15.23h-5.527v25.251h5.756v-15.86l10.979 15.86h5.087v-25.251h-5.772v15.23Zm15.586-10.004h-7.388v-5.226h20.402v5.226h-7.217v20.025h-5.797v-20.025Z"
|
|
11
|
-
class="nsw-blue" />
|
|
12
|
-
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
13
|
-
d="M146.699 209.236c-1.482-2.395-3.717-4.571-6.64-6.465-2.919-1.894-6.897-3.34-11.81-4.297l-13.678-2.814c-4.132-.891-6.981-2.043-8.468-3.419-1.449-1.343-2.184-3.129-2.184-5.309 0-1.388.316-2.652.943-3.759.623-1.111 1.528-2.093 2.687-2.922 1.166-.828 2.616-1.483 4.306-1.943 1.711-.469 3.633-.705 5.714-.705 2.74 0 5.211.361 7.346 1.078 2.109.713 3.857 1.881 5.194 3.481 1.338 1.6 2.16 3.775 2.442 6.465l.038.373h16.971l-.008-.427c-.075-4.575-1.371-8.773-3.85-12.474-2.483-3.705-6.141-6.681-10.879-8.852-4.726-2.164-10.623-3.262-17.528-3.262-5.801 0-11.117 1.011-15.805 3.009-4.7 2.002-8.475 4.89-11.212 8.587-2.749 3.717-4.12 8.164-4.078 13.224.112 6.175 1.99 11.186 5.577 14.903 3.576 3.697 8.476 6.158 14.567 7.306l13.795 2.81c2.529.502 4.825 1.16 6.823 1.96 1.96.784 3.525 1.803 4.651 3.03 1.1 1.197 1.657 2.772 1.657 4.67 0 2.114-.694 3.9-2.06 5.301-1.4 1.434-3.301 2.515-5.643 3.224-2.388.721-5.058 1.086-7.936 1.086-2.807 0-5.394-.435-7.686-1.297-2.28-.85-4.194-2.093-5.689-3.693-1.491-1.591-2.513-3.585-3.04-5.918l-.075-.327H83.846l.045.46c.407 4.045 1.666 7.629 3.738 10.659 2.068 3.009 4.717 5.545 7.873 7.551 3.148 1.993 6.677 3.514 10.494 4.513a46.33 46.33 0 0 0 11.693 1.5c6.466 0 12.2-1.019 17.046-3.034 4.867-2.022 8.717-4.807 11.449-8.276 2.753-3.493 4.148-7.476 4.148-11.848 0-2.064-.232-4.36-.697-6.822-.478-2.482-1.466-4.948-2.936-7.327ZM25.937 191.763l36.916 53.312H77.87v-79.724H61.072v51.282L25.754 165.53l-.125-.179H9.19v79.724h16.748v-53.312Zm196.637 24.577 14.388-50.987h16.457l-23.587 79.724h-13.367l-14.554-50.469-14.659 50.469h-13.147l-23.533-79.724h16.511l14.384 50.979 14.389-50.979h12.167l14.551 50.987Z"
|
|
14
|
-
class="nsw-blue" />
|
|
15
|
-
<path
|
|
16
|
-
d="M122.291 145.572c-19.75-2.424-38.934 3.904-72.69-5.263-3.447-.937-4.718 2.694-2.854 5.736 9.07 14.803 54.881 3.203 75.635 1.065.906-.095.814-1.426-.091-1.538ZM208.735 140.309c-33.756 9.167-52.941 2.839-72.691 5.263-.905.112-1 1.447-.091 1.538 20.759 2.138 66.566 13.738 75.635-1.065 1.864-3.042.594-6.673-2.853-5.736ZM59.882 119.132c-6.864-10.058-12.474-21.31-16.818-33.69-13.101 3.826-26.51 9.346-40.16 16.57a5.388 5.388 0 0 0-2.902 4.67 5.38 5.38 0 0 0 2.653 4.812c26.431 15.802 52.273 24.841 76.93 26.933-7.34-4.475-14.072-11.044-19.703-19.295ZM23.059 85.513a201.529 201.529 0 0 1 17.976-6.233c-2.126-6.896-3.87-14.12-5.249-21.658-6.827-.85-13.89-1.4-21.199-1.641-.062 0-.128-.004-.19-.004a5.391 5.391 0 0 0-4.647 2.602 5.383 5.383 0 0 0-.12 5.483c4.243 7.659 8.724 14.808 13.429 21.45ZM88.005 135.572c4.099 1.807 8.293 2.818 12.358 3.029-9.953-7.12-17.773-19.192-22.278-34.58-5.805-19.81-7.745-41.666-5.83-65.247-7.832-4.936-16.32-9.557-25.46-13.85a5.428 5.428 0 0 0-5.402.43 5.396 5.396 0 0 0-2.388 4.841c2.126 34.215 10.95 62.915 26.223 85.298 6.404 9.391 14.281 16.332 22.777 20.079ZM107.488 23.577A253.323 253.323 0 0 0 92.235 6.735c-1.063-1.078-2.433-1.65-3.85-1.65-.506 0-1.017.075-1.523.224-1.923.568-3.314 2.106-3.733 4.115-1.072 5.164-3.11 15.69-4.012 26.101 7.014 4.613 13.492 9.49 19.426 14.621 2.3-8.757 5.29-17.63 8.945-26.569ZM255.42 102.007c-13.65-7.223-27.058-12.744-40.16-16.569-4.343 12.38-9.953 23.631-16.818 33.689-5.63 8.255-12.362 14.82-19.708 19.296 24.658-2.093 50.5-11.132 76.931-26.934 1.715-1.024 2.707-2.822 2.653-4.811-.045-1.99-1.133-3.734-2.898-4.671ZM235.273 85.513c4.705-6.643 9.186-13.796 13.43-21.455.963-1.74.922-3.788-.121-5.483a5.4 5.4 0 0 0-4.837-2.598c-7.309.24-14.377.796-21.199 1.641-1.375 7.539-3.123 14.762-5.249 21.658a203.803 203.803 0 0 1 17.976 6.237ZM180.247 104.025c-4.505 15.384-12.329 27.46-22.278 34.58 4.065-.211 8.263-1.227 12.358-3.034 8.496-3.746 16.373-10.688 22.777-20.075 15.273-22.383 24.097-51.082 26.223-85.297a5.394 5.394 0 0 0-2.388-4.84 5.428 5.428 0 0 0-5.402-.432c-9.14 4.29-17.628 8.91-25.46 13.85 1.915 23.582-.029 45.434-5.83 65.248ZM179.214 35.52c-.901-10.406-2.94-20.932-4.011-26.1-.416-2.01-1.811-3.547-3.733-4.115a5.39 5.39 0 0 0-1.524-.224c-1.416 0-2.787.572-3.85 1.65-5.485 5.549-10.568 11.164-15.252 16.842 3.654 8.939 6.644 17.812 8.949 26.565 5.934-5.127 12.407-10.005 19.421-14.617ZM129.144 87.229c6.64-13.092 17.246-24.829 25.21-32.243-4.372-17.779-11.104-34.55-20.397-52.097C132.998 1.078 131.195 0 129.148 0s-3.845 1.082-4.808 2.889c-9.389 17.604-16.237 35.122-20.377 52.093 8.313 7.688 19.28 20.224 25.181 32.247Z"
|
|
17
|
-
class="nsw-red" />
|
|
18
|
-
<path
|
|
19
|
-
d="M153.541 133.686c6.885-4.833 13.77-13.254 18.139-24.97 8.458-22.681 9.334-47.945 8.122-65.823-15.331 10.215-39.665 31.55-47.975 54.36-3.911 10.734-5.734 25.355-2.72 33.511 1.259 3.411 3.401 5.997 6.345 7.227 4.46 1.865 11.312.456 18.089-4.305ZM125.713 95.261c-2.027-4.724-4.261-9.18-7.728-14.186-9.809-14.16-23.026-26.933-39.475-38.185-.17 2.652-2.57 31.297 5.851 59.304 6.408 21.302 17.354 29.98 23.354 33.333 6.038 3.369 11.561 4.165 18.039 2.557-6.565-8.935-5.747-27.27-.041-42.823Z"
|
|
20
|
-
class="nsw-red" />
|
|
21
|
-
</svg>
|
package/create-branch.sh
DELETED
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
#!/bin/bash
|
|
2
|
-
|
|
3
|
-
# Allowed types
|
|
4
|
-
ALLOWED_TYPES="feature|bugfix|hotfix|release|docs|build|test|refactor|chore"
|
|
5
|
-
|
|
6
|
-
# Check if a branch name was provided
|
|
7
|
-
if [ -z "$1" ]; then
|
|
8
|
-
echo "❌ Please provide a branch name."
|
|
9
|
-
echo "Usage: ./create-branch.sh {branch-name}"
|
|
10
|
-
exit 1
|
|
11
|
-
fi
|
|
12
|
-
|
|
13
|
-
branch_name=$1
|
|
14
|
-
|
|
15
|
-
# Regex pattern
|
|
16
|
-
pattern="^(${ALLOWED_TYPES})(/(issue|ticket)/[A-Za-z0-9_-]+)?/[a-z0-9-]+$"
|
|
17
|
-
|
|
18
|
-
# Check against pattern
|
|
19
|
-
if [[ $branch_name =~ $pattern ]]; then
|
|
20
|
-
git checkout -b "$branch_name"
|
|
21
|
-
echo "✅ Branch '$branch_name' created."
|
|
22
|
-
git push -u origin "$branch_name"
|
|
23
|
-
echo "✅ Branch '$branch_name' pushed to remote."
|
|
24
|
-
else
|
|
25
|
-
echo "❌ Branch name '$branch_name' does not follow naming convention."
|
|
26
|
-
echo "✅ Format: {type}[/issue/{number} | /ticket/{id}]/{short-description}"
|
|
27
|
-
echo "📌 Allowed types: $ALLOWED_TYPES"
|
|
28
|
-
exit 1
|
|
29
|
-
fi
|
package/eslint.config.js
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { defineConfig } from 'eslint/config'
|
|
2
|
-
import globals from 'globals'
|
|
3
|
-
import js from '@eslint/js'
|
|
4
|
-
import tseslint from 'typescript-eslint'
|
|
5
|
-
import eslintPluginPrettier from 'eslint-plugin-prettier'
|
|
6
|
-
|
|
7
|
-
export default defineConfig([
|
|
8
|
-
{ files: ['**/*.{js,mjs,cjs,ts}'] },
|
|
9
|
-
{ files: ['**/*.{js,mjs,cjs,ts}'], languageOptions: { globals: globals.browser } },
|
|
10
|
-
{ files: ['**/*.{js,mjs,cjs,ts}'], plugins: { js }, extends: ['js/recommended'] },
|
|
11
|
-
tseslint.configs.recommended,
|
|
12
|
-
{
|
|
13
|
-
plugins: {
|
|
14
|
-
prettier: eslintPluginPrettier,
|
|
15
|
-
},
|
|
16
|
-
rules: {
|
|
17
|
-
'prettier/prettier': 'error', // Enforce Prettier formatting
|
|
18
|
-
},
|
|
19
|
-
},
|
|
20
|
-
])
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
convention:
|
|
3
|
-
commitTypes:
|
|
4
|
-
- feat # Commits, that add or remove a new feature to the API or UI
|
|
5
|
-
- fix # Commits, that fix a API or UI bug of a preceded feat commit
|
|
6
|
-
- refactor # Commits, that rewrite/restructure your code, however do not change any API or UI behaviour
|
|
7
|
-
- perf # Commits are special `refactor` commits, that improve performance
|
|
8
|
-
- style # Commits, that do not affect the meaning (white-space, formatting, missing semi-colons, etc)
|
|
9
|
-
- test # Commits, that add missing tests or correcting existing tests
|
|
10
|
-
- build # Commits, that affect build components like build tool, ci pipeline, dependencies, project version, ...
|
|
11
|
-
- ops # Commits, that affect operational components like infrastructure, deployment, backup, recovery, ...
|
|
12
|
-
- docs # Commits, that affect documentation only
|
|
13
|
-
- chore # Miscellaneous commits e.g. modifying `.gitignore`
|
|
14
|
-
- merge
|
|
15
|
-
- revert
|
|
16
|
-
commitScopes: []
|
|
17
|
-
releaseTagGlobPattern: v[0-9]*.[0-9]*.[0-9]*
|
|
18
|
-
changelog:
|
|
19
|
-
commitTypes:
|
|
20
|
-
- feat
|
|
21
|
-
- fix
|
|
22
|
-
- perf
|
|
23
|
-
- merge
|
|
24
|
-
includeInvalidCommits: true
|
|
25
|
-
commitIgnoreRegexPattern: '^WIP '
|
|
26
|
-
headlines:
|
|
27
|
-
feat: Features
|
|
28
|
-
fix: Bug Fixes
|
|
29
|
-
perf: Performance Improvements
|
|
30
|
-
merge: Merges
|
|
31
|
-
breakingChange: BREAKING CHANGES
|
|
32
|
-
|
|
33
|
-
## GitHub
|
|
34
|
-
# commitUrl: https://github.com/ACCOUNT/REPOSITORY/commit/%commit%
|
|
35
|
-
# commitRangeUrl: https://github.com/ACCOUNT/REPOSITORY/compare/%from%...%to%?diff=split
|
|
36
|
-
|
|
37
|
-
## GitHub Issues
|
|
38
|
-
# issueRegexPattern: "#[0-9]+"
|
|
39
|
-
# issueUrl: https://github.com/ACCOUNT/REPOSITORY/issues/%issue%
|
|
40
|
-
|
|
41
|
-
## Jira Issues
|
|
42
|
-
# issueRegexPattern: "[A-Z][A-Z0-9]+-[0-9]+"
|
|
43
|
-
# issueUrl: https://WORKSPACE.atlassian.net/browse/%issue%
|
package/icons/account_circle.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#5f6368"><path d="M234-276q51-39 114-61.5T480-360q69 0 132 22.5T726-276q35-41 54.5-93T800-480q0-133-93.5-226.5T480-800q-133 0-226.5 93.5T160-480q0 59 19.5 111t54.5 93Zm246-164q-59 0-99.5-40.5T340-580q0-59 40.5-99.5T480-720q59 0 99.5 40.5T620-580q0 59-40.5 99.5T480-440Zm0 360q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q53 0 100-15.5t86-44.5q-39-29-86-44.5T480-280q-53 0-100 15.5T294-220q39 29 86 44.5T480-160Zm0-360q26 0 43-17t17-43q0-26-17-43t-43-17q-26 0-43 17t-17 43q0 26 17 43t43 17Zm0-60Zm0 360Z"/></svg>
|
package/icons/attach_file.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#5f6368"><path d="M720-330q0 104-73 177T470-80q-104 0-177-73t-73-177v-370q0-75 52.5-127.5T400-880q75 0 127.5 52.5T580-700v350q0 46-32 78t-78 32q-46 0-78-32t-32-78v-330q0-17 11.5-28.5T400-720q17 0 28.5 11.5T440-680v330q0 13 8.5 21.5T470-320q13 0 21.5-8.5T500-350v-350q-1-42-29.5-71T400-800q-42 0-71 29t-29 71v370q-1 71 49 120.5T470-160q70 0 119-49.5T640-330v-350q0-17 11.5-28.5T680-720q17 0 28.5 11.5T720-680v350Z"/></svg>
|
package/icons/cancel.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#5f6368"><path d="m480-424 116 116q11 11 28 11t28-11q11-11 11-28t-11-28L536-480l116-116q11-11 11-28t-11-28q-11-11-28-11t-28 11L480-536 364-652q-11-11-28-11t-28 11q-11 11-11 28t11 28l116 116-116 116q-11 11-11 28t11 28q11 11 28 11t28-11l116-116Zm0 344q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z"/></svg>
|
package/icons/check.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#5f6368"><path d="m382-354 339-339q12-12 28-12t28 12q12 12 12 28.5T777-636L410-268q-12 12-28 12t-28-12L182-440q-12-12-11.5-28.5T183-497q12-12 28.5-12t28.5 12l142 143Z"/></svg>
|
package/icons/check_circle.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#5f6368"><path d="m424-408-86-86q-11-11-28-11t-28 11q-11 11-11 28t11 28l114 114q12 12 28 12t28-12l226-226q11-11 11-28t-11-28q-11-11-28-11t-28 11L424-408Zm56 328q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z"/></svg>
|
package/icons/chevron_down.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#5f6368"><path d="M480-361q-8 0-15-2.5t-13-8.5L268-556q-11-11-11-28t11-28q11-11 28-11t28 11l156 156 156-156q11-11 28-11t28 11q11 11 11 28t-11 28L508-372q-6 6-13 8.5t-15 2.5Z"/></svg>
|
package/icons/chevron_left.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#5f6368"><path d="m432-480 156 156q11 11 11 28t-11 28q-11 11-28 11t-28-11L348-452q-6-6-8.5-13t-2.5-15q0-8 2.5-15t8.5-13l184-184q11-11 28-11t28 11q11 11 11 28t-11 28L432-480Z"/></svg>
|
package/icons/chevron_right.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#5f6368"><path d="M504-480 348-636q-11-11-11-28t11-28q11-11 28-11t28 11l184 184q6 6 8.5 13t2.5 15q0 8-2.5 15t-8.5 13L404-268q-11 11-28 11t-28-11q-11-11-11-28t11-28l156-156Z"/></svg>
|
package/icons/chevron_up.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#5f6368"><path d="M480-528 324-372q-11 11-28 11t-28-11q-11-11-11-28t11-28l184-184q12-12 28-12t28 12l184 184q11 11 11 28t-11 28q-11 11-28 11t-28-11L480-528Z"/></svg>
|
package/icons/close.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#5f6368"><path d="M480-424 284-228q-11 11-28 11t-28-11q-11-11-11-28t11-28l196-196-196-196q-11-11-11-28t11-28q11-11 28-11t28 11l196 196 196-196q11-11 28-11t28 11q11 11 11 28t-11 28L536-480l196 196q11 11 11 28t-11 28q-11 11-28 11t-28-11L480-424Z"/></svg>
|
package/icons/collapse_all.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#5f6368"><path d="M480-264 324-108q-11 11-28 11t-28-11q-11-11-11-28t11-28l155-155q23-23 57-23t57 23l155 155q11 11 11 28t-11 28q-11 11-28 11t-28-11L480-264Zm0-432 156-156q11-11 28-11t28 11q11 11 11 28t-11 28L537-641q-23 23-57 23t-57-23L268-796q-11-11-11-28t11-28q11-11 28-11t28 11l156 156Z"/></svg>
|