├── CMakeLists.txt ├── Headers ├── Application.hpp ├── Background.hpp ├── Button.hpp ├── ButtonPositioner.hpp ├── ChangedParametersQueue.hpp ├── ColorButton.hpp ├── ConfigHelper.hpp ├── DefStrs.hpp ├── Default media │ ├── Fonts │ │ ├── KPSWindowTextFont.hpp │ │ ├── MainProgramFont.hpp │ │ ├── RobotoMono.hpp │ │ └── arial_monospaced.hpp │ └── Textures │ │ ├── AnimationTexture.hpp │ │ ├── BackgroundTexture.hpp │ │ ├── ButtonTexture.hpp │ │ ├── GreenscreenBGTexture.hpp │ │ ├── IconTexture.hpp │ │ ├── KeyPressVisTexture.hpp │ │ ├── RGB-Circle.hpp │ │ ├── RefreshTexture.hpp │ │ ├── Textures.hpp │ │ ├── vMark.hpp │ │ └── xMark.hpp ├── DefaultFiles.hpp ├── GfxButton.hpp ├── GfxButtonSelector.hpp ├── GfxParameter.hpp ├── GfxStatisticsLine.hpp ├── KPSWindow.hpp ├── KeysPerSecondGraph.hpp ├── LogButton.hpp ├── LogKey.hpp ├── LogicalParameter.hpp ├── MathHelper.hpp ├── Menu.hpp ├── Palette.hpp ├── ParameterLine.hpp ├── ResourceHolder.hpp ├── ResourceHolder.inl ├── ResourceIdentifiers.hpp ├── Settings.hpp ├── StatisticLinesPositioner.hpp ├── StringHelper.hpp └── Utility.hpp ├── LICENSE ├── README.md ├── Resources ├── icon.ico └── icon.png ├── Source ├── Application.cpp ├── Background.cpp ├── Button.cpp ├── ButtonPositioner.cpp ├── ChangedParametersQueue.cpp ├── ColorButton.cpp ├── ConfigHelper.cpp ├── Default media │ ├── Fonts │ │ ├── KPSWindowTextFont.cpp │ │ ├── MainProgramFont.cpp │ │ ├── RobotoMono.cpp │ │ └── arial_monospaced.cpp │ └── Textures │ │ ├── AnimationTexture.cpp │ │ ├── BackgroundTexture.cpp │ │ ├── ButtonTexture.cpp │ │ ├── GreenscreenBGTexture.cpp │ │ ├── IconTexture.cpp │ │ ├── KeyPressVisTexture.cpp │ │ ├── RGB-Circle.cpp │ │ ├── RefreshTexture.cpp │ │ ├── vMark.cpp │ │ └── xMark.cpp ├── GfxButton.cpp ├── GfxButtonSelector.cpp ├── GfxParameter.cpp ├── GfxStatisticsLine.cpp ├── KPSWindow.cpp ├── KeysPerSecondGraph.cpp ├── LogButton.cpp ├── LogKey.cpp ├── LogicalParameter.cpp ├── Main.cpp ├── MathHelper.cpp ├── Menu.cpp ├── Palette.cpp ├── ParameterLine.cpp ├── Settings.cpp ├── StatisticLinesPositioner.cpp ├── StringHelper.cpp └── Utility.cpp └── Wiki ├── Previews ├── 7k-4k-mania-white-orange-2-preview.gif ├── 7k-mania-white-orange-2-preview.gif ├── adofai-white-orange-2-preview.gif ├── celestial-blue-preview.gif ├── dark-classic-preview.gif ├── dark-minimalistic-1-nano-preview.gif ├── dark-minimalistic-1-preview.gif ├── dark-minimalistic-2-nano-preview.gif ├── dark-minimalistic-2-preview.gif ├── dark-violet-preview.gif ├── key-press-visualization-preview.gif ├── medieval-preview.gif ├── modern-purple-preview.gif ├── modifications-preview.gif ├── red-violet-preview.gif ├── white-orange-1-preview.gif ├── white-orange-2-preview.gif └── white-orange-2-with-visualization.gif └── Themes.md /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Headers/Application.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Headers/Application.hpp -------------------------------------------------------------------------------- /Headers/Background.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Headers/Background.hpp -------------------------------------------------------------------------------- /Headers/Button.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Headers/Button.hpp -------------------------------------------------------------------------------- /Headers/ButtonPositioner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Headers/ButtonPositioner.hpp -------------------------------------------------------------------------------- /Headers/ChangedParametersQueue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Headers/ChangedParametersQueue.hpp -------------------------------------------------------------------------------- /Headers/ColorButton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Headers/ColorButton.hpp -------------------------------------------------------------------------------- /Headers/ConfigHelper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Headers/ConfigHelper.hpp -------------------------------------------------------------------------------- /Headers/DefStrs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Headers/DefStrs.hpp -------------------------------------------------------------------------------- /Headers/Default media/Fonts/KPSWindowTextFont.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | extern unsigned char KPSWindowDefaultFont[]; 4 | -------------------------------------------------------------------------------- /Headers/Default media/Fonts/MainProgramFont.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | extern unsigned char MainProgramFont[]; 4 | -------------------------------------------------------------------------------- /Headers/Default media/Fonts/RobotoMono.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | extern unsigned char RobotoMono[]; -------------------------------------------------------------------------------- /Headers/Default media/Fonts/arial_monospaced.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | extern unsigned char arial_monospaced[]; -------------------------------------------------------------------------------- /Headers/Default media/Textures/AnimationTexture.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | extern unsigned char AnimationTexture[]; 4 | -------------------------------------------------------------------------------- /Headers/Default media/Textures/BackgroundTexture.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | extern unsigned char BackgroundTexture[]; -------------------------------------------------------------------------------- /Headers/Default media/Textures/ButtonTexture.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | extern unsigned char ButtonTexture[]; -------------------------------------------------------------------------------- /Headers/Default media/Textures/GreenscreenBGTexture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Headers/Default media/Textures/GreenscreenBGTexture.hpp -------------------------------------------------------------------------------- /Headers/Default media/Textures/IconTexture.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | extern unsigned char IconTexture[]; 4 | -------------------------------------------------------------------------------- /Headers/Default media/Textures/KeyPressVisTexture.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | extern unsigned char KeyPressVisTextureH[]; -------------------------------------------------------------------------------- /Headers/Default media/Textures/RGB-Circle.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | extern unsigned char RGB_Circle[]; -------------------------------------------------------------------------------- /Headers/Default media/Textures/RefreshTexture.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | extern unsigned char RefreshTexture[]; -------------------------------------------------------------------------------- /Headers/Default media/Textures/Textures.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Headers/Default media/Textures/Textures.hpp -------------------------------------------------------------------------------- /Headers/Default media/Textures/vMark.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | extern unsigned char vMark[]; 4 | -------------------------------------------------------------------------------- /Headers/Default media/Textures/xMark.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | extern unsigned char xMark[]; 4 | -------------------------------------------------------------------------------- /Headers/DefaultFiles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Headers/DefaultFiles.hpp -------------------------------------------------------------------------------- /Headers/GfxButton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Headers/GfxButton.hpp -------------------------------------------------------------------------------- /Headers/GfxButtonSelector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Headers/GfxButtonSelector.hpp -------------------------------------------------------------------------------- /Headers/GfxParameter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Headers/GfxParameter.hpp -------------------------------------------------------------------------------- /Headers/GfxStatisticsLine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Headers/GfxStatisticsLine.hpp -------------------------------------------------------------------------------- /Headers/KPSWindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Headers/KPSWindow.hpp -------------------------------------------------------------------------------- /Headers/KeysPerSecondGraph.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Headers/KeysPerSecondGraph.hpp -------------------------------------------------------------------------------- /Headers/LogButton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Headers/LogButton.hpp -------------------------------------------------------------------------------- /Headers/LogKey.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Headers/LogKey.hpp -------------------------------------------------------------------------------- /Headers/LogicalParameter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Headers/LogicalParameter.hpp -------------------------------------------------------------------------------- /Headers/MathHelper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Headers/MathHelper.hpp -------------------------------------------------------------------------------- /Headers/Menu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Headers/Menu.hpp -------------------------------------------------------------------------------- /Headers/Palette.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Headers/Palette.hpp -------------------------------------------------------------------------------- /Headers/ParameterLine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Headers/ParameterLine.hpp -------------------------------------------------------------------------------- /Headers/ResourceHolder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Headers/ResourceHolder.hpp -------------------------------------------------------------------------------- /Headers/ResourceHolder.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Headers/ResourceHolder.inl -------------------------------------------------------------------------------- /Headers/ResourceIdentifiers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Headers/ResourceIdentifiers.hpp -------------------------------------------------------------------------------- /Headers/Settings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Headers/Settings.hpp -------------------------------------------------------------------------------- /Headers/StatisticLinesPositioner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Headers/StatisticLinesPositioner.hpp -------------------------------------------------------------------------------- /Headers/StringHelper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Headers/StringHelper.hpp -------------------------------------------------------------------------------- /Headers/Utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Headers/Utility.hpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/README.md -------------------------------------------------------------------------------- /Resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Resources/icon.ico -------------------------------------------------------------------------------- /Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Resources/icon.png -------------------------------------------------------------------------------- /Source/Application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Source/Application.cpp -------------------------------------------------------------------------------- /Source/Background.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Source/Background.cpp -------------------------------------------------------------------------------- /Source/Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Source/Button.cpp -------------------------------------------------------------------------------- /Source/ButtonPositioner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Source/ButtonPositioner.cpp -------------------------------------------------------------------------------- /Source/ChangedParametersQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Source/ChangedParametersQueue.cpp -------------------------------------------------------------------------------- /Source/ColorButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Source/ColorButton.cpp -------------------------------------------------------------------------------- /Source/ConfigHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Source/ConfigHelper.cpp -------------------------------------------------------------------------------- /Source/Default media/Fonts/KPSWindowTextFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Source/Default media/Fonts/KPSWindowTextFont.cpp -------------------------------------------------------------------------------- /Source/Default media/Fonts/MainProgramFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Source/Default media/Fonts/MainProgramFont.cpp -------------------------------------------------------------------------------- /Source/Default media/Fonts/RobotoMono.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Source/Default media/Fonts/RobotoMono.cpp -------------------------------------------------------------------------------- /Source/Default media/Fonts/arial_monospaced.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Source/Default media/Fonts/arial_monospaced.cpp -------------------------------------------------------------------------------- /Source/Default media/Textures/AnimationTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Source/Default media/Textures/AnimationTexture.cpp -------------------------------------------------------------------------------- /Source/Default media/Textures/BackgroundTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Source/Default media/Textures/BackgroundTexture.cpp -------------------------------------------------------------------------------- /Source/Default media/Textures/ButtonTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Source/Default media/Textures/ButtonTexture.cpp -------------------------------------------------------------------------------- /Source/Default media/Textures/GreenscreenBGTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Source/Default media/Textures/GreenscreenBGTexture.cpp -------------------------------------------------------------------------------- /Source/Default media/Textures/IconTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Source/Default media/Textures/IconTexture.cpp -------------------------------------------------------------------------------- /Source/Default media/Textures/KeyPressVisTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Source/Default media/Textures/KeyPressVisTexture.cpp -------------------------------------------------------------------------------- /Source/Default media/Textures/RGB-Circle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Source/Default media/Textures/RGB-Circle.cpp -------------------------------------------------------------------------------- /Source/Default media/Textures/RefreshTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Source/Default media/Textures/RefreshTexture.cpp -------------------------------------------------------------------------------- /Source/Default media/Textures/vMark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Source/Default media/Textures/vMark.cpp -------------------------------------------------------------------------------- /Source/Default media/Textures/xMark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Source/Default media/Textures/xMark.cpp -------------------------------------------------------------------------------- /Source/GfxButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Source/GfxButton.cpp -------------------------------------------------------------------------------- /Source/GfxButtonSelector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Source/GfxButtonSelector.cpp -------------------------------------------------------------------------------- /Source/GfxParameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Source/GfxParameter.cpp -------------------------------------------------------------------------------- /Source/GfxStatisticsLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Source/GfxStatisticsLine.cpp -------------------------------------------------------------------------------- /Source/KPSWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Source/KPSWindow.cpp -------------------------------------------------------------------------------- /Source/KeysPerSecondGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Source/KeysPerSecondGraph.cpp -------------------------------------------------------------------------------- /Source/LogButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Source/LogButton.cpp -------------------------------------------------------------------------------- /Source/LogKey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Source/LogKey.cpp -------------------------------------------------------------------------------- /Source/LogicalParameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Source/LogicalParameter.cpp -------------------------------------------------------------------------------- /Source/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Source/Main.cpp -------------------------------------------------------------------------------- /Source/MathHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Source/MathHelper.cpp -------------------------------------------------------------------------------- /Source/Menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Source/Menu.cpp -------------------------------------------------------------------------------- /Source/Palette.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Source/Palette.cpp -------------------------------------------------------------------------------- /Source/ParameterLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Source/ParameterLine.cpp -------------------------------------------------------------------------------- /Source/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Source/Settings.cpp -------------------------------------------------------------------------------- /Source/StatisticLinesPositioner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Source/StatisticLinesPositioner.cpp -------------------------------------------------------------------------------- /Source/StringHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Source/StringHelper.cpp -------------------------------------------------------------------------------- /Source/Utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Source/Utility.cpp -------------------------------------------------------------------------------- /Wiki/Previews/7k-4k-mania-white-orange-2-preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Wiki/Previews/7k-4k-mania-white-orange-2-preview.gif -------------------------------------------------------------------------------- /Wiki/Previews/7k-mania-white-orange-2-preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Wiki/Previews/7k-mania-white-orange-2-preview.gif -------------------------------------------------------------------------------- /Wiki/Previews/adofai-white-orange-2-preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Wiki/Previews/adofai-white-orange-2-preview.gif -------------------------------------------------------------------------------- /Wiki/Previews/celestial-blue-preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Wiki/Previews/celestial-blue-preview.gif -------------------------------------------------------------------------------- /Wiki/Previews/dark-classic-preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Wiki/Previews/dark-classic-preview.gif -------------------------------------------------------------------------------- /Wiki/Previews/dark-minimalistic-1-nano-preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Wiki/Previews/dark-minimalistic-1-nano-preview.gif -------------------------------------------------------------------------------- /Wiki/Previews/dark-minimalistic-1-preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Wiki/Previews/dark-minimalistic-1-preview.gif -------------------------------------------------------------------------------- /Wiki/Previews/dark-minimalistic-2-nano-preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Wiki/Previews/dark-minimalistic-2-nano-preview.gif -------------------------------------------------------------------------------- /Wiki/Previews/dark-minimalistic-2-preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Wiki/Previews/dark-minimalistic-2-preview.gif -------------------------------------------------------------------------------- /Wiki/Previews/dark-violet-preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Wiki/Previews/dark-violet-preview.gif -------------------------------------------------------------------------------- /Wiki/Previews/key-press-visualization-preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Wiki/Previews/key-press-visualization-preview.gif -------------------------------------------------------------------------------- /Wiki/Previews/medieval-preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Wiki/Previews/medieval-preview.gif -------------------------------------------------------------------------------- /Wiki/Previews/modern-purple-preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Wiki/Previews/modern-purple-preview.gif -------------------------------------------------------------------------------- /Wiki/Previews/modifications-preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Wiki/Previews/modifications-preview.gif -------------------------------------------------------------------------------- /Wiki/Previews/red-violet-preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Wiki/Previews/red-violet-preview.gif -------------------------------------------------------------------------------- /Wiki/Previews/white-orange-1-preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Wiki/Previews/white-orange-1-preview.gif -------------------------------------------------------------------------------- /Wiki/Previews/white-orange-2-preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Wiki/Previews/white-orange-2-preview.gif -------------------------------------------------------------------------------- /Wiki/Previews/white-orange-2-with-visualization.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Wiki/Previews/white-orange-2-with-visualization.gif -------------------------------------------------------------------------------- /Wiki/Themes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonetfal/JKPS/HEAD/Wiki/Themes.md --------------------------------------------------------------------------------