mirror of
https://github.com/vim-airline/vim-airline-themes.git
synced 2026-03-05 01:24:14 +08:00
Compare commits
3 Commits
master
...
c766ddb688
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c766ddb688 | ||
|
|
f74bc9e8a1 | ||
|
|
f76c8bc340 |
2
LICENSE
2
LICENSE
@@ -1,6 +1,6 @@
|
|||||||
The MIT License (MIT)
|
The MIT License (MIT)
|
||||||
|
|
||||||
Copyright (C) 2013-2021 Bailey Ling & Contributors.
|
Copyright (C) 2013-2022 Bailey Ling & Contributors.
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining
|
Permission is hereby granted, free of charge, to any person obtaining
|
||||||
a copy of this software and associated documentation files (the "Software"),
|
a copy of this software and associated documentation files (the "Software"),
|
||||||
|
|||||||
@@ -46,7 +46,7 @@ If you are interested in becoming the official maintainer of this project, pleas
|
|||||||
|
|
||||||
# License
|
# License
|
||||||
|
|
||||||
MIT License. Copyright (c) 2013-2021 Bailey Ling & Contributors.
|
MIT License. Copyright (c) 2013-2022 Bailey Ling & Contributors.
|
||||||
|
|
||||||
|
|
||||||
[1]: https://github.com/bling
|
[1]: https://github.com/bling
|
||||||
|
|||||||
@@ -7,16 +7,14 @@
|
|||||||
"
|
"
|
||||||
"----------------------------------------------------------------
|
"----------------------------------------------------------------
|
||||||
" Theme : Atomic
|
" Theme : Atomic
|
||||||
" Version : 2.3.0
|
" Version : 2.1.0
|
||||||
" License : MIT
|
" License : MIT
|
||||||
" Author : Gerard Bajona
|
" Author : Gerard Bajona
|
||||||
" URL : https://github.com/gerardbm/atomic
|
" URL : https://github.com/gerardbm/atomic
|
||||||
" ----------------------------------------------------------------
|
" ----------------------------------------------------------------
|
||||||
" Colors will be adapted to the current colorscheme. For better
|
" Colors will be adapted to the current colorscheme. For better
|
||||||
" contrast, use the atomic colorscheme: it has 22 color palettes
|
" contrast use the atomic colorscheme: it has ten color palettes
|
||||||
" with sixteen colors selected procedurally through algorithms.
|
" with sixteen colors selected procedurally (algorithms).
|
||||||
" It was designed using HSLuv and ΔE00 to ensure harmony and
|
|
||||||
" contrast across light and dark modes.
|
|
||||||
"
|
"
|
||||||
" Atomic colorscheme: https://github.com/gerardbm/vim-atomic
|
" Atomic colorscheme: https://github.com/gerardbm/vim-atomic
|
||||||
" ----------------------------------------------------------------
|
" ----------------------------------------------------------------
|
||||||
@@ -40,21 +38,11 @@ function! airline#themes#atomic#refresh()
|
|||||||
let s:R3 = airline#themes#get_highlight2(['ErrorMsg', 'fg'], ['StatusLine', 'bg'], 'none')
|
let s:R3 = airline#themes#get_highlight2(['ErrorMsg', 'fg'], ['StatusLine', 'bg'], 'none')
|
||||||
let g:airline#themes#atomic#palette.replace = airline#themes#generate_color_map(s:R1, s:R2, s:R3)
|
let g:airline#themes#atomic#palette.replace = airline#themes#generate_color_map(s:R1, s:R2, s:R3)
|
||||||
|
|
||||||
let s:T1 = airline#themes#get_highlight2(['LineNr', 'bg'], ['Boolean', 'fg'])
|
|
||||||
let s:T2 = airline#themes#get_highlight2(['LineNr', 'bg'], ['LineNr', 'fg'], 'none')
|
|
||||||
let s:T3 = airline#themes#get_highlight2(['Boolean', 'fg'], ['StatusLine', 'bg'])
|
|
||||||
let g:airline#themes#atomic#palette.terminal = airline#themes#generate_color_map(s:T1, s:T2, s:T3)
|
|
||||||
|
|
||||||
let s:V1 = airline#themes#get_highlight2(['LineNr', 'bg'], ['WarningMsg', 'fg'], 'none')
|
let s:V1 = airline#themes#get_highlight2(['LineNr', 'bg'], ['WarningMsg', 'fg'], 'none')
|
||||||
let s:V2 = airline#themes#get_highlight2(['LineNr', 'bg'], ['LineNr', 'fg'], 'none')
|
let s:V2 = airline#themes#get_highlight2(['LineNr', 'bg'], ['LineNr', 'fg'], 'none')
|
||||||
let s:V3 = airline#themes#get_highlight2(['WarningMsg', 'fg'], ['StatusLine', 'bg'], 'none')
|
let s:V3 = airline#themes#get_highlight2(['WarningMsg', 'fg'], ['StatusLine', 'bg'], 'none')
|
||||||
let g:airline#themes#atomic#palette.visual = airline#themes#generate_color_map(s:V1, s:V2, s:V3)
|
let g:airline#themes#atomic#palette.visual = airline#themes#generate_color_map(s:V1, s:V2, s:V3)
|
||||||
|
|
||||||
let s:C1 = airline#themes#get_highlight2(['LineNr', 'bg'], ['Structure', 'fg'], 'none')
|
|
||||||
let s:C2 = airline#themes#get_highlight2(['LineNr', 'bg'], ['LineNr', 'fg'], 'none')
|
|
||||||
let s:C3 = airline#themes#get_highlight2(['Structure', 'fg'], ['StatusLine', 'bg'], 'none')
|
|
||||||
let g:airline#themes#atomic#palette.commandline = airline#themes#generate_color_map(s:C1, s:C2, s:C3)
|
|
||||||
|
|
||||||
let s:IA1 = airline#themes#get_highlight2(['LineNr', 'fg'], ['StatusLine', 'bg'], 'none')
|
let s:IA1 = airline#themes#get_highlight2(['LineNr', 'fg'], ['StatusLine', 'bg'], 'none')
|
||||||
let s:IA2 = airline#themes#get_highlight2(['LineNr', 'fg'], ['StatusLine', 'bg'], 'none')
|
let s:IA2 = airline#themes#get_highlight2(['LineNr', 'fg'], ['StatusLine', 'bg'], 'none')
|
||||||
let s:IA3 = airline#themes#get_highlight2(['LineNr', 'fg'], ['StatusLine', 'bg'], 'none')
|
let s:IA3 = airline#themes#get_highlight2(['LineNr', 'fg'], ['StatusLine', 'bg'], 'none')
|
||||||
|
|||||||
@@ -64,7 +64,6 @@ let s:IA = [ '#1b1d1e' , '#465457' , 233 , 67 , '' ]
|
|||||||
let g:airline#themes#molokai#palette.inactive = airline#themes#generate_color_map(s:IA, s:IA, s:IA)
|
let g:airline#themes#molokai#palette.inactive = airline#themes#generate_color_map(s:IA, s:IA, s:IA)
|
||||||
let g:airline#themes#molokai#palette.inactive_modified = {
|
let g:airline#themes#molokai#palette.inactive_modified = {
|
||||||
\ 'airline_c': [ '#f8f8f0' , '' , 253 , '' , '' ] ,
|
\ 'airline_c': [ '#f8f8f0' , '' , 253 , '' , '' ] ,
|
||||||
\ 'airline_term': [ '#000000' , '#ff0000' , 'black' , 'red' , '' ] ,
|
|
||||||
\ }
|
\ }
|
||||||
|
|
||||||
" CtrlP
|
" CtrlP
|
||||||
|
|||||||
0
autoload/airline/themes/ouo.vim
Normal file → Executable file
0
autoload/airline/themes/ouo.vim
Normal file → Executable file
@@ -1,4 +1,4 @@
|
|||||||
*airline-themes.txt* Themes for vim-airline
|
*airline-themes.txt* Themes for vim-airline
|
||||||
_ _ _ _ ~
|
_ _ _ _ ~
|
||||||
__ _(_)_ __ ___ __ _(_)_ __| (_)_ __ ___ ~
|
__ _(_)_ __ ___ __ _(_)_ __| (_)_ __ ___ ~
|
||||||
\ \ / / | '_ ` _ \ _____ / _` | | '__| | | '_ \ / _ \ ~
|
\ \ / / | '_ ` _ \ _____ / _` | | '__| | | '_ \ / _ \ ~
|
||||||
@@ -437,6 +437,6 @@ Contributions and pull requests are welcome.
|
|||||||
==============================================================================
|
==============================================================================
|
||||||
LICENSE *airline-themes-license*
|
LICENSE *airline-themes-license*
|
||||||
|
|
||||||
MIT License. Copyright © 2013-2020 Bailey Ling, et al
|
MIT License. Copyright © 2013-2022 Bailey Ling, et al
|
||||||
|
|
||||||
vim:tw=78:ts=8:ft=help:norl:
|
vim:tw=78:ts=8:ft=help:norl:
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
" MIT License. Copyright (c) 2013-2021 Bailey Ling & Contributors.
|
" MIT License. Copyright (c) 2013-2022 Bailey Ling & Contributors.
|
||||||
" vim: et ts=2 sts=2 sw=2
|
" vim: et ts=2 sts=2 sw=2
|
||||||
|
|
||||||
let s:save_cpo = &cpo
|
let s:save_cpo = &cpo
|
||||||
|
|||||||
Reference in New Issue
Block a user