create colour scheme tructure

This commit is contained in:
Ray Elliott 2025-12-11 20:30:41 +00:00
commit 61400a7c9b
10 changed files with 214 additions and 3 deletions

View file

@ -0,0 +1,18 @@
-- Paper Tonic Modern
-- A light, paper-like colorscheme for Neovim
-- Forked from the original Paper Tonic with modern Lua implementation
-- Reset highlights and syntax
vim.cmd('highlight clear')
if vim.fn.exists('syntax_on') then
vim.cmd('syntax reset')
end
-- Set colorscheme name
vim.g.colors_name = 'paper-tonic-modern'
-- Set background to light
vim.o.background = 'light'
-- Load the colorscheme
require('paper-tonic-modern').load()