├── .all-contributorsrc ├── .editorconfig ├── .eslintrc.json ├── .github └── workflows │ ├── pre-release.yaml │ └── release.yaml ├── .gitignore ├── .husky ├── .gitignore └── commit-msg ├── .nx └── cache │ ├── file-map.json │ ├── lockfile.hash │ ├── parsed-lock-file.json │ └── project-graph.json ├── .prettierrc ├── .releaserc.json ├── .vscode ├── extensions.json ├── launch.json └── tasks.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── angular.json ├── assets ├── @ngneat_avvvatars.png ├── BE shape.png ├── BE.png ├── demo.mp4 └── logo.svg ├── commitlint.config.js ├── hooks └── pre-commit.js ├── package.json ├── projects └── ngneat │ └── avvvatars │ ├── .eslintrc.json │ ├── README.md │ ├── ng-package.json │ ├── package.json │ ├── src │ ├── lib │ │ ├── avvvatars.component.html │ │ ├── avvvatars.component.ts │ │ ├── components │ │ │ ├── shape │ │ │ │ ├── all-shapes.ts │ │ │ │ ├── shape.component.css │ │ │ │ ├── shape.component.html │ │ │ │ └── shape.component.ts │ │ │ ├── text │ │ │ │ ├── text.component.css │ │ │ │ ├── text.component.html │ │ │ │ └── text.component.ts │ │ │ └── wrapper │ │ │ │ ├── wrapper.component.html │ │ │ │ ├── wrapper.component.scss │ │ │ │ └── wrapper.component.ts │ │ ├── constants.ts │ │ ├── types.ts │ │ └── utils │ │ │ ├── alea.ts │ │ │ ├── colors.ts │ │ │ ├── mersenne_twister.ts │ │ │ └── random.ts │ └── public-api.ts │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── src ├── app │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.ts │ ├── app.config.ts │ ├── app.routes.ts │ ├── browser-storage.service.ts │ ├── code-highlight.service.ts │ ├── components │ │ ├── actions │ │ │ ├── actions.component.html │ │ │ ├── actions.component.scss │ │ │ └── actions.component.ts │ │ ├── avatar-demo │ │ │ ├── avatar-demo.component.html │ │ │ ├── avatar-demo.component.scss │ │ │ └── avatar-demo.component.ts │ │ ├── code │ │ │ ├── code.component.html │ │ │ └── code.component.ts │ │ ├── cover │ │ │ ├── cover.component.html │ │ │ ├── cover.component.scss │ │ │ └── cover.component.ts │ │ ├── footer │ │ │ ├── footer.component.html │ │ │ └── footer.component.ts │ │ ├── gradient-wrapper │ │ │ ├── gradient-wrapper.component.html │ │ │ └── gradient-wrapper.component.ts │ │ ├── installation │ │ │ ├── installation.component.html │ │ │ └── installation.component.ts │ │ ├── setup │ │ │ ├── setup.component.html │ │ │ └── setup.component.ts │ │ ├── switch-mode │ │ │ ├── dark │ │ │ │ ├── switch-mode-dark.component.html │ │ │ │ └── switch-mode-dark.component.ts │ │ │ ├── github │ │ │ │ ├── switch-mode-github.component.html │ │ │ │ └── switch-mode-github.component.ts │ │ │ └── live │ │ │ │ ├── switch-mode-live.component.html │ │ │ │ └── switch-mode-live.component.ts │ │ └── usage │ │ │ ├── usage.component.html │ │ │ └── usage.component.ts │ └── theme-manager.service.ts ├── assets │ ├── cover-dark.png │ ├── cover-light.png │ ├── github.svg │ └── logo.svg ├── favicon.ico ├── index.html ├── main.ts ├── styles.scss └── styles │ ├── _utils.scss │ ├── _vendors.scss │ ├── components │ ├── _code.scss │ ├── _gradient-wrapper.scss │ └── _switch-mode.scss │ ├── m3 │ ├── _theme.dark.scss │ ├── _theme.light.scss │ ├── colors.css │ ├── theme.css │ ├── tokens.css │ └── typography.css │ └── themes │ └── dark.scss ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/pre-release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/.github/workflows/pre-release.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.nx/cache/file-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/.nx/cache/file-map.json -------------------------------------------------------------------------------- /.nx/cache/lockfile.hash: -------------------------------------------------------------------------------- 1 | 17083642350757414741 -------------------------------------------------------------------------------- /.nx/cache/parsed-lock-file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/.nx/cache/parsed-lock-file.json -------------------------------------------------------------------------------- /.nx/cache/project-graph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/.nx/cache/project-graph.json -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /.releaserc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/.releaserc.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/angular.json -------------------------------------------------------------------------------- /assets/@ngneat_avvvatars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/assets/@ngneat_avvvatars.png -------------------------------------------------------------------------------- /assets/BE shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/assets/BE shape.png -------------------------------------------------------------------------------- /assets/BE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/assets/BE.png -------------------------------------------------------------------------------- /assets/demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/assets/demo.mp4 -------------------------------------------------------------------------------- /assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/assets/logo.svg -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { extends: ["@commitlint/config-conventional"] }; 2 | -------------------------------------------------------------------------------- /hooks/pre-commit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/hooks/pre-commit.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/package.json -------------------------------------------------------------------------------- /projects/ngneat/avvvatars/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/projects/ngneat/avvvatars/.eslintrc.json -------------------------------------------------------------------------------- /projects/ngneat/avvvatars/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/projects/ngneat/avvvatars/README.md -------------------------------------------------------------------------------- /projects/ngneat/avvvatars/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/projects/ngneat/avvvatars/ng-package.json -------------------------------------------------------------------------------- /projects/ngneat/avvvatars/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/projects/ngneat/avvvatars/package.json -------------------------------------------------------------------------------- /projects/ngneat/avvvatars/src/lib/avvvatars.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/projects/ngneat/avvvatars/src/lib/avvvatars.component.html -------------------------------------------------------------------------------- /projects/ngneat/avvvatars/src/lib/avvvatars.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/projects/ngneat/avvvatars/src/lib/avvvatars.component.ts -------------------------------------------------------------------------------- /projects/ngneat/avvvatars/src/lib/components/shape/all-shapes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/projects/ngneat/avvvatars/src/lib/components/shape/all-shapes.ts -------------------------------------------------------------------------------- /projects/ngneat/avvvatars/src/lib/components/shape/shape.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/projects/ngneat/avvvatars/src/lib/components/shape/shape.component.css -------------------------------------------------------------------------------- /projects/ngneat/avvvatars/src/lib/components/shape/shape.component.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/ngneat/avvvatars/src/lib/components/shape/shape.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/projects/ngneat/avvvatars/src/lib/components/shape/shape.component.ts -------------------------------------------------------------------------------- /projects/ngneat/avvvatars/src/lib/components/text/text.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/projects/ngneat/avvvatars/src/lib/components/text/text.component.css -------------------------------------------------------------------------------- /projects/ngneat/avvvatars/src/lib/components/text/text.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/projects/ngneat/avvvatars/src/lib/components/text/text.component.html -------------------------------------------------------------------------------- /projects/ngneat/avvvatars/src/lib/components/text/text.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/projects/ngneat/avvvatars/src/lib/components/text/text.component.ts -------------------------------------------------------------------------------- /projects/ngneat/avvvatars/src/lib/components/wrapper/wrapper.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/projects/ngneat/avvvatars/src/lib/components/wrapper/wrapper.component.html -------------------------------------------------------------------------------- /projects/ngneat/avvvatars/src/lib/components/wrapper/wrapper.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/projects/ngneat/avvvatars/src/lib/components/wrapper/wrapper.component.scss -------------------------------------------------------------------------------- /projects/ngneat/avvvatars/src/lib/components/wrapper/wrapper.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/projects/ngneat/avvvatars/src/lib/components/wrapper/wrapper.component.ts -------------------------------------------------------------------------------- /projects/ngneat/avvvatars/src/lib/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/projects/ngneat/avvvatars/src/lib/constants.ts -------------------------------------------------------------------------------- /projects/ngneat/avvvatars/src/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/projects/ngneat/avvvatars/src/lib/types.ts -------------------------------------------------------------------------------- /projects/ngneat/avvvatars/src/lib/utils/alea.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/projects/ngneat/avvvatars/src/lib/utils/alea.ts -------------------------------------------------------------------------------- /projects/ngneat/avvvatars/src/lib/utils/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/projects/ngneat/avvvatars/src/lib/utils/colors.ts -------------------------------------------------------------------------------- /projects/ngneat/avvvatars/src/lib/utils/mersenne_twister.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/projects/ngneat/avvvatars/src/lib/utils/mersenne_twister.ts -------------------------------------------------------------------------------- /projects/ngneat/avvvatars/src/lib/utils/random.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/projects/ngneat/avvvatars/src/lib/utils/random.ts -------------------------------------------------------------------------------- /projects/ngneat/avvvatars/src/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/projects/ngneat/avvvatars/src/public-api.ts -------------------------------------------------------------------------------- /projects/ngneat/avvvatars/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/projects/ngneat/avvvatars/tsconfig.lib.json -------------------------------------------------------------------------------- /projects/ngneat/avvvatars/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/projects/ngneat/avvvatars/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /projects/ngneat/avvvatars/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/projects/ngneat/avvvatars/tsconfig.spec.json -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/app/app.component.scss -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/app/app.config.ts -------------------------------------------------------------------------------- /src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/app/app.routes.ts -------------------------------------------------------------------------------- /src/app/browser-storage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/app/browser-storage.service.ts -------------------------------------------------------------------------------- /src/app/code-highlight.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/app/code-highlight.service.ts -------------------------------------------------------------------------------- /src/app/components/actions/actions.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/app/components/actions/actions.component.html -------------------------------------------------------------------------------- /src/app/components/actions/actions.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/actions/actions.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/app/components/actions/actions.component.ts -------------------------------------------------------------------------------- /src/app/components/avatar-demo/avatar-demo.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/app/components/avatar-demo/avatar-demo.component.html -------------------------------------------------------------------------------- /src/app/components/avatar-demo/avatar-demo.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/avatar-demo/avatar-demo.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/app/components/avatar-demo/avatar-demo.component.ts -------------------------------------------------------------------------------- /src/app/components/code/code.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/app/components/code/code.component.html -------------------------------------------------------------------------------- /src/app/components/code/code.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/app/components/code/code.component.ts -------------------------------------------------------------------------------- /src/app/components/cover/cover.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/app/components/cover/cover.component.html -------------------------------------------------------------------------------- /src/app/components/cover/cover.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/cover/cover.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/app/components/cover/cover.component.ts -------------------------------------------------------------------------------- /src/app/components/footer/footer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/app/components/footer/footer.component.html -------------------------------------------------------------------------------- /src/app/components/footer/footer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/app/components/footer/footer.component.ts -------------------------------------------------------------------------------- /src/app/components/gradient-wrapper/gradient-wrapper.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/app/components/gradient-wrapper/gradient-wrapper.component.html -------------------------------------------------------------------------------- /src/app/components/gradient-wrapper/gradient-wrapper.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/app/components/gradient-wrapper/gradient-wrapper.component.ts -------------------------------------------------------------------------------- /src/app/components/installation/installation.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/app/components/installation/installation.component.html -------------------------------------------------------------------------------- /src/app/components/installation/installation.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/app/components/installation/installation.component.ts -------------------------------------------------------------------------------- /src/app/components/setup/setup.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/app/components/setup/setup.component.html -------------------------------------------------------------------------------- /src/app/components/setup/setup.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/app/components/setup/setup.component.ts -------------------------------------------------------------------------------- /src/app/components/switch-mode/dark/switch-mode-dark.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/app/components/switch-mode/dark/switch-mode-dark.component.html -------------------------------------------------------------------------------- /src/app/components/switch-mode/dark/switch-mode-dark.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/app/components/switch-mode/dark/switch-mode-dark.component.ts -------------------------------------------------------------------------------- /src/app/components/switch-mode/github/switch-mode-github.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/app/components/switch-mode/github/switch-mode-github.component.html -------------------------------------------------------------------------------- /src/app/components/switch-mode/github/switch-mode-github.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/app/components/switch-mode/github/switch-mode-github.component.ts -------------------------------------------------------------------------------- /src/app/components/switch-mode/live/switch-mode-live.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/app/components/switch-mode/live/switch-mode-live.component.html -------------------------------------------------------------------------------- /src/app/components/switch-mode/live/switch-mode-live.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/app/components/switch-mode/live/switch-mode-live.component.ts -------------------------------------------------------------------------------- /src/app/components/usage/usage.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/app/components/usage/usage.component.html -------------------------------------------------------------------------------- /src/app/components/usage/usage.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/app/components/usage/usage.component.ts -------------------------------------------------------------------------------- /src/app/theme-manager.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/app/theme-manager.service.ts -------------------------------------------------------------------------------- /src/assets/cover-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/assets/cover-dark.png -------------------------------------------------------------------------------- /src/assets/cover-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/assets/cover-light.png -------------------------------------------------------------------------------- /src/assets/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/assets/github.svg -------------------------------------------------------------------------------- /src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/assets/logo.svg -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/styles/_utils.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/styles/_utils.scss -------------------------------------------------------------------------------- /src/styles/_vendors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/styles/_vendors.scss -------------------------------------------------------------------------------- /src/styles/components/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/styles/components/_code.scss -------------------------------------------------------------------------------- /src/styles/components/_gradient-wrapper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/styles/components/_gradient-wrapper.scss -------------------------------------------------------------------------------- /src/styles/components/_switch-mode.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/styles/components/_switch-mode.scss -------------------------------------------------------------------------------- /src/styles/m3/_theme.dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/styles/m3/_theme.dark.scss -------------------------------------------------------------------------------- /src/styles/m3/_theme.light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/styles/m3/_theme.light.scss -------------------------------------------------------------------------------- /src/styles/m3/colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/styles/m3/colors.css -------------------------------------------------------------------------------- /src/styles/m3/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/styles/m3/theme.css -------------------------------------------------------------------------------- /src/styles/m3/tokens.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/styles/m3/tokens.css -------------------------------------------------------------------------------- /src/styles/m3/typography.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/styles/m3/typography.css -------------------------------------------------------------------------------- /src/styles/themes/dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/src/styles/themes/dark.scss -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngneat/avvvatars/HEAD/tsconfig.spec.json --------------------------------------------------------------------------------