├── .gitignore ├── CLAUDE.md ├── LICENSE ├── README.md ├── __tests__ ├── cli.test.ts ├── lib.test.ts ├── palettes.test.ts ├── renderer.test.ts ├── terminal-cleanup.test.ts └── utils │ ├── errors.test.ts │ └── stdout.test.ts ├── biome.json ├── examples ├── README.md ├── advanced.ts ├── basic.ts ├── error-handling.ts ├── filled.ts └── rainbow.ts ├── images ├── demo.gif ├── demo2.gif └── logo.png ├── package.json ├── scripts ├── README.md └── test-filled-mode.sh ├── src ├── InkRenderer.tsx ├── index.ts ├── lib.ts ├── palettes.ts ├── renderer.ts └── utils │ ├── errors.ts │ └── stdout.ts ├── tsconfig.json └── vitest.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinshin86/oh-my-logo/HEAD/.gitignore -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinshin86/oh-my-logo/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinshin86/oh-my-logo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinshin86/oh-my-logo/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/cli.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinshin86/oh-my-logo/HEAD/__tests__/cli.test.ts -------------------------------------------------------------------------------- /__tests__/lib.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinshin86/oh-my-logo/HEAD/__tests__/lib.test.ts -------------------------------------------------------------------------------- /__tests__/palettes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinshin86/oh-my-logo/HEAD/__tests__/palettes.test.ts -------------------------------------------------------------------------------- /__tests__/renderer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinshin86/oh-my-logo/HEAD/__tests__/renderer.test.ts -------------------------------------------------------------------------------- /__tests__/terminal-cleanup.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinshin86/oh-my-logo/HEAD/__tests__/terminal-cleanup.test.ts -------------------------------------------------------------------------------- /__tests__/utils/errors.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinshin86/oh-my-logo/HEAD/__tests__/utils/errors.test.ts -------------------------------------------------------------------------------- /__tests__/utils/stdout.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinshin86/oh-my-logo/HEAD/__tests__/utils/stdout.test.ts -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinshin86/oh-my-logo/HEAD/biome.json -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinshin86/oh-my-logo/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/advanced.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinshin86/oh-my-logo/HEAD/examples/advanced.ts -------------------------------------------------------------------------------- /examples/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinshin86/oh-my-logo/HEAD/examples/basic.ts -------------------------------------------------------------------------------- /examples/error-handling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinshin86/oh-my-logo/HEAD/examples/error-handling.ts -------------------------------------------------------------------------------- /examples/filled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinshin86/oh-my-logo/HEAD/examples/filled.ts -------------------------------------------------------------------------------- /examples/rainbow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinshin86/oh-my-logo/HEAD/examples/rainbow.ts -------------------------------------------------------------------------------- /images/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinshin86/oh-my-logo/HEAD/images/demo.gif -------------------------------------------------------------------------------- /images/demo2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinshin86/oh-my-logo/HEAD/images/demo2.gif -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinshin86/oh-my-logo/HEAD/images/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinshin86/oh-my-logo/HEAD/package.json -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinshin86/oh-my-logo/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/test-filled-mode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinshin86/oh-my-logo/HEAD/scripts/test-filled-mode.sh -------------------------------------------------------------------------------- /src/InkRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinshin86/oh-my-logo/HEAD/src/InkRenderer.tsx -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinshin86/oh-my-logo/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/lib.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinshin86/oh-my-logo/HEAD/src/lib.ts -------------------------------------------------------------------------------- /src/palettes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinshin86/oh-my-logo/HEAD/src/palettes.ts -------------------------------------------------------------------------------- /src/renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinshin86/oh-my-logo/HEAD/src/renderer.ts -------------------------------------------------------------------------------- /src/utils/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinshin86/oh-my-logo/HEAD/src/utils/errors.ts -------------------------------------------------------------------------------- /src/utils/stdout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinshin86/oh-my-logo/HEAD/src/utils/stdout.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinshin86/oh-my-logo/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinshin86/oh-my-logo/HEAD/vitest.config.ts --------------------------------------------------------------------------------