├── .gitignore ├── .husky └── commit-msg ├── .prettierrc ├── LICENSE ├── README.md ├── babel.config.js ├── commitlint.config.js ├── package.json ├── pnpm-lock.yaml ├── public ├── favicon.ico └── index.html ├── src ├── App.vue ├── assets │ ├── css │ │ └── devices.min.css │ ├── font │ │ └── luckiest_guy.woff2 │ └── images │ │ ├── 1.jpeg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpeg │ │ ├── background-preivew.png │ │ ├── color-palette.gif │ │ ├── example.jpg │ │ ├── fu.png │ │ └── size-preview.png ├── components │ ├── AttributeTree.vue │ ├── Collapse.vue │ ├── ColorField.vue │ ├── ColorPalette.vue │ ├── Device.vue │ ├── EmojiPicker.vue │ ├── EmoticonPicker.vue │ ├── Field.vue │ ├── Gallery.vue │ ├── Group.vue │ ├── ImageColorPicker.vue │ ├── ImagePicker.vue │ ├── InputNumber.vue │ ├── NavHeader.vue │ ├── PatternCard.vue │ ├── Scale.vue │ ├── SymbolInput.vue │ └── Wallpaper.vue ├── data │ ├── color │ │ ├── artworks.js │ │ ├── avengers.js │ │ ├── brand.js │ │ ├── color-hunt.js │ │ ├── index.js │ │ ├── nba.js │ │ └── overwatch.js │ ├── emoji-by-group.json │ ├── emoticons.json │ ├── examples.js │ ├── fonts.js │ ├── gallery │ │ ├── all │ │ │ ├── angry │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── be-yourself │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── beer │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── big-world │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── cassidy │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── challenge │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── colorfu │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── dva │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── edg-nb │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── eye │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── face │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── falling │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── goal │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── good-night │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── have-a-nice-day │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── hulk │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── i-miss-you │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── index.js │ │ │ ├── iron-man │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── jordan │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── keep-good-mood │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── kobe │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── life │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── mountain │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── show-off │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── spring │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── thor │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── tracer │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── tree │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ └── weak │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ └── index.js │ ├── image.js │ └── pattern.js ├── main.js ├── mixins │ ├── useElementBox.js │ ├── useFullscreen.js │ ├── useKeepLiveScrollProgress.js │ └── useWindowSize.js ├── pages │ ├── Editor.vue │ ├── Home.vue │ └── Story.vue ├── router.js └── utils │ ├── adapt.js │ ├── attribute │ ├── background.js │ ├── color.js │ ├── index.js │ ├── pattern │ │ ├── dot.js │ │ ├── index.js │ │ ├── line.js │ │ ├── square.js │ │ └── wave.js │ └── text.js │ ├── canvas.js │ ├── color.js │ ├── file.js │ ├── font.js │ ├── gotoEditor.js │ ├── load.js │ ├── math.js │ ├── object.js │ ├── pattern │ ├── dot.js │ ├── index.js │ ├── line.js │ ├── square.js │ └── wave.js │ ├── text.js │ └── wallpaper.js └── vue.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "printWidth": 100 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/babel.config.js -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = {extends: ['@commitlint/config-conventional']} 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/css/devices.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/assets/css/devices.min.css -------------------------------------------------------------------------------- /src/assets/font/luckiest_guy.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/assets/font/luckiest_guy.woff2 -------------------------------------------------------------------------------- /src/assets/images/1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/assets/images/1.jpeg -------------------------------------------------------------------------------- /src/assets/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/assets/images/2.jpg -------------------------------------------------------------------------------- /src/assets/images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/assets/images/3.jpg -------------------------------------------------------------------------------- /src/assets/images/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/assets/images/4.jpg -------------------------------------------------------------------------------- /src/assets/images/5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/assets/images/5.jpeg -------------------------------------------------------------------------------- /src/assets/images/background-preivew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/assets/images/background-preivew.png -------------------------------------------------------------------------------- /src/assets/images/color-palette.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/assets/images/color-palette.gif -------------------------------------------------------------------------------- /src/assets/images/example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/assets/images/example.jpg -------------------------------------------------------------------------------- /src/assets/images/fu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/assets/images/fu.png -------------------------------------------------------------------------------- /src/assets/images/size-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/assets/images/size-preview.png -------------------------------------------------------------------------------- /src/components/AttributeTree.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/components/AttributeTree.vue -------------------------------------------------------------------------------- /src/components/Collapse.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/components/Collapse.vue -------------------------------------------------------------------------------- /src/components/ColorField.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/components/ColorField.vue -------------------------------------------------------------------------------- /src/components/ColorPalette.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/components/ColorPalette.vue -------------------------------------------------------------------------------- /src/components/Device.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/components/Device.vue -------------------------------------------------------------------------------- /src/components/EmojiPicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/components/EmojiPicker.vue -------------------------------------------------------------------------------- /src/components/EmoticonPicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/components/EmoticonPicker.vue -------------------------------------------------------------------------------- /src/components/Field.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/components/Field.vue -------------------------------------------------------------------------------- /src/components/Gallery.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/components/Gallery.vue -------------------------------------------------------------------------------- /src/components/Group.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/components/Group.vue -------------------------------------------------------------------------------- /src/components/ImageColorPicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/components/ImageColorPicker.vue -------------------------------------------------------------------------------- /src/components/ImagePicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/components/ImagePicker.vue -------------------------------------------------------------------------------- /src/components/InputNumber.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/components/InputNumber.vue -------------------------------------------------------------------------------- /src/components/NavHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/components/NavHeader.vue -------------------------------------------------------------------------------- /src/components/PatternCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/components/PatternCard.vue -------------------------------------------------------------------------------- /src/components/Scale.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/components/Scale.vue -------------------------------------------------------------------------------- /src/components/SymbolInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/components/SymbolInput.vue -------------------------------------------------------------------------------- /src/components/Wallpaper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/components/Wallpaper.vue -------------------------------------------------------------------------------- /src/data/color/artworks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/color/artworks.js -------------------------------------------------------------------------------- /src/data/color/avengers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/color/avengers.js -------------------------------------------------------------------------------- /src/data/color/brand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/color/brand.js -------------------------------------------------------------------------------- /src/data/color/color-hunt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/color/color-hunt.js -------------------------------------------------------------------------------- /src/data/color/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/color/index.js -------------------------------------------------------------------------------- /src/data/color/nba.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/color/nba.js -------------------------------------------------------------------------------- /src/data/color/overwatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/color/overwatch.js -------------------------------------------------------------------------------- /src/data/emoji-by-group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/emoji-by-group.json -------------------------------------------------------------------------------- /src/data/emoticons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/emoticons.json -------------------------------------------------------------------------------- /src/data/examples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/examples.js -------------------------------------------------------------------------------- /src/data/fonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/fonts.js -------------------------------------------------------------------------------- /src/data/gallery/all/angry/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/angry/index.js -------------------------------------------------------------------------------- /src/data/gallery/all/angry/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/angry/index.json -------------------------------------------------------------------------------- /src/data/gallery/all/be-yourself/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/be-yourself/index.js -------------------------------------------------------------------------------- /src/data/gallery/all/be-yourself/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/be-yourself/index.json -------------------------------------------------------------------------------- /src/data/gallery/all/beer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/beer/index.js -------------------------------------------------------------------------------- /src/data/gallery/all/beer/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/beer/index.json -------------------------------------------------------------------------------- /src/data/gallery/all/big-world/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/big-world/index.js -------------------------------------------------------------------------------- /src/data/gallery/all/big-world/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/big-world/index.json -------------------------------------------------------------------------------- /src/data/gallery/all/cassidy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/cassidy/index.js -------------------------------------------------------------------------------- /src/data/gallery/all/cassidy/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/cassidy/index.json -------------------------------------------------------------------------------- /src/data/gallery/all/challenge/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/challenge/index.js -------------------------------------------------------------------------------- /src/data/gallery/all/challenge/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/challenge/index.json -------------------------------------------------------------------------------- /src/data/gallery/all/colorfu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/colorfu/index.js -------------------------------------------------------------------------------- /src/data/gallery/all/colorfu/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/colorfu/index.json -------------------------------------------------------------------------------- /src/data/gallery/all/dva/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/dva/index.js -------------------------------------------------------------------------------- /src/data/gallery/all/dva/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/dva/index.json -------------------------------------------------------------------------------- /src/data/gallery/all/edg-nb/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/edg-nb/index.js -------------------------------------------------------------------------------- /src/data/gallery/all/edg-nb/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/edg-nb/index.json -------------------------------------------------------------------------------- /src/data/gallery/all/eye/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/eye/index.js -------------------------------------------------------------------------------- /src/data/gallery/all/eye/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/eye/index.json -------------------------------------------------------------------------------- /src/data/gallery/all/face/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/face/index.js -------------------------------------------------------------------------------- /src/data/gallery/all/face/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/face/index.json -------------------------------------------------------------------------------- /src/data/gallery/all/falling/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/falling/index.js -------------------------------------------------------------------------------- /src/data/gallery/all/falling/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/falling/index.json -------------------------------------------------------------------------------- /src/data/gallery/all/goal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/goal/index.js -------------------------------------------------------------------------------- /src/data/gallery/all/goal/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/goal/index.json -------------------------------------------------------------------------------- /src/data/gallery/all/good-night/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/good-night/index.js -------------------------------------------------------------------------------- /src/data/gallery/all/good-night/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/good-night/index.json -------------------------------------------------------------------------------- /src/data/gallery/all/have-a-nice-day/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/have-a-nice-day/index.js -------------------------------------------------------------------------------- /src/data/gallery/all/have-a-nice-day/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/have-a-nice-day/index.json -------------------------------------------------------------------------------- /src/data/gallery/all/hulk/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/hulk/index.js -------------------------------------------------------------------------------- /src/data/gallery/all/hulk/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/hulk/index.json -------------------------------------------------------------------------------- /src/data/gallery/all/i-miss-you/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/i-miss-you/index.js -------------------------------------------------------------------------------- /src/data/gallery/all/i-miss-you/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/i-miss-you/index.json -------------------------------------------------------------------------------- /src/data/gallery/all/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/index.js -------------------------------------------------------------------------------- /src/data/gallery/all/iron-man/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/iron-man/index.js -------------------------------------------------------------------------------- /src/data/gallery/all/iron-man/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/iron-man/index.json -------------------------------------------------------------------------------- /src/data/gallery/all/jordan/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/jordan/index.js -------------------------------------------------------------------------------- /src/data/gallery/all/jordan/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/jordan/index.json -------------------------------------------------------------------------------- /src/data/gallery/all/keep-good-mood/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/keep-good-mood/index.js -------------------------------------------------------------------------------- /src/data/gallery/all/keep-good-mood/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/keep-good-mood/index.json -------------------------------------------------------------------------------- /src/data/gallery/all/kobe/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/kobe/index.js -------------------------------------------------------------------------------- /src/data/gallery/all/kobe/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/kobe/index.json -------------------------------------------------------------------------------- /src/data/gallery/all/life/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/life/index.js -------------------------------------------------------------------------------- /src/data/gallery/all/life/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/life/index.json -------------------------------------------------------------------------------- /src/data/gallery/all/mountain/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/mountain/index.js -------------------------------------------------------------------------------- /src/data/gallery/all/mountain/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/mountain/index.json -------------------------------------------------------------------------------- /src/data/gallery/all/show-off/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/show-off/index.js -------------------------------------------------------------------------------- /src/data/gallery/all/show-off/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/show-off/index.json -------------------------------------------------------------------------------- /src/data/gallery/all/spring/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/spring/index.js -------------------------------------------------------------------------------- /src/data/gallery/all/spring/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/spring/index.json -------------------------------------------------------------------------------- /src/data/gallery/all/thor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/thor/index.js -------------------------------------------------------------------------------- /src/data/gallery/all/thor/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/thor/index.json -------------------------------------------------------------------------------- /src/data/gallery/all/tracer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/tracer/index.js -------------------------------------------------------------------------------- /src/data/gallery/all/tracer/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/tracer/index.json -------------------------------------------------------------------------------- /src/data/gallery/all/tree/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/tree/index.js -------------------------------------------------------------------------------- /src/data/gallery/all/tree/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/tree/index.json -------------------------------------------------------------------------------- /src/data/gallery/all/weak/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/weak/index.js -------------------------------------------------------------------------------- /src/data/gallery/all/weak/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/all/weak/index.json -------------------------------------------------------------------------------- /src/data/gallery/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/gallery/index.js -------------------------------------------------------------------------------- /src/data/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/image.js -------------------------------------------------------------------------------- /src/data/pattern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/data/pattern.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/main.js -------------------------------------------------------------------------------- /src/mixins/useElementBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/mixins/useElementBox.js -------------------------------------------------------------------------------- /src/mixins/useFullscreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/mixins/useFullscreen.js -------------------------------------------------------------------------------- /src/mixins/useKeepLiveScrollProgress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/mixins/useKeepLiveScrollProgress.js -------------------------------------------------------------------------------- /src/mixins/useWindowSize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/mixins/useWindowSize.js -------------------------------------------------------------------------------- /src/pages/Editor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/pages/Editor.vue -------------------------------------------------------------------------------- /src/pages/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/pages/Home.vue -------------------------------------------------------------------------------- /src/pages/Story.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/pages/Story.vue -------------------------------------------------------------------------------- /src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/router.js -------------------------------------------------------------------------------- /src/utils/adapt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/utils/adapt.js -------------------------------------------------------------------------------- /src/utils/attribute/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/utils/attribute/background.js -------------------------------------------------------------------------------- /src/utils/attribute/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/utils/attribute/color.js -------------------------------------------------------------------------------- /src/utils/attribute/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/utils/attribute/index.js -------------------------------------------------------------------------------- /src/utils/attribute/pattern/dot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/utils/attribute/pattern/dot.js -------------------------------------------------------------------------------- /src/utils/attribute/pattern/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/utils/attribute/pattern/index.js -------------------------------------------------------------------------------- /src/utils/attribute/pattern/line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/utils/attribute/pattern/line.js -------------------------------------------------------------------------------- /src/utils/attribute/pattern/square.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/utils/attribute/pattern/square.js -------------------------------------------------------------------------------- /src/utils/attribute/pattern/wave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/utils/attribute/pattern/wave.js -------------------------------------------------------------------------------- /src/utils/attribute/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/utils/attribute/text.js -------------------------------------------------------------------------------- /src/utils/canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/utils/canvas.js -------------------------------------------------------------------------------- /src/utils/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/utils/color.js -------------------------------------------------------------------------------- /src/utils/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/utils/file.js -------------------------------------------------------------------------------- /src/utils/font.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/utils/font.js -------------------------------------------------------------------------------- /src/utils/gotoEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/utils/gotoEditor.js -------------------------------------------------------------------------------- /src/utils/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/utils/load.js -------------------------------------------------------------------------------- /src/utils/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/utils/math.js -------------------------------------------------------------------------------- /src/utils/object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/utils/object.js -------------------------------------------------------------------------------- /src/utils/pattern/dot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/utils/pattern/dot.js -------------------------------------------------------------------------------- /src/utils/pattern/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/utils/pattern/index.js -------------------------------------------------------------------------------- /src/utils/pattern/line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/utils/pattern/line.js -------------------------------------------------------------------------------- /src/utils/pattern/square.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/utils/pattern/square.js -------------------------------------------------------------------------------- /src/utils/pattern/wave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/utils/pattern/wave.js -------------------------------------------------------------------------------- /src/utils/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/utils/text.js -------------------------------------------------------------------------------- /src/utils/wallpaper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pearmini/colorfu/HEAD/src/utils/wallpaper.js -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | // publicPath: "/colorfu", 3 | }; 4 | --------------------------------------------------------------------------------