mirror of
https://github.com/Eugeny/tabby.git
synced 2025-03-31 15:50:28 +08:00
wip
This commit is contained in:
parent
25615902ba
commit
0ea346a6ae
@ -1,75 +1,21 @@
|
||||
import { NgModule } from '@angular/core'
|
||||
import { BrowserModule } from '@angular/platform-browser'
|
||||
import { BrowserAnimationsModule } from '@angular/platform-browser/animations'
|
||||
import { HttpModule } from '@angular/http'
|
||||
import { FormsModule } from '@angular/forms'
|
||||
import { ToasterModule } from 'angular2-toaster'
|
||||
import { NgbModule } from '@ng-bootstrap/ng-bootstrap'
|
||||
|
||||
import { AppService } from 'services/app'
|
||||
import { ConfigService } from 'services/config'
|
||||
import { ElectronService } from 'services/electron'
|
||||
import { HostAppService } from 'services/hostApp'
|
||||
import { LogService } from 'services/log'
|
||||
import { HotkeysService, AppHotkeyProvider } from 'services/hotkeys'
|
||||
import { ModalService } from 'services/modal'
|
||||
import { NotifyService } from 'services/notify'
|
||||
import { PluginsService } from 'services/plugins'
|
||||
import { QuitterService } from 'services/quitter'
|
||||
import { DockingService } from 'services/docking'
|
||||
import { TabRecoveryService } from 'services/tabRecovery'
|
||||
|
||||
import { AppRootComponent } from 'components/appRoot'
|
||||
import { CheckboxComponent } from 'components/checkbox'
|
||||
import { TabBodyComponent } from 'components/tabBody'
|
||||
import { TabHeaderComponent } from 'components/tabHeader'
|
||||
import { TitleBarComponent } from 'components/titleBar'
|
||||
|
||||
import { HotkeyProvider } from 'api/hotkeyProvider'
|
||||
|
||||
|
||||
let plugins = [
|
||||
require('./settings').default,
|
||||
require('./terminal').default,
|
||||
require('./link-highlighter').default,
|
||||
(<any>global).require('../terminus-settings').default,
|
||||
(<any>global).require('../terminus-terminal').default,
|
||||
(<any>global).require('../terminus-clickable-links').default,
|
||||
(<any>global).require('../terminus-community-color-schemes').default,
|
||||
]
|
||||
|
||||
const core = (<any>global).require('../terminus-core').default,
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
BrowserModule,
|
||||
BrowserAnimationsModule,
|
||||
HttpModule,
|
||||
FormsModule,
|
||||
ToasterModule,
|
||||
core.forRoot(),
|
||||
...plugins,
|
||||
NgbModule.forRoot(),
|
||||
].concat(plugins),
|
||||
providers: [
|
||||
AppService,
|
||||
ConfigService,
|
||||
DockingService,
|
||||
ElectronService,
|
||||
HostAppService,
|
||||
HotkeysService,
|
||||
LogService,
|
||||
ModalService,
|
||||
NotifyService,
|
||||
PluginsService,
|
||||
TabRecoveryService,
|
||||
QuitterService,
|
||||
{ provide: HotkeyProvider, useClass: AppHotkeyProvider, multi: true },
|
||||
],
|
||||
entryComponents: [
|
||||
],
|
||||
declarations: [
|
||||
AppRootComponent,
|
||||
CheckboxComponent,
|
||||
TabBodyComponent,
|
||||
TabHeaderComponent,
|
||||
TitleBarComponent,
|
||||
],
|
||||
bootstrap: [
|
||||
AppRootComponent,
|
||||
]
|
||||
//bootstrap: [AppRootComponent]
|
||||
})
|
||||
export class AppModule {
|
||||
}
|
||||
export class RootModule { }
|
||||
|
@ -1,53 +0,0 @@
|
||||
:host {
|
||||
cursor: pointer;
|
||||
|
||||
&:focus {
|
||||
background: rgba(255,255,255,.05);
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
&:active {
|
||||
background: rgba(255,255,255,.1);
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
&[disabled] {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
display: inline-flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
|
||||
.icon {
|
||||
position: relative;
|
||||
flex: none;
|
||||
width: 14px;
|
||||
height: 14px;
|
||||
|
||||
i {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 1px;
|
||||
transition: 0.25s opacity;
|
||||
display: block;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
i.on {
|
||||
color: yellow;
|
||||
}
|
||||
|
||||
i.on, &.active i.off {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
i.off, &.active i.on {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.name {
|
||||
flex: auto;
|
||||
}
|
||||
}
|
@ -1,4 +0,0 @@
|
||||
.icon((click)='click()', tabindex='0', [class.active]='model', (keyup.space)='click()')
|
||||
i.fa.fa-square-o.off
|
||||
i.fa.fa-check-square.on
|
||||
.text((click)='click()') {{text}}
|
@ -1,25 +0,0 @@
|
||||
import { NgZone, Component, Input, Output, EventEmitter } from '@angular/core'
|
||||
|
||||
|
||||
@Component({
|
||||
selector: 'checkbox',
|
||||
template: require('./checkbox.pug'),
|
||||
styles: [require('./checkbox.less')]
|
||||
})
|
||||
export class CheckboxComponent {
|
||||
public click() {
|
||||
NgZone.assertInAngularZone()
|
||||
if (this.disabled) {
|
||||
return
|
||||
}
|
||||
|
||||
this.model = !this.model
|
||||
this.modelChange.emit(this.model)
|
||||
}
|
||||
|
||||
@Input() model: boolean
|
||||
@Output() modelChange = new EventEmitter()
|
||||
@Input() disabled: boolean
|
||||
|
||||
@Input() text: string
|
||||
}
|
@ -8,18 +8,18 @@ import 'jquery'
|
||||
// Always land on the start view
|
||||
location.hash = ''
|
||||
|
||||
import { AppModule } from 'app.module'
|
||||
import { RootModule } from 'app.module'
|
||||
import { enableProdMode } from '@angular/core'
|
||||
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'
|
||||
|
||||
if (nodeRequire('electron-is-dev')) {
|
||||
if ((<any>global).require('electron-is-dev')) {
|
||||
console.warn('Running in debug mode')
|
||||
} else {
|
||||
enableProdMode()
|
||||
}
|
||||
|
||||
console.timeStamp('angular bootstrap started')
|
||||
platformBrowserDynamic().bootstrapModule(AppModule);
|
||||
platformBrowserDynamic().bootstrapModule(RootModule);
|
||||
|
||||
|
||||
(<any>process).emitWarning = function () { console.log(arguments) }
|
||||
|
@ -1,24 +0,0 @@
|
||||
@import "~variables.less";
|
||||
|
||||
.button-states() {
|
||||
transition: 0.125s all;
|
||||
border: none;
|
||||
|
||||
&:hover:not(.active) {
|
||||
background: rgba(255, 255, 255, .033);
|
||||
}
|
||||
|
||||
&:active:not(.active),
|
||||
&.active {
|
||||
background: rgba(0, 0, 0, .1);
|
||||
}
|
||||
}
|
||||
|
||||
.list-group-item-style() {
|
||||
display: block;
|
||||
padding: 10px 15px;
|
||||
background: @component-bg;
|
||||
color: @text-color;
|
||||
text-align: left;
|
||||
.button-states();
|
||||
}
|
@ -1,16 +0,0 @@
|
||||
@brand-primary: #f7e61d;
|
||||
@brand-success: #42B500;
|
||||
@brand-info: #01BAEF;
|
||||
@brand-warning: #DB8A00;
|
||||
@brand-danger: #EF2F00;
|
||||
|
||||
@body-bg: #1D272D;
|
||||
@text-color: #aaa;
|
||||
|
||||
@font-family: "Source Sans Pro";
|
||||
@font-size: 14px;
|
||||
|
||||
@dark-border: rgba(0,0,0,.25);
|
||||
@light-border: rgba(255,255,255,.25);
|
||||
|
||||
@component-bg: #161d21;
|
29
package.json
29
package.json
@ -1,12 +1,10 @@
|
||||
{
|
||||
"name": "term",
|
||||
"devDependencies": {
|
||||
"@types/webpack-env": "^1.13.0",
|
||||
"apply-loader": "^0.1.0",
|
||||
"autoprefixer": "^6.7.7",
|
||||
"awesome-typescript-loader": "3.1.2",
|
||||
"css-loader": "0.26.1",
|
||||
"dataurl": "^0.1.0",
|
||||
"deep-equal": "^1.0.1",
|
||||
"electron": "1.6.2",
|
||||
"electron-builder": "10.6.1",
|
||||
"electron-osx-sign": "electron-userland/electron-osx-sign#f092181a1bffa2b3248a23ee28447a47e14a8f04",
|
||||
@ -14,7 +12,6 @@
|
||||
"file-loader": "^0.9.0",
|
||||
"font-awesome": "4.7.0",
|
||||
"html-loader": "^0.4.4",
|
||||
"json-loader": "^0.5.4",
|
||||
"less": "^2.7.1",
|
||||
"less-loader": "^2.2.3",
|
||||
"node-gyp": "^3.4.0",
|
||||
@ -29,12 +26,10 @@
|
||||
"tslint": "5.0.0",
|
||||
"tslint-eslint-rules": "4.0.0",
|
||||
"typescript": "2.2.2",
|
||||
"untildify": "^3.0.2",
|
||||
"url-loader": "^0.5.7",
|
||||
"val-loader": "^0.5.0",
|
||||
"vrsource-tslint-rules": "^4.0.1",
|
||||
"webpack": "2.3.3",
|
||||
"yaml-loader": "^0.4.0"
|
||||
"webpack": "2.3.3"
|
||||
},
|
||||
"build": {
|
||||
"appId": "com.elements.benchmark",
|
||||
@ -61,31 +56,13 @@
|
||||
"dist": "build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@angular/animations": "4.0.1",
|
||||
"@angular/common": "4.0.1",
|
||||
"@angular/compiler": "4.0.1",
|
||||
"@angular/core": "4.0.1",
|
||||
"@angular/forms": "4.0.1",
|
||||
"@angular/http": "4.0.1",
|
||||
"@angular/platform-browser": "4.0.1",
|
||||
"@angular/platform-browser-dynamic": "4.0.1",
|
||||
"@angular/platform-server": "4.0.1",
|
||||
"@angular/router": "4.0.1",
|
||||
"@ng-bootstrap/ng-bootstrap": "1.0.0-alpha.22",
|
||||
"@types/fs-promise": "^1.0.1",
|
||||
"@types/core-js": "^0.9.35",
|
||||
"@types/electron": "1.4.34",
|
||||
"@types/js-yaml": "^3.5.29",
|
||||
"@types/node": "^7.0.5",
|
||||
"angular2-perfect-scrollbar": "2.0.0",
|
||||
"angular2-toaster": "3.0.1",
|
||||
"bootstrap": "4.0.0-alpha.6",
|
||||
"core-js": "^2.4.1",
|
||||
"deepmerge": "^1.3.2",
|
||||
"hterm-commonjs": "^1.0.0",
|
||||
"jquery": "^3.1.1",
|
||||
"rxjs": "5.3.0",
|
||||
"source-sans-pro": "^2.0.10",
|
||||
"zone.js": "0.8.4"
|
||||
"jquery": "^3.1.1"
|
||||
}
|
||||
}
|
||||
|
2
terminus-clickable-links/.gitignore
vendored
Normal file
2
terminus-clickable-links/.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
dist
|
||||
node_modules
|
@ -1,11 +1,7 @@
|
||||
/*
|
||||
This plugin is based on Hyperterm Hyperlinks:
|
||||
https://github.com/zeit/hyperlinks/blob/master/index.js
|
||||
*/
|
||||
|
||||
import { Inject, Injectable } from '@angular/core'
|
||||
import { TerminalDecorator, TerminalTabComponent } from 'terminus-terminal'
|
||||
|
||||
import { LinkHandler } from './api'
|
||||
import { TerminalDecorator, TerminalTabComponent } from '../terminal/api'
|
||||
|
||||
|
||||
@Injectable()
|
@ -1,9 +1,9 @@
|
||||
import * as fs from 'fs'
|
||||
const untildify = require('untildify')
|
||||
|
||||
import { Injectable } from '@angular/core'
|
||||
import { ElectronService } from 'terminus-core'
|
||||
|
||||
import { LinkHandler } from './api'
|
||||
import { ElectronService } from 'api'
|
||||
|
||||
|
||||
@Injectable()
|
@ -1,8 +1,13 @@
|
||||
/*
|
||||
This plugin is based on Hyperterm Hyperlinks:
|
||||
https://github.com/zeit/hyperlinks/blob/master/index.js
|
||||
*/
|
||||
|
||||
import { NgModule } from '@angular/core'
|
||||
import { TerminalDecorator } from 'terminus-terminal'
|
||||
|
||||
import { LinkHandler } from './api'
|
||||
import { FileHandler, URLHandler } from './handlers'
|
||||
import { TerminalDecorator } from '../terminal/api'
|
||||
import { LinkHighlighterDecorator } from './decorator'
|
||||
|
||||
|
||||
@ -13,8 +18,6 @@ import { LinkHighlighterDecorator } from './decorator'
|
||||
{ provide: TerminalDecorator, useClass: LinkHighlighterDecorator, multi: true },
|
||||
],
|
||||
})
|
||||
class LinkHighlighterModule {
|
||||
}
|
||||
export default class LinkHighlighterModule { }
|
||||
|
||||
|
||||
export default LinkHighlighterModule
|
||||
export * from './api'
|
24
terminus-clickable-links/package.json
Normal file
24
terminus-clickable-links/package.json
Normal file
@ -0,0 +1,24 @@
|
||||
{
|
||||
"name": "terminus-clickable-links",
|
||||
"version": "0.0.1",
|
||||
"description": "Makes URLs and file paths clickable in Terminus",
|
||||
"main": "dist/index.js",
|
||||
"typings": "dist/index.d.ts",
|
||||
"scripts": {
|
||||
"build": "webpack --progress --color",
|
||||
"watch": "webpack --progress --color --watch"
|
||||
},
|
||||
"author": "Eugene Pankov",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"awesome-typescript-loader": "^3.1.2",
|
||||
"typescript": "^2.2.2",
|
||||
"webpack": "^2.3.3"
|
||||
},
|
||||
"dependencies": {
|
||||
"@angular/core": "^4.0.1",
|
||||
"terminus-core": "*",
|
||||
"terminus-terminal": "*",
|
||||
"untildify": "^3.0.2"
|
||||
}
|
||||
}
|
32
terminus-clickable-links/tsconfig.json
Normal file
32
terminus-clickable-links/tsconfig.json
Normal file
@ -0,0 +1,32 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"baseUrl": ".",
|
||||
"module": "commonjs",
|
||||
"target": "es5",
|
||||
"declaration": false,
|
||||
"noImplicitAny": false,
|
||||
"removeComments": false,
|
||||
"emitDecoratorMetadata": true,
|
||||
"experimentalDecorators": true,
|
||||
"sourceMap": true,
|
||||
"noUnusedParameters": true,
|
||||
"noImplicitReturns": true,
|
||||
"noFallthroughCasesInSwitch": true,
|
||||
"noUnusedParameters": true,
|
||||
"noUnusedLocals": true,
|
||||
"declaration": true,
|
||||
"declarationDir": "dist",
|
||||
"lib": [
|
||||
"dom",
|
||||
"es2015",
|
||||
"es7"
|
||||
],
|
||||
"paths": {
|
||||
"terminus-*": ["../terminus-*"]
|
||||
}
|
||||
},
|
||||
"compileOnSave": false,
|
||||
"exclude": [
|
||||
"node_modules"
|
||||
]
|
||||
}
|
30
terminus-clickable-links/webpack.config.js
Normal file
30
terminus-clickable-links/webpack.config.js
Normal file
@ -0,0 +1,30 @@
|
||||
module.exports = {
|
||||
target: 'node',
|
||||
entry: './index.ts',
|
||||
devtool: 'source-map',
|
||||
output: {
|
||||
filename: './dist/index.js',
|
||||
pathinfo: true,
|
||||
library: 'terminusClickableLinks',
|
||||
libraryTarget: 'umd',
|
||||
},
|
||||
resolve: {
|
||||
modules: ['.', 'node_modules', '..'],
|
||||
extensions: ['.ts', '.js'],
|
||||
},
|
||||
module: {
|
||||
loaders: [
|
||||
{
|
||||
test: /\.ts$/,
|
||||
loader: 'awesome-typescript-loader',
|
||||
},
|
||||
]
|
||||
},
|
||||
externals: [{
|
||||
'fs': true,
|
||||
'untildify': true,
|
||||
'@angular/core': true,
|
||||
'terminus-core': true,
|
||||
'terminus-terminal': true,
|
||||
}]
|
||||
}
|
1
terminus-community-color-schemes/.gitignore
vendored
Normal file
1
terminus-community-color-schemes/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
dist
|
51
terminus-community-color-schemes/colorSchemes.ts
Normal file
51
terminus-community-color-schemes/colorSchemes.ts
Normal file
@ -0,0 +1,51 @@
|
||||
import { Injectable } from '@angular/core'
|
||||
import { TerminalColorSchemeProvider, ITerminalColorScheme } from 'terminus-terminal'
|
||||
|
||||
const schemeContents = require.context('./schemes/', true, /.*/)
|
||||
|
||||
|
||||
@Injectable()
|
||||
export class ColorSchemes extends TerminalColorSchemeProvider {
|
||||
async getSchemes (): Promise<ITerminalColorScheme[]> {
|
||||
let schemes: ITerminalColorScheme[] = []
|
||||
|
||||
schemeContents.keys().forEach(schemeFile => {
|
||||
let lines = (<string>schemeContents(schemeFile)).split('\n')
|
||||
let values: any = {}
|
||||
lines
|
||||
.filter(x => x.startsWith('*.'))
|
||||
.map(x => x.substring(2))
|
||||
.map(x => x.split(':').map(v => v.trim()))
|
||||
.forEach(([key, value]) => {
|
||||
values[key] = value
|
||||
})
|
||||
|
||||
schemes.push({
|
||||
name: schemeFile.split('/')[1],
|
||||
foreground: values.foreground,
|
||||
background: values.background,
|
||||
cursor: values.cursorColor,
|
||||
colors: [
|
||||
values.color0,
|
||||
values.color1,
|
||||
values.color2,
|
||||
values.color3,
|
||||
values.color4,
|
||||
values.color5,
|
||||
values.color6,
|
||||
values.color7,
|
||||
values.color8,
|
||||
values.color9,
|
||||
values.color10,
|
||||
values.color11,
|
||||
values.color12,
|
||||
values.color13,
|
||||
values.color14,
|
||||
values.color15,
|
||||
],
|
||||
})
|
||||
})
|
||||
|
||||
return schemes
|
||||
}
|
||||
}
|
12
terminus-community-color-schemes/index.ts
Normal file
12
terminus-community-color-schemes/index.ts
Normal file
@ -0,0 +1,12 @@
|
||||
import { NgModule } from '@angular/core'
|
||||
import { TerminalColorSchemeProvider } from 'terminus-terminal'
|
||||
|
||||
import { ColorSchemes } from './colorSchemes'
|
||||
|
||||
|
||||
@NgModule({
|
||||
providers: [
|
||||
{ provide: TerminalColorSchemeProvider, useClass: ColorSchemes, multi: true },
|
||||
],
|
||||
})
|
||||
export default class PopularThemesModule { }
|
24
terminus-community-color-schemes/package.json
Normal file
24
terminus-community-color-schemes/package.json
Normal file
@ -0,0 +1,24 @@
|
||||
{
|
||||
"name": "terminus-community-color-schemes",
|
||||
"version": "0.0.1",
|
||||
"description": "Community color schemes for Terminus",
|
||||
"main": "dist/index.js",
|
||||
"typings": "dist/index.d.ts",
|
||||
"scripts": {
|
||||
"build": "webpack --progress --color",
|
||||
"watch": "webpack --progress --color --watch"
|
||||
},
|
||||
"author": "Eugene Pankov",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@angular/core": "4.0.1",
|
||||
"terminus-terminal": "*"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "7.0.12",
|
||||
"@types/webpack-env": "1.13.0",
|
||||
"awesome-typescript-loader": "3.1.2",
|
||||
"raw-loader": "0.5.1",
|
||||
"webpack": "2.3.3"
|
||||
}
|
||||
}
|
44
terminus-community-color-schemes/schemes/3024 Day
Normal file
44
terminus-community-color-schemes/schemes/3024 Day
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #4a4543
|
||||
*.background: #f7f7f7
|
||||
*.cursorColor: #4a4543
|
||||
!
|
||||
! Black
|
||||
*.color0: #090300
|
||||
*.color8: #5c5855
|
||||
!
|
||||
! Red
|
||||
*.color1: #db2d20
|
||||
*.color9: #e8bbd0
|
||||
!
|
||||
! Green
|
||||
*.color2: #01a252
|
||||
*.color10: #3a3432
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #fded02
|
||||
*.color11: #4a4543
|
||||
!
|
||||
! Blue
|
||||
*.color4: #01a0e4
|
||||
*.color12: #807d7c
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #a16a94
|
||||
*.color13: #d6d5d4
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #b5e4f4
|
||||
*.color14: #cdab53
|
||||
!
|
||||
! White
|
||||
*.color7: #a5a2a2
|
||||
*.color15: #f7f7f7
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #4a4543
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/3024 Night
Normal file
44
terminus-community-color-schemes/schemes/3024 Night
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #a5a2a2
|
||||
*.background: #090300
|
||||
*.cursorColor: #a5a2a2
|
||||
!
|
||||
! Black
|
||||
*.color0: #090300
|
||||
*.color8: #5c5855
|
||||
!
|
||||
! Red
|
||||
*.color1: #db2d20
|
||||
*.color9: #e8bbd0
|
||||
!
|
||||
! Green
|
||||
*.color2: #01a252
|
||||
*.color10: #3a3432
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #fded02
|
||||
*.color11: #4a4543
|
||||
!
|
||||
! Blue
|
||||
*.color4: #01a0e4
|
||||
*.color12: #807d7c
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #a16a94
|
||||
*.color13: #d6d5d4
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #b5e4f4
|
||||
*.color14: #cdab53
|
||||
!
|
||||
! White
|
||||
*.color7: #a5a2a2
|
||||
*.color15: #f7f7f7
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #a5a2a2
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/AdventureTime
Normal file
44
terminus-community-color-schemes/schemes/AdventureTime
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #f8dcc0
|
||||
*.background: #1f1d45
|
||||
*.cursorColor: #efbf38
|
||||
!
|
||||
! Black
|
||||
*.color0: #050404
|
||||
*.color8: #4e7cbf
|
||||
!
|
||||
! Red
|
||||
*.color1: #bd0013
|
||||
*.color9: #fc5f5a
|
||||
!
|
||||
! Green
|
||||
*.color2: #4ab118
|
||||
*.color10: #9eff6e
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #e7741e
|
||||
*.color11: #efc11a
|
||||
!
|
||||
! Blue
|
||||
*.color4: #0f4ac6
|
||||
*.color12: #1997c6
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #665993
|
||||
*.color13: #9b5953
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #70a598
|
||||
*.color14: #c8faf4
|
||||
!
|
||||
! White
|
||||
*.color7: #f8dcc0
|
||||
*.color15: #f6f5fb
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #bd0013
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Afterglow
Normal file
44
terminus-community-color-schemes/schemes/Afterglow
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #d0d0d0
|
||||
*.background: #212121
|
||||
*.cursorColor: #d0d0d0
|
||||
!
|
||||
! Black
|
||||
*.color0: #151515
|
||||
*.color8: #505050
|
||||
!
|
||||
! Red
|
||||
*.color1: #ac4142
|
||||
*.color9: #ac4142
|
||||
!
|
||||
! Green
|
||||
*.color2: #7e8e50
|
||||
*.color10: #7e8e50
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #e5b567
|
||||
*.color11: #e5b567
|
||||
!
|
||||
! Blue
|
||||
*.color4: #6c99bb
|
||||
*.color12: #6c99bb
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #9f4e85
|
||||
*.color13: #9f4e85
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #7dd6cf
|
||||
*.color14: #7dd6cf
|
||||
!
|
||||
! White
|
||||
*.color7: #d0d0d0
|
||||
*.color15: #f5f5f5
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #d0d0d0
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/AlienBlood
Normal file
44
terminus-community-color-schemes/schemes/AlienBlood
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #637d75
|
||||
*.background: #0f1610
|
||||
*.cursorColor: #73fa91
|
||||
!
|
||||
! Black
|
||||
*.color0: #112616
|
||||
*.color8: #3c4812
|
||||
!
|
||||
! Red
|
||||
*.color1: #7f2b27
|
||||
*.color9: #e08009
|
||||
!
|
||||
! Green
|
||||
*.color2: #2f7e25
|
||||
*.color10: #18e000
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #717f24
|
||||
*.color11: #bde000
|
||||
!
|
||||
! Blue
|
||||
*.color4: #2f6a7f
|
||||
*.color12: #00aae0
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #47587f
|
||||
*.color13: #0058e0
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #327f77
|
||||
*.color14: #00e0c4
|
||||
!
|
||||
! White
|
||||
*.color7: #647d75
|
||||
*.color15: #73fa91
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #7afa87
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Argonaut
Normal file
44
terminus-community-color-schemes/schemes/Argonaut
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #fffaf4
|
||||
*.background: #0e1019
|
||||
*.cursorColor: #ff0018
|
||||
!
|
||||
! Black
|
||||
*.color0: #232323
|
||||
*.color8: #444444
|
||||
!
|
||||
! Red
|
||||
*.color1: #ff000f
|
||||
*.color9: #ff2740
|
||||
!
|
||||
! Green
|
||||
*.color2: #8ce10b
|
||||
*.color10: #abe15b
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #ffb900
|
||||
*.color11: #ffd242
|
||||
!
|
||||
! Blue
|
||||
*.color4: #008df8
|
||||
*.color12: #0092ff
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #6d43a6
|
||||
*.color13: #9a5feb
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #00d8eb
|
||||
*.color14: #67fff0
|
||||
!
|
||||
! White
|
||||
*.color7: #ffffff
|
||||
*.color15: #ffffff
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #9e9c9a
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Arthur
Normal file
44
terminus-community-color-schemes/schemes/Arthur
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #ddeedd
|
||||
*.background: #1c1c1c
|
||||
*.cursorColor: #e2bbef
|
||||
!
|
||||
! Black
|
||||
*.color0: #3d352a
|
||||
*.color8: #554444
|
||||
!
|
||||
! Red
|
||||
*.color1: #cd5c5c
|
||||
*.color9: #cc5533
|
||||
!
|
||||
! Green
|
||||
*.color2: #86af80
|
||||
*.color10: #88aa22
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #e8ae5b
|
||||
*.color11: #ffa75d
|
||||
!
|
||||
! Blue
|
||||
*.color4: #6495ed
|
||||
*.color12: #87ceeb
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #deb887
|
||||
*.color13: #996600
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #b0c4de
|
||||
*.color14: #b0c4de
|
||||
!
|
||||
! White
|
||||
*.color7: #bbaa99
|
||||
*.color15: #ddccbb
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #ffffff
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/AtelierSulphurpool
Normal file
44
terminus-community-color-schemes/schemes/AtelierSulphurpool
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #979db4
|
||||
*.background: #202746
|
||||
*.cursorColor: #979db4
|
||||
!
|
||||
! Black
|
||||
*.color0: #202746
|
||||
*.color8: #6b7394
|
||||
!
|
||||
! Red
|
||||
*.color1: #c94922
|
||||
*.color9: #c76b29
|
||||
!
|
||||
! Green
|
||||
*.color2: #ac9739
|
||||
*.color10: #293256
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #c08b30
|
||||
*.color11: #5e6687
|
||||
!
|
||||
! Blue
|
||||
*.color4: #3d8fd1
|
||||
*.color12: #898ea4
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #6679cc
|
||||
*.color13: #dfe2f1
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #22a2c9
|
||||
*.color14: #9c637a
|
||||
!
|
||||
! White
|
||||
*.color7: #979db4
|
||||
*.color15: #f5f7ff
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #979db4
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Atom
Normal file
44
terminus-community-color-schemes/schemes/Atom
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #c5c8c6
|
||||
*.background: #161719
|
||||
*.cursorColor: #d0d0d0
|
||||
!
|
||||
! Black
|
||||
*.color0: #000000
|
||||
*.color8: #000000
|
||||
!
|
||||
! Red
|
||||
*.color1: #fd5ff1
|
||||
*.color9: #fd5ff1
|
||||
!
|
||||
! Green
|
||||
*.color2: #87c38a
|
||||
*.color10: #94fa36
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #ffd7b1
|
||||
*.color11: #f5ffa8
|
||||
!
|
||||
! Blue
|
||||
*.color4: #85befd
|
||||
*.color12: #96cbfe
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #b9b6fc
|
||||
*.color13: #b9b6fc
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #85befd
|
||||
*.color14: #85befd
|
||||
!
|
||||
! White
|
||||
*.color7: #e0e0e0
|
||||
*.color15: #e0e0e0
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #c5c8c6
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/AtomOneLight
Normal file
44
terminus-community-color-schemes/schemes/AtomOneLight
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #2a2c33
|
||||
*.background: #f9f9f9
|
||||
*.cursorColor: #bbbbbb
|
||||
!
|
||||
! Black
|
||||
*.color0: #000000
|
||||
*.color8: #000000
|
||||
!
|
||||
! Red
|
||||
*.color1: #de3e35
|
||||
*.color9: #de3e35
|
||||
!
|
||||
! Green
|
||||
*.color2: #3f953a
|
||||
*.color10: #3f953a
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #d2b67c
|
||||
*.color11: #d2b67c
|
||||
!
|
||||
! Blue
|
||||
*.color4: #2f5af3
|
||||
*.color12: #2f5af3
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #950095
|
||||
*.color13: #a00095
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #3f953a
|
||||
*.color14: #3f953a
|
||||
!
|
||||
! White
|
||||
*.color7: #bbbbbb
|
||||
*.color15: #ffffff
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #000000
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Batman
Normal file
44
terminus-community-color-schemes/schemes/Batman
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #6f6f6f
|
||||
*.background: #1b1d1e
|
||||
*.cursorColor: #fcef0c
|
||||
!
|
||||
! Black
|
||||
*.color0: #1b1d1e
|
||||
*.color8: #505354
|
||||
!
|
||||
! Red
|
||||
*.color1: #e6dc44
|
||||
*.color9: #fff78e
|
||||
!
|
||||
! Green
|
||||
*.color2: #c8be46
|
||||
*.color10: #fff27d
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #f4fd22
|
||||
*.color11: #feed6c
|
||||
!
|
||||
! Blue
|
||||
*.color4: #737174
|
||||
*.color12: #919495
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #747271
|
||||
*.color13: #9a9a9d
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #62605f
|
||||
*.color14: #a3a3a6
|
||||
!
|
||||
! White
|
||||
*.color7: #c6c5bf
|
||||
*.color15: #dadbd6
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #ffffff
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Belafonte Day
Normal file
44
terminus-community-color-schemes/schemes/Belafonte Day
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #45373c
|
||||
*.background: #d5ccba
|
||||
*.cursorColor: #45373c
|
||||
!
|
||||
! Black
|
||||
*.color0: #20111b
|
||||
*.color8: #5e5252
|
||||
!
|
||||
! Red
|
||||
*.color1: #be100e
|
||||
*.color9: #be100e
|
||||
!
|
||||
! Green
|
||||
*.color2: #858162
|
||||
*.color10: #858162
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #eaa549
|
||||
*.color11: #eaa549
|
||||
!
|
||||
! Blue
|
||||
*.color4: #426a79
|
||||
*.color12: #426a79
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #97522c
|
||||
*.color13: #97522c
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #989a9c
|
||||
*.color14: #989a9c
|
||||
!
|
||||
! White
|
||||
*.color7: #968c83
|
||||
*.color15: #d5ccba
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #45373c
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Belafonte Night
Normal file
44
terminus-community-color-schemes/schemes/Belafonte Night
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #968c83
|
||||
*.background: #20111b
|
||||
*.cursorColor: #968c83
|
||||
!
|
||||
! Black
|
||||
*.color0: #20111b
|
||||
*.color8: #5e5252
|
||||
!
|
||||
! Red
|
||||
*.color1: #be100e
|
||||
*.color9: #be100e
|
||||
!
|
||||
! Green
|
||||
*.color2: #858162
|
||||
*.color10: #858162
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #eaa549
|
||||
*.color11: #eaa549
|
||||
!
|
||||
! Blue
|
||||
*.color4: #426a79
|
||||
*.color12: #426a79
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #97522c
|
||||
*.color13: #97522c
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #989a9c
|
||||
*.color14: #989a9c
|
||||
!
|
||||
! White
|
||||
*.color7: #968c83
|
||||
*.color15: #d5ccba
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #968c83
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/BirdsOfParadise
Normal file
44
terminus-community-color-schemes/schemes/BirdsOfParadise
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #e0dbb7
|
||||
*.background: #2a1f1d
|
||||
*.cursorColor: #573d26
|
||||
!
|
||||
! Black
|
||||
*.color0: #573d26
|
||||
*.color8: #9b6c4a
|
||||
!
|
||||
! Red
|
||||
*.color1: #be2d26
|
||||
*.color9: #e84627
|
||||
!
|
||||
! Green
|
||||
*.color2: #6ba18a
|
||||
*.color10: #95d8ba
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #e99d2a
|
||||
*.color11: #d0d150
|
||||
!
|
||||
! Blue
|
||||
*.color4: #5a86ad
|
||||
*.color12: #b8d3ed
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #ac80a6
|
||||
*.color13: #d19ecb
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #74a6ad
|
||||
*.color14: #93cfd7
|
||||
!
|
||||
! White
|
||||
*.color7: #e0dbb7
|
||||
*.color15: #fff9d5
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #fff8d8
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Blazer
Normal file
44
terminus-community-color-schemes/schemes/Blazer
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #d9e6f2
|
||||
*.background: #0d1926
|
||||
*.cursorColor: #d9e6f2
|
||||
!
|
||||
! Black
|
||||
*.color0: #000000
|
||||
*.color8: #262626
|
||||
!
|
||||
! Red
|
||||
*.color1: #b87a7a
|
||||
*.color9: #dbbdbd
|
||||
!
|
||||
! Green
|
||||
*.color2: #7ab87a
|
||||
*.color10: #bddbbd
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #b8b87a
|
||||
*.color11: #dbdbbd
|
||||
!
|
||||
! Blue
|
||||
*.color4: #7a7ab8
|
||||
*.color12: #bdbddb
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #b87ab8
|
||||
*.color13: #dbbddb
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #7ab8b8
|
||||
*.color14: #bddbdb
|
||||
!
|
||||
! White
|
||||
*.color7: #d9d9d9
|
||||
*.color15: #ffffff
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
!*.colorBD:
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Borland
Normal file
44
terminus-community-color-schemes/schemes/Borland
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #ffff4e
|
||||
*.background: #0000a4
|
||||
*.cursorColor: #ffa560
|
||||
!
|
||||
! Black
|
||||
*.color0: #4f4f4f
|
||||
*.color8: #7c7c7c
|
||||
!
|
||||
! Red
|
||||
*.color1: #ff6c60
|
||||
*.color9: #ffb6b0
|
||||
!
|
||||
! Green
|
||||
*.color2: #a8ff60
|
||||
*.color10: #ceffac
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #ffffb6
|
||||
*.color11: #ffffcc
|
||||
!
|
||||
! Blue
|
||||
*.color4: #96cbfe
|
||||
*.color12: #b5dcff
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #ff73fd
|
||||
*.color13: #ff9cfe
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #c6c5fe
|
||||
*.color14: #dfdffe
|
||||
!
|
||||
! White
|
||||
*.color7: #eeeeee
|
||||
*.color15: #ffffff
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #ffff4e
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Bright Lights
Normal file
44
terminus-community-color-schemes/schemes/Bright Lights
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #b3c9d7
|
||||
*.background: #191919
|
||||
*.cursorColor: #f34b00
|
||||
!
|
||||
! Black
|
||||
*.color0: #191919
|
||||
*.color8: #191919
|
||||
!
|
||||
! Red
|
||||
*.color1: #ff355b
|
||||
*.color9: #ff355b
|
||||
!
|
||||
! Green
|
||||
*.color2: #b7e876
|
||||
*.color10: #b7e876
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #ffc251
|
||||
*.color11: #ffc251
|
||||
!
|
||||
! Blue
|
||||
*.color4: #76d4ff
|
||||
*.color12: #76d5ff
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #ba76e7
|
||||
*.color13: #ba76e7
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #6cbfb5
|
||||
*.color14: #6cbfb5
|
||||
!
|
||||
! White
|
||||
*.color7: #c2c8d7
|
||||
*.color15: #c2c8d7
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #9fb3c1
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Broadcast
Normal file
44
terminus-community-color-schemes/schemes/Broadcast
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #e6e1dc
|
||||
*.background: #2b2b2b
|
||||
*.cursorColor: #ffffff
|
||||
!
|
||||
! Black
|
||||
*.color0: #000000
|
||||
*.color8: #323232
|
||||
!
|
||||
! Red
|
||||
*.color1: #da4939
|
||||
*.color9: #ff7b6b
|
||||
!
|
||||
! Green
|
||||
*.color2: #519f50
|
||||
*.color10: #83d182
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #ffd24a
|
||||
*.color11: #ffff7c
|
||||
!
|
||||
! Blue
|
||||
*.color4: #6d9cbe
|
||||
*.color12: #9fcef0
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #d0d0ff
|
||||
*.color13: #ffffff
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #6e9cbe
|
||||
*.color14: #a0cef0
|
||||
!
|
||||
! White
|
||||
*.color7: #ffffff
|
||||
*.color15: #ffffff
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #e6e1dc
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Brogrammer
Normal file
44
terminus-community-color-schemes/schemes/Brogrammer
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #d6dbe5
|
||||
*.background: #131313
|
||||
*.cursorColor: #b9b9b9
|
||||
!
|
||||
! Black
|
||||
*.color0: #1f1f1f
|
||||
*.color8: #d6dbe5
|
||||
!
|
||||
! Red
|
||||
*.color1: #f81118
|
||||
*.color9: #de352e
|
||||
!
|
||||
! Green
|
||||
*.color2: #2dc55e
|
||||
*.color10: #1dd361
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #ecba0f
|
||||
*.color11: #f3bd09
|
||||
!
|
||||
! Blue
|
||||
*.color4: #2a84d2
|
||||
*.color12: #1081d6
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #4e5ab7
|
||||
*.color13: #5350b9
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #1081d6
|
||||
*.color14: #0f7ddb
|
||||
!
|
||||
! White
|
||||
*.color7: #d6dbe5
|
||||
*.color15: #ffffff
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #d6dbe5
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/C64
Normal file
44
terminus-community-color-schemes/schemes/C64
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #7869c4
|
||||
*.background: #40318d
|
||||
*.cursorColor: #7869c4
|
||||
!
|
||||
! Black
|
||||
*.color0: #090300
|
||||
*.color8: #000000
|
||||
!
|
||||
! Red
|
||||
*.color1: #883932
|
||||
*.color9: #883932
|
||||
!
|
||||
! Green
|
||||
*.color2: #55a049
|
||||
*.color10: #55a049
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #bfce72
|
||||
*.color11: #bfce72
|
||||
!
|
||||
! Blue
|
||||
*.color4: #40318d
|
||||
*.color12: #40318d
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #8b3f96
|
||||
*.color13: #8b3f96
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #67b6bd
|
||||
*.color14: #67b6bd
|
||||
!
|
||||
! White
|
||||
*.color7: #ffffff
|
||||
*.color15: #f7f7f7
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #a5a2a2
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/CLRS
Normal file
44
terminus-community-color-schemes/schemes/CLRS
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #262626
|
||||
*.background: #ffffff
|
||||
*.cursorColor: #6fd3fc
|
||||
!
|
||||
! Black
|
||||
*.color0: #000000
|
||||
*.color8: #555753
|
||||
!
|
||||
! Red
|
||||
*.color1: #f8282a
|
||||
*.color9: #fb0416
|
||||
!
|
||||
! Green
|
||||
*.color2: #328a5d
|
||||
*.color10: #2cc631
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #fa701d
|
||||
*.color11: #fdd727
|
||||
!
|
||||
! Blue
|
||||
*.color4: #135cd0
|
||||
*.color12: #1670ff
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #9f00bd
|
||||
*.color13: #e900b0
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #33c3c1
|
||||
*.color14: #3ad5ce
|
||||
!
|
||||
! White
|
||||
*.color7: #b3b3b3
|
||||
*.color15: #eeeeec
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #1a1a1a
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Chalk
Normal file
44
terminus-community-color-schemes/schemes/Chalk
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #d2d8d9
|
||||
*.background: #2b2d2e
|
||||
*.cursorColor: #708284
|
||||
!
|
||||
! Black
|
||||
*.color0: #7d8b8f
|
||||
*.color8: #888888
|
||||
!
|
||||
! Red
|
||||
*.color1: #b23a52
|
||||
*.color9: #f24840
|
||||
!
|
||||
! Green
|
||||
*.color2: #789b6a
|
||||
*.color10: #80c470
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #b9ac4a
|
||||
*.color11: #ffeb62
|
||||
!
|
||||
! Blue
|
||||
*.color4: #2a7fac
|
||||
*.color12: #4196ff
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #bd4f5a
|
||||
*.color13: #fc5275
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #44a799
|
||||
*.color14: #53cdbd
|
||||
!
|
||||
! White
|
||||
*.color7: #d2d8d9
|
||||
*.color15: #d2d8d9
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #ececec
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Chalkboard
Normal file
44
terminus-community-color-schemes/schemes/Chalkboard
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #d9e6f2
|
||||
*.background: #29262f
|
||||
*.cursorColor: #d9e6f2
|
||||
!
|
||||
! Black
|
||||
*.color0: #000000
|
||||
*.color8: #323232
|
||||
!
|
||||
! Red
|
||||
*.color1: #c37372
|
||||
*.color9: #dbaaaa
|
||||
!
|
||||
! Green
|
||||
*.color2: #72c373
|
||||
*.color10: #aadbaa
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #c2c372
|
||||
*.color11: #dadbaa
|
||||
!
|
||||
! Blue
|
||||
*.color4: #7372c3
|
||||
*.color12: #aaaadb
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #c372c2
|
||||
*.color13: #dbaada
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #72c2c3
|
||||
*.color14: #aadadb
|
||||
!
|
||||
! White
|
||||
*.color7: #d9d9d9
|
||||
*.color15: #ffffff
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #d96f5f
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Ciapre
Normal file
44
terminus-community-color-schemes/schemes/Ciapre
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #aea47a
|
||||
*.background: #191c27
|
||||
*.cursorColor: #92805b
|
||||
!
|
||||
! Black
|
||||
*.color0: #181818
|
||||
*.color8: #555555
|
||||
!
|
||||
! Red
|
||||
*.color1: #810009
|
||||
*.color9: #ac3835
|
||||
!
|
||||
! Green
|
||||
*.color2: #48513b
|
||||
*.color10: #a6a75d
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #cc8b3f
|
||||
*.color11: #dcdf7c
|
||||
!
|
||||
! Blue
|
||||
*.color4: #576d8c
|
||||
*.color12: #3097c6
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #724d7c
|
||||
*.color13: #d33061
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #5c4f4b
|
||||
*.color14: #f3dbb2
|
||||
!
|
||||
! White
|
||||
*.color7: #aea47f
|
||||
*.color15: #f4f4f4
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #f4f4f4
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Cobalt Neon
Normal file
44
terminus-community-color-schemes/schemes/Cobalt Neon
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #8ff586
|
||||
*.background: #142838
|
||||
*.cursorColor: #c4206f
|
||||
!
|
||||
! Black
|
||||
*.color0: #142631
|
||||
*.color8: #fff688
|
||||
!
|
||||
! Red
|
||||
*.color1: #ff2320
|
||||
*.color9: #d4312e
|
||||
!
|
||||
! Green
|
||||
*.color2: #3ba5ff
|
||||
*.color10: #8ff586
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #e9e75c
|
||||
*.color11: #e9f06d
|
||||
!
|
||||
! Blue
|
||||
*.color4: #8ff586
|
||||
*.color12: #3c7dd2
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #781aa0
|
||||
*.color13: #8230a7
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #8ff586
|
||||
*.color14: #6cbc67
|
||||
!
|
||||
! White
|
||||
*.color7: #ba46b2
|
||||
*.color15: #8ff586
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #248b70
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Cobalt2
Normal file
44
terminus-community-color-schemes/schemes/Cobalt2
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #ffffff
|
||||
*.background: #132738
|
||||
*.cursorColor: #f0cc09
|
||||
!
|
||||
! Black
|
||||
*.color0: #000000
|
||||
*.color8: #555555
|
||||
!
|
||||
! Red
|
||||
*.color1: #ff0000
|
||||
*.color9: #f40e17
|
||||
!
|
||||
! Green
|
||||
*.color2: #38de21
|
||||
*.color10: #3bd01d
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #ffe50a
|
||||
*.color11: #edc809
|
||||
!
|
||||
! Blue
|
||||
*.color4: #1460d2
|
||||
*.color12: #5555ff
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #ff005d
|
||||
*.color13: #ff55ff
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #00bbbb
|
||||
*.color14: #6ae3fa
|
||||
!
|
||||
! White
|
||||
*.color7: #bbbbbb
|
||||
*.color15: #ffffff
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #f7fcff
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/CrayonPonyFish
Normal file
44
terminus-community-color-schemes/schemes/CrayonPonyFish
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #68525a
|
||||
*.background: #150707
|
||||
*.cursorColor: #68525a
|
||||
!
|
||||
! Black
|
||||
*.color0: #2b1b1d
|
||||
*.color8: #3d2b2e
|
||||
!
|
||||
! Red
|
||||
*.color1: #91002b
|
||||
*.color9: #c5255d
|
||||
!
|
||||
! Green
|
||||
*.color2: #579524
|
||||
*.color10: #8dff57
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #ab311b
|
||||
*.color11: #c8381d
|
||||
!
|
||||
! Blue
|
||||
*.color4: #8c87b0
|
||||
*.color12: #cfc9ff
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #692f50
|
||||
*.color13: #fc6cba
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #e8a866
|
||||
*.color14: #ffceaf
|
||||
!
|
||||
! White
|
||||
*.color7: #68525a
|
||||
*.color15: #b0949d
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #c8381d
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Dark Pastel
Normal file
44
terminus-community-color-schemes/schemes/Dark Pastel
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #ffffff
|
||||
*.background: #000000
|
||||
*.cursorColor: #bbbbbb
|
||||
!
|
||||
! Black
|
||||
*.color0: #000000
|
||||
*.color8: #555555
|
||||
!
|
||||
! Red
|
||||
*.color1: #ff5555
|
||||
*.color9: #ff5555
|
||||
!
|
||||
! Green
|
||||
*.color2: #55ff55
|
||||
*.color10: #55ff55
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #ffff55
|
||||
*.color11: #ffff55
|
||||
!
|
||||
! Blue
|
||||
*.color4: #5555ff
|
||||
*.color12: #5555ff
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #ff55ff
|
||||
*.color13: #ff55ff
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #55ffff
|
||||
*.color14: #55ffff
|
||||
!
|
||||
! White
|
||||
*.color7: #bbbbbb
|
||||
*.color15: #ffffff
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #ff5e7d
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Darkside
Normal file
44
terminus-community-color-schemes/schemes/Darkside
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #bababa
|
||||
*.background: #222324
|
||||
*.cursorColor: #bbbbbb
|
||||
!
|
||||
! Black
|
||||
*.color0: #000000
|
||||
*.color8: #000000
|
||||
!
|
||||
! Red
|
||||
*.color1: #e8341c
|
||||
*.color9: #e05a4f
|
||||
!
|
||||
! Green
|
||||
*.color2: #68c256
|
||||
*.color10: #77b869
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #f2d42c
|
||||
*.color11: #efd64b
|
||||
!
|
||||
! Blue
|
||||
*.color4: #1c98e8
|
||||
*.color12: #387cd3
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #8e69c9
|
||||
*.color13: #957bbe
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #1c98e8
|
||||
*.color14: #3d97e2
|
||||
!
|
||||
! White
|
||||
*.color7: #bababa
|
||||
*.color15: #bababa
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #ffffff
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Desert
Normal file
44
terminus-community-color-schemes/schemes/Desert
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #ffffff
|
||||
*.background: #333333
|
||||
*.cursorColor: #00ff00
|
||||
!
|
||||
! Black
|
||||
*.color0: #4d4d4d
|
||||
*.color8: #555555
|
||||
!
|
||||
! Red
|
||||
*.color1: #ff2b2b
|
||||
*.color9: #ff5555
|
||||
!
|
||||
! Green
|
||||
*.color2: #98fb98
|
||||
*.color10: #55ff55
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #f0e68c
|
||||
*.color11: #ffff55
|
||||
!
|
||||
! Blue
|
||||
*.color4: #cd853f
|
||||
*.color12: #87ceff
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #ffdead
|
||||
*.color13: #ff55ff
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #ffa0a0
|
||||
*.color14: #ffd700
|
||||
!
|
||||
! White
|
||||
*.color7: #f5deb3
|
||||
*.color15: #ffffff
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #ffd700
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/DimmedMonokai
Normal file
44
terminus-community-color-schemes/schemes/DimmedMonokai
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #b9bcba
|
||||
*.background: #1f1f1f
|
||||
*.cursorColor: #f83e19
|
||||
!
|
||||
! Black
|
||||
*.color0: #3a3d43
|
||||
*.color8: #888987
|
||||
!
|
||||
! Red
|
||||
*.color1: #be3f48
|
||||
*.color9: #fb001f
|
||||
!
|
||||
! Green
|
||||
*.color2: #879a3b
|
||||
*.color10: #0f722f
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #c5a635
|
||||
*.color11: #c47033
|
||||
!
|
||||
! Blue
|
||||
*.color4: #4f76a1
|
||||
*.color12: #186de3
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #855c8d
|
||||
*.color13: #fb0067
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #578fa4
|
||||
*.color14: #2e706d
|
||||
!
|
||||
! White
|
||||
*.color7: #b9bcba
|
||||
*.color15: #fdffb9
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #feffb2
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/DotGov
Normal file
44
terminus-community-color-schemes/schemes/DotGov
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #ebebeb
|
||||
*.background: #262c35
|
||||
*.cursorColor: #d9002f
|
||||
!
|
||||
! Black
|
||||
*.color0: #191919
|
||||
*.color8: #191919
|
||||
!
|
||||
! Red
|
||||
*.color1: #bf091d
|
||||
*.color9: #bf091d
|
||||
!
|
||||
! Green
|
||||
*.color2: #3d9751
|
||||
*.color10: #3d9751
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #f6bb34
|
||||
*.color11: #f6bb34
|
||||
!
|
||||
! Blue
|
||||
*.color4: #17b2e0
|
||||
*.color12: #17b2e0
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #7830b0
|
||||
*.color13: #7830b0
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #8bd2ed
|
||||
*.color14: #8bd2ed
|
||||
!
|
||||
! White
|
||||
*.color7: #ffffff
|
||||
*.color15: #ffffff
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #fbab19
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Dracula
Normal file
44
terminus-community-color-schemes/schemes/Dracula
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #f8f8f2
|
||||
*.background: #1e1f29
|
||||
*.cursorColor: #bbbbbb
|
||||
!
|
||||
! Black
|
||||
*.color0: #000000
|
||||
*.color8: #555555
|
||||
!
|
||||
! Red
|
||||
*.color1: #ff5555
|
||||
*.color9: #ff5555
|
||||
!
|
||||
! Green
|
||||
*.color2: #50fa7b
|
||||
*.color10: #50fa7b
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #f1fa8c
|
||||
*.color11: #f1fa8c
|
||||
!
|
||||
! Blue
|
||||
*.color4: #bd93f9
|
||||
*.color12: #bd93f9
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #ff79c6
|
||||
*.color13: #ff79c6
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #8be9fd
|
||||
*.color14: #8be9fd
|
||||
!
|
||||
! White
|
||||
*.color7: #bbbbbb
|
||||
*.color15: #ffffff
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #ffffff
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Duotone Dark
Normal file
44
terminus-community-color-schemes/schemes/Duotone Dark
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #b7a1ff
|
||||
*.background: #1f1d27
|
||||
*.cursorColor: #ff9839
|
||||
!
|
||||
! Black
|
||||
*.color0: #1f1d27
|
||||
*.color8: #353147
|
||||
!
|
||||
! Red
|
||||
*.color1: #d9393e
|
||||
*.color9: #d9393e
|
||||
!
|
||||
! Green
|
||||
*.color2: #2dcd73
|
||||
*.color10: #2dcd73
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #d9b76e
|
||||
*.color11: #d9b76e
|
||||
!
|
||||
! Blue
|
||||
*.color4: #ffc284
|
||||
*.color12: #ffc284
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #de8d40
|
||||
*.color13: #de8d40
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #2488ff
|
||||
*.color14: #2488ff
|
||||
!
|
||||
! White
|
||||
*.color7: #b7a1ff
|
||||
*.color15: #eae5ff
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #b7a2ff
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/ENCOM
Normal file
44
terminus-community-color-schemes/schemes/ENCOM
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #00a595
|
||||
*.background: #000000
|
||||
*.cursorColor: #bbbbbb
|
||||
!
|
||||
! Black
|
||||
*.color0: #000000
|
||||
*.color8: #555555
|
||||
!
|
||||
! Red
|
||||
*.color1: #9f0000
|
||||
*.color9: #ff0000
|
||||
!
|
||||
! Green
|
||||
*.color2: #008b00
|
||||
*.color10: #00ee00
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #ffd000
|
||||
*.color11: #ffff00
|
||||
!
|
||||
! Blue
|
||||
*.color4: #0081ff
|
||||
*.color12: #0000ff
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #bc00ca
|
||||
*.color13: #ff00ff
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #008b8b
|
||||
*.color14: #00cdcd
|
||||
!
|
||||
! White
|
||||
*.color7: #bbbbbb
|
||||
*.color15: #ffffff
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #4cf1e1
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Earthsong
Normal file
44
terminus-community-color-schemes/schemes/Earthsong
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #e5c7a9
|
||||
*.background: #292520
|
||||
*.cursorColor: #f6f7ec
|
||||
!
|
||||
! Black
|
||||
*.color0: #121418
|
||||
*.color8: #675f54
|
||||
!
|
||||
! Red
|
||||
*.color1: #c94234
|
||||
*.color9: #ff645a
|
||||
!
|
||||
! Green
|
||||
*.color2: #85c54c
|
||||
*.color10: #98e036
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #f5ae2e
|
||||
*.color11: #e0d561
|
||||
!
|
||||
! Blue
|
||||
*.color4: #1398b9
|
||||
*.color12: #5fdaff
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #d0633d
|
||||
*.color13: #ff9269
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #509552
|
||||
*.color14: #84f088
|
||||
!
|
||||
! White
|
||||
*.color7: #e5c6aa
|
||||
*.color15: #f6f7ec
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #f6f7ec
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Elemental
Normal file
44
terminus-community-color-schemes/schemes/Elemental
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #807a74
|
||||
*.background: #22211d
|
||||
*.cursorColor: #facb80
|
||||
!
|
||||
! Black
|
||||
*.color0: #3c3c30
|
||||
*.color8: #555445
|
||||
!
|
||||
! Red
|
||||
*.color1: #98290f
|
||||
*.color9: #e0502a
|
||||
!
|
||||
! Green
|
||||
*.color2: #479a43
|
||||
*.color10: #61e070
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #7f7111
|
||||
*.color11: #d69927
|
||||
!
|
||||
! Blue
|
||||
*.color4: #497f7d
|
||||
*.color12: #79d9d9
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #7f4e2f
|
||||
*.color13: #cd7c54
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #387f58
|
||||
*.color14: #59d599
|
||||
!
|
||||
! White
|
||||
*.color7: #807974
|
||||
*.color15: #fff1e9
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #fae679
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Elementary
Normal file
44
terminus-community-color-schemes/schemes/Elementary
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #efefef
|
||||
*.background: #181818
|
||||
*.cursorColor: #bbbbbb
|
||||
!
|
||||
! Black
|
||||
*.color0: #242424
|
||||
*.color8: #4b4b4b
|
||||
!
|
||||
! Red
|
||||
*.color1: #d71c15
|
||||
*.color9: #fc1c18
|
||||
!
|
||||
! Green
|
||||
*.color2: #5aa513
|
||||
*.color10: #6bc219
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #fdb40c
|
||||
*.color11: #fec80e
|
||||
!
|
||||
! Blue
|
||||
*.color4: #063b8c
|
||||
*.color12: #0955ff
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #e40038
|
||||
*.color13: #fb0050
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #2595e1
|
||||
*.color14: #3ea8fc
|
||||
!
|
||||
! White
|
||||
*.color7: #efefef
|
||||
*.color15: #8c00ec
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #ffffff
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Espresso
Normal file
44
terminus-community-color-schemes/schemes/Espresso
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #ffffff
|
||||
*.background: #323232
|
||||
*.cursorColor: #d6d6d6
|
||||
!
|
||||
! Black
|
||||
*.color0: #353535
|
||||
*.color8: #535353
|
||||
!
|
||||
! Red
|
||||
*.color1: #d25252
|
||||
*.color9: #f00c0c
|
||||
!
|
||||
! Green
|
||||
*.color2: #a5c261
|
||||
*.color10: #c2e075
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #ffc66d
|
||||
*.color11: #e1e48b
|
||||
!
|
||||
! Blue
|
||||
*.color4: #6c99bb
|
||||
*.color12: #8ab7d9
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #d197d9
|
||||
*.color13: #efb5f7
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #bed6ff
|
||||
*.color14: #dcf4ff
|
||||
!
|
||||
! White
|
||||
*.color7: #eeeeec
|
||||
*.color15: #ffffff
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #ffffff
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Espresso Libre
Normal file
44
terminus-community-color-schemes/schemes/Espresso Libre
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #b8a898
|
||||
*.background: #2a211c
|
||||
*.cursorColor: #ffffff
|
||||
!
|
||||
! Black
|
||||
*.color0: #000000
|
||||
*.color8: #555753
|
||||
!
|
||||
! Red
|
||||
*.color1: #cc0000
|
||||
*.color9: #ef2929
|
||||
!
|
||||
! Green
|
||||
*.color2: #1a921c
|
||||
*.color10: #9aff87
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #f0e53a
|
||||
*.color11: #fffb5c
|
||||
!
|
||||
! Blue
|
||||
*.color4: #0066ff
|
||||
*.color12: #43a8ed
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #c5656b
|
||||
*.color13: #ff818a
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #06989a
|
||||
*.color14: #34e2e2
|
||||
!
|
||||
! White
|
||||
*.color7: #d3d7cf
|
||||
*.color15: #eeeeec
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #d3c1af
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Fideloper
Normal file
44
terminus-community-color-schemes/schemes/Fideloper
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #dbdae0
|
||||
*.background: #292f33
|
||||
*.cursorColor: #d4605a
|
||||
!
|
||||
! Black
|
||||
*.color0: #292f33
|
||||
*.color8: #092028
|
||||
!
|
||||
! Red
|
||||
*.color1: #cb1e2d
|
||||
*.color9: #d4605a
|
||||
!
|
||||
! Green
|
||||
*.color2: #edb8ac
|
||||
*.color10: #d4605a
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #b7ab9b
|
||||
*.color11: #a86671
|
||||
!
|
||||
! Blue
|
||||
*.color4: #2e78c2
|
||||
*.color12: #7c85c4
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #c0236f
|
||||
*.color13: #5c5db2
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #309186
|
||||
*.color14: #819090
|
||||
!
|
||||
! White
|
||||
*.color7: #eae3ce
|
||||
*.color15: #fcf4df
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #6b7c7c
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/FirefoxDev
Normal file
44
terminus-community-color-schemes/schemes/FirefoxDev
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #7c8fa4
|
||||
*.background: #0e1011
|
||||
*.cursorColor: #708284
|
||||
!
|
||||
! Black
|
||||
*.color0: #002831
|
||||
*.color8: #001e27
|
||||
!
|
||||
! Red
|
||||
*.color1: #e63853
|
||||
*.color9: #e1003f
|
||||
!
|
||||
! Green
|
||||
*.color2: #5eb83c
|
||||
*.color10: #1d9000
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #a57706
|
||||
*.color11: #cd9409
|
||||
!
|
||||
! Blue
|
||||
*.color4: #359ddf
|
||||
*.color12: #006fc0
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #d75cff
|
||||
*.color13: #a200da
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #4b73a2
|
||||
*.color14: #005794
|
||||
!
|
||||
! White
|
||||
*.color7: #dcdcdc
|
||||
*.color15: #e2e2e2
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #a7acb2
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Firewatch
Normal file
44
terminus-community-color-schemes/schemes/Firewatch
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #9ba2b2
|
||||
*.background: #1e2027
|
||||
*.cursorColor: #f6f7ec
|
||||
!
|
||||
! Black
|
||||
*.color0: #585f6d
|
||||
*.color8: #585f6d
|
||||
!
|
||||
! Red
|
||||
*.color1: #d95360
|
||||
*.color9: #d95360
|
||||
!
|
||||
! Green
|
||||
*.color2: #5ab977
|
||||
*.color10: #5ab977
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #dfb563
|
||||
*.color11: #dfb563
|
||||
!
|
||||
! Blue
|
||||
*.color4: #4d89c4
|
||||
*.color12: #4c89c5
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #d55119
|
||||
*.color13: #d55119
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #44a8b6
|
||||
*.color14: #44a8b6
|
||||
!
|
||||
! White
|
||||
*.color7: #e6e5ff
|
||||
*.color15: #e6e5ff
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #e6e5ff
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/FishTank
Normal file
44
terminus-community-color-schemes/schemes/FishTank
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #ecf0fe
|
||||
*.background: #232537
|
||||
*.cursorColor: #fecd5e
|
||||
!
|
||||
! Black
|
||||
*.color0: #03073c
|
||||
*.color8: #6c5b30
|
||||
!
|
||||
! Red
|
||||
*.color1: #c6004a
|
||||
*.color9: #da4b8a
|
||||
!
|
||||
! Green
|
||||
*.color2: #acf157
|
||||
*.color10: #dbffa9
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #fecd5e
|
||||
*.color11: #fee6a9
|
||||
!
|
||||
! Blue
|
||||
*.color4: #525fb8
|
||||
*.color12: #b2befa
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #986f82
|
||||
*.color13: #fda5cd
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #968763
|
||||
*.color14: #a5bd86
|
||||
!
|
||||
! White
|
||||
*.color7: #ecf0fc
|
||||
*.color15: #f6ffec
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #f6ffeb
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Flat
Normal file
44
terminus-community-color-schemes/schemes/Flat
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #2cc55d
|
||||
*.background: #002240
|
||||
*.cursorColor: #e5be0c
|
||||
!
|
||||
! Black
|
||||
*.color0: #222d3f
|
||||
*.color8: #212c3c
|
||||
!
|
||||
! Red
|
||||
*.color1: #a82320
|
||||
*.color9: #d4312e
|
||||
!
|
||||
! Green
|
||||
*.color2: #32a548
|
||||
*.color10: #2d9440
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #e58d11
|
||||
*.color11: #e5be0c
|
||||
!
|
||||
! Blue
|
||||
*.color4: #3167ac
|
||||
*.color12: #3c7dd2
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #781aa0
|
||||
*.color13: #8230a7
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #2c9370
|
||||
*.color14: #35b387
|
||||
!
|
||||
! White
|
||||
*.color7: #b0b6ba
|
||||
*.color15: #e7eced
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #e7eced
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Flatland
Normal file
44
terminus-community-color-schemes/schemes/Flatland
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #b8dbef
|
||||
*.background: #1d1f21
|
||||
*.cursorColor: #708284
|
||||
!
|
||||
! Black
|
||||
*.color0: #1d1d19
|
||||
*.color8: #1d1d19
|
||||
!
|
||||
! Red
|
||||
*.color1: #f18339
|
||||
*.color9: #d22a24
|
||||
!
|
||||
! Green
|
||||
*.color2: #9fd364
|
||||
*.color10: #a7d42c
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #f4ef6d
|
||||
*.color11: #ff8949
|
||||
!
|
||||
! Blue
|
||||
*.color4: #5096be
|
||||
*.color12: #61b9d0
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #695abc
|
||||
*.color13: #695abc
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #d63865
|
||||
*.color14: #d63865
|
||||
!
|
||||
! White
|
||||
*.color7: #ffffff
|
||||
*.color15: #ffffff
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #ffffff
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Floraverse
Normal file
44
terminus-community-color-schemes/schemes/Floraverse
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #dbd1b9
|
||||
*.background: #0e0d15
|
||||
*.cursorColor: #bbbbbb
|
||||
!
|
||||
! Black
|
||||
*.color0: #08002e
|
||||
*.color8: #331e4d
|
||||
!
|
||||
! Red
|
||||
*.color1: #64002c
|
||||
*.color9: #d02063
|
||||
!
|
||||
! Green
|
||||
*.color2: #5d731a
|
||||
*.color10: #b4ce59
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #cd751c
|
||||
*.color11: #fac357
|
||||
!
|
||||
! Blue
|
||||
*.color4: #1d6da1
|
||||
*.color12: #40a4cf
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #b7077e
|
||||
*.color13: #f12aae
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #42a38c
|
||||
*.color14: #62caa8
|
||||
!
|
||||
! White
|
||||
*.color7: #f3e0b8
|
||||
*.color15: #fff5db
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #ffffff
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/ForestBlue
Normal file
44
terminus-community-color-schemes/schemes/ForestBlue
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #e2d8cd
|
||||
*.background: #051519
|
||||
*.cursorColor: #9e9ecb
|
||||
!
|
||||
! Black
|
||||
*.color0: #333333
|
||||
*.color8: #3d3d3d
|
||||
!
|
||||
! Red
|
||||
*.color1: #f8818e
|
||||
*.color9: #fb3d66
|
||||
!
|
||||
! Green
|
||||
*.color2: #92d3a2
|
||||
*.color10: #6bb48d
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #1a8e63
|
||||
*.color11: #30c85a
|
||||
!
|
||||
! Blue
|
||||
*.color4: #8ed0ce
|
||||
*.color12: #39a7a2
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #5e468c
|
||||
*.color13: #7e62b3
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #31658c
|
||||
*.color14: #6096bf
|
||||
!
|
||||
! White
|
||||
*.color7: #e2d8cd
|
||||
*.color15: #e2d8cd
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #ffffff
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/FrontEndDelight
Normal file
44
terminus-community-color-schemes/schemes/FrontEndDelight
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #adadad
|
||||
*.background: #1b1c1d
|
||||
*.cursorColor: #cdcdcd
|
||||
!
|
||||
! Black
|
||||
*.color0: #242526
|
||||
*.color8: #5fac6d
|
||||
!
|
||||
! Red
|
||||
*.color1: #f8511b
|
||||
*.color9: #f74319
|
||||
!
|
||||
! Green
|
||||
*.color2: #565747
|
||||
*.color10: #74ec4c
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #fa771d
|
||||
*.color11: #fdc325
|
||||
!
|
||||
! Blue
|
||||
*.color4: #2c70b7
|
||||
*.color12: #3393ca
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #f02e4f
|
||||
*.color13: #e75e4f
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #3ca1a6
|
||||
*.color14: #4fbce6
|
||||
!
|
||||
! White
|
||||
*.color7: #adadad
|
||||
*.color15: #8c735b
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #cdcdcd
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/FunForrest
Normal file
44
terminus-community-color-schemes/schemes/FunForrest
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #dec165
|
||||
*.background: #251200
|
||||
*.cursorColor: #e5591c
|
||||
!
|
||||
! Black
|
||||
*.color0: #000000
|
||||
*.color8: #7f6a55
|
||||
!
|
||||
! Red
|
||||
*.color1: #d6262b
|
||||
*.color9: #e55a1c
|
||||
!
|
||||
! Green
|
||||
*.color2: #919c00
|
||||
*.color10: #bfc65a
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #be8a13
|
||||
*.color11: #ffcb1b
|
||||
!
|
||||
! Blue
|
||||
*.color4: #4699a3
|
||||
*.color12: #7cc9cf
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #8d4331
|
||||
*.color13: #d26349
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #da8213
|
||||
*.color14: #e6a96b
|
||||
!
|
||||
! White
|
||||
*.color7: #ddc265
|
||||
*.color15: #ffeaa3
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #ffeaa3
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Galaxy
Normal file
44
terminus-community-color-schemes/schemes/Galaxy
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #ffffff
|
||||
*.background: #1d2837
|
||||
*.cursorColor: #bbbbbb
|
||||
!
|
||||
! Black
|
||||
*.color0: #000000
|
||||
*.color8: #555555
|
||||
!
|
||||
! Red
|
||||
*.color1: #f9555f
|
||||
*.color9: #fa8c8f
|
||||
!
|
||||
! Green
|
||||
*.color2: #21b089
|
||||
*.color10: #35bb9a
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #fef02a
|
||||
*.color11: #ffff55
|
||||
!
|
||||
! Blue
|
||||
*.color4: #589df6
|
||||
*.color12: #589df6
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #944d95
|
||||
*.color13: #e75699
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #1f9ee7
|
||||
*.color14: #3979bc
|
||||
!
|
||||
! White
|
||||
*.color7: #bbbbbb
|
||||
*.color15: #ffffff
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #ffffff
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Github
Normal file
44
terminus-community-color-schemes/schemes/Github
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #3e3e3e
|
||||
*.background: #f4f4f4
|
||||
*.cursorColor: #3f3f3f
|
||||
!
|
||||
! Black
|
||||
*.color0: #3e3e3e
|
||||
*.color8: #666666
|
||||
!
|
||||
! Red
|
||||
*.color1: #970b16
|
||||
*.color9: #de0000
|
||||
!
|
||||
! Green
|
||||
*.color2: #07962a
|
||||
*.color10: #87d5a2
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #f8eec7
|
||||
*.color11: #f1d007
|
||||
!
|
||||
! Blue
|
||||
*.color4: #003e8a
|
||||
*.color12: #2e6cba
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #e94691
|
||||
*.color13: #ffa29f
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #89d1ec
|
||||
*.color14: #1cfafe
|
||||
!
|
||||
! White
|
||||
*.color7: #ffffff
|
||||
*.color15: #ffffff
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #c95500
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Glacier
Normal file
44
terminus-community-color-schemes/schemes/Glacier
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #ffffff
|
||||
*.background: #0c1115
|
||||
*.cursorColor: #6c6c6c
|
||||
!
|
||||
! Black
|
||||
*.color0: #2e343c
|
||||
*.color8: #404a55
|
||||
!
|
||||
! Red
|
||||
*.color1: #bd0f2f
|
||||
*.color9: #bd0f2f
|
||||
!
|
||||
! Green
|
||||
*.color2: #35a770
|
||||
*.color10: #49e998
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #fb9435
|
||||
*.color11: #fddf6e
|
||||
!
|
||||
! Blue
|
||||
*.color4: #1f5872
|
||||
*.color12: #2a8bc1
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #bd2523
|
||||
*.color13: #ea4727
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #778397
|
||||
*.color14: #a0b6d3
|
||||
!
|
||||
! White
|
||||
*.color7: #ffffff
|
||||
*.color15: #ffffff
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #ffffff
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Grape
Normal file
44
terminus-community-color-schemes/schemes/Grape
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #9f9fa1
|
||||
*.background: #171423
|
||||
*.cursorColor: #a288f7
|
||||
!
|
||||
! Black
|
||||
*.color0: #2d283f
|
||||
*.color8: #59516a
|
||||
!
|
||||
! Red
|
||||
*.color1: #ed2261
|
||||
*.color9: #f0729a
|
||||
!
|
||||
! Green
|
||||
*.color2: #1fa91b
|
||||
*.color10: #53aa5e
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #8ddc20
|
||||
*.color11: #b2dc87
|
||||
!
|
||||
! Blue
|
||||
*.color4: #487df4
|
||||
*.color12: #a9bcec
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #8d35c9
|
||||
*.color13: #ad81c2
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #3bdeed
|
||||
*.color14: #9de3eb
|
||||
!
|
||||
! White
|
||||
*.color7: #9e9ea0
|
||||
*.color15: #a288f7
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #9f87ff
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Grass
Normal file
44
terminus-community-color-schemes/schemes/Grass
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #fff0a5
|
||||
*.background: #13773d
|
||||
*.cursorColor: #8c2800
|
||||
!
|
||||
! Black
|
||||
*.color0: #000000
|
||||
*.color8: #555555
|
||||
!
|
||||
! Red
|
||||
*.color1: #bb0000
|
||||
*.color9: #bb0000
|
||||
!
|
||||
! Green
|
||||
*.color2: #00bb00
|
||||
*.color10: #00bb00
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #e7b000
|
||||
*.color11: #e7b000
|
||||
!
|
||||
! Blue
|
||||
*.color4: #0000a3
|
||||
*.color12: #0000bb
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #950062
|
||||
*.color13: #ff55ff
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #00bbbb
|
||||
*.color14: #55ffff
|
||||
!
|
||||
! White
|
||||
*.color7: #bbbbbb
|
||||
*.color15: #ffffff
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #ffb03b
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Gruvbox Dark
Normal file
44
terminus-community-color-schemes/schemes/Gruvbox Dark
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #e6d4a3
|
||||
*.background: #1e1e1e
|
||||
*.cursorColor: #bbbbbb
|
||||
!
|
||||
! Black
|
||||
*.color0: #161819
|
||||
*.color8: #7f7061
|
||||
!
|
||||
! Red
|
||||
*.color1: #f73028
|
||||
*.color9: #be0f17
|
||||
!
|
||||
! Green
|
||||
*.color2: #aab01e
|
||||
*.color10: #868715
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #f7b125
|
||||
*.color11: #cc881a
|
||||
!
|
||||
! Blue
|
||||
*.color4: #719586
|
||||
*.color12: #377375
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #c77089
|
||||
*.color13: #a04b73
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #7db669
|
||||
*.color14: #578e57
|
||||
!
|
||||
! White
|
||||
*.color7: #faefbb
|
||||
*.color15: #e6d4a3
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #978771
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Hardcore
Normal file
44
terminus-community-color-schemes/schemes/Hardcore
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #a0a0a0
|
||||
*.background: #121212
|
||||
*.cursorColor: #bbbbbb
|
||||
!
|
||||
! Black
|
||||
*.color0: #1b1d1e
|
||||
*.color8: #505354
|
||||
!
|
||||
! Red
|
||||
*.color1: #f92672
|
||||
*.color9: #ff669d
|
||||
!
|
||||
! Green
|
||||
*.color2: #a6e22e
|
||||
*.color10: #beed5f
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #fd971f
|
||||
*.color11: #e6db74
|
||||
!
|
||||
! Blue
|
||||
*.color4: #66d9ef
|
||||
*.color12: #66d9ef
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #9e6ffe
|
||||
*.color13: #9e6ffe
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #5e7175
|
||||
*.color14: #a3babf
|
||||
!
|
||||
! White
|
||||
*.color7: #ccccc6
|
||||
*.color15: #f8f8f2
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #ffffff
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Harper
Normal file
44
terminus-community-color-schemes/schemes/Harper
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #a8a49d
|
||||
*.background: #010101
|
||||
*.cursorColor: #a8a49d
|
||||
!
|
||||
! Black
|
||||
*.color0: #010101
|
||||
*.color8: #726e6a
|
||||
!
|
||||
! Red
|
||||
*.color1: #f8b63f
|
||||
*.color9: #f8b63f
|
||||
!
|
||||
! Green
|
||||
*.color2: #7fb5e1
|
||||
*.color10: #7fb5e1
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #d6da25
|
||||
*.color11: #d6da25
|
||||
!
|
||||
! Blue
|
||||
*.color4: #489e48
|
||||
*.color12: #489e48
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #b296c6
|
||||
*.color13: #b296c6
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #f5bfd7
|
||||
*.color14: #f5bfd7
|
||||
!
|
||||
! White
|
||||
*.color7: #a8a49d
|
||||
*.color15: #fefbea
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #a8a49d
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Highway
Normal file
44
terminus-community-color-schemes/schemes/Highway
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #ededed
|
||||
*.background: #222225
|
||||
*.cursorColor: #e0d9b9
|
||||
!
|
||||
! Black
|
||||
*.color0: #000000
|
||||
*.color8: #5d504a
|
||||
!
|
||||
! Red
|
||||
*.color1: #d00e18
|
||||
*.color9: #f07e18
|
||||
!
|
||||
! Green
|
||||
*.color2: #138034
|
||||
*.color10: #b1d130
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #ffcb3e
|
||||
*.color11: #fff120
|
||||
!
|
||||
! Blue
|
||||
*.color4: #006bb3
|
||||
*.color12: #4fc2fd
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #6b2775
|
||||
*.color13: #de0071
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #384564
|
||||
*.color14: #5d504a
|
||||
!
|
||||
! White
|
||||
*.color7: #ededed
|
||||
*.color15: #ffffff
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #fff8d8
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Hipster Green
Normal file
44
terminus-community-color-schemes/schemes/Hipster Green
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #84c138
|
||||
*.background: #100b05
|
||||
*.cursorColor: #23ff18
|
||||
!
|
||||
! Black
|
||||
*.color0: #000000
|
||||
*.color8: #666666
|
||||
!
|
||||
! Red
|
||||
*.color1: #b6214a
|
||||
*.color9: #e50000
|
||||
!
|
||||
! Green
|
||||
*.color2: #00a600
|
||||
*.color10: #86a93e
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #bfbf00
|
||||
*.color11: #e5e500
|
||||
!
|
||||
! Blue
|
||||
*.color4: #246eb2
|
||||
*.color12: #0000ff
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #b200b2
|
||||
*.color13: #e500e5
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #00a6b2
|
||||
*.color14: #00e5e5
|
||||
!
|
||||
! White
|
||||
*.color7: #bfbfbf
|
||||
*.color15: #e5e5e5
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #00db00
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Homebrew
Normal file
44
terminus-community-color-schemes/schemes/Homebrew
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #00ff00
|
||||
*.background: #000000
|
||||
*.cursorColor: #23ff18
|
||||
!
|
||||
! Black
|
||||
*.color0: #000000
|
||||
*.color8: #666666
|
||||
!
|
||||
! Red
|
||||
*.color1: #990000
|
||||
*.color9: #e50000
|
||||
!
|
||||
! Green
|
||||
*.color2: #00a600
|
||||
*.color10: #00d900
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #999900
|
||||
*.color11: #e5e500
|
||||
!
|
||||
! Blue
|
||||
*.color4: #0000b2
|
||||
*.color12: #0000ff
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #b200b2
|
||||
*.color13: #e500e5
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #00a6b2
|
||||
*.color14: #00e5e5
|
||||
!
|
||||
! White
|
||||
*.color7: #bfbfbf
|
||||
*.color15: #e5e5e5
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #00ff00
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Hurtado
Normal file
44
terminus-community-color-schemes/schemes/Hurtado
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #dbdbdb
|
||||
*.background: #000000
|
||||
*.cursorColor: #bbbbbb
|
||||
!
|
||||
! Black
|
||||
*.color0: #575757
|
||||
*.color8: #262626
|
||||
!
|
||||
! Red
|
||||
*.color1: #ff1b00
|
||||
*.color9: #d51d00
|
||||
!
|
||||
! Green
|
||||
*.color2: #a5e055
|
||||
*.color10: #a5df55
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #fbe74a
|
||||
*.color11: #fbe84a
|
||||
!
|
||||
! Blue
|
||||
*.color4: #496487
|
||||
*.color12: #89beff
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #fd5ff1
|
||||
*.color13: #c001c1
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #86e9fe
|
||||
*.color14: #86eafe
|
||||
!
|
||||
! White
|
||||
*.color7: #cbcccb
|
||||
*.color15: #dbdbdb
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #ffffff
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Hybrid
Normal file
44
terminus-community-color-schemes/schemes/Hybrid
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #b7bcba
|
||||
*.background: #161719
|
||||
*.cursorColor: #b7bcba
|
||||
!
|
||||
! Black
|
||||
*.color0: #2a2e33
|
||||
*.color8: #1d1f22
|
||||
!
|
||||
! Red
|
||||
*.color1: #b84d51
|
||||
*.color9: #8d2e32
|
||||
!
|
||||
! Green
|
||||
*.color2: #b3bf5a
|
||||
*.color10: #798431
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #e4b55e
|
||||
*.color11: #e58a50
|
||||
!
|
||||
! Blue
|
||||
*.color4: #6e90b0
|
||||
*.color12: #4b6b88
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #a17eac
|
||||
*.color13: #6e5079
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #7fbfb4
|
||||
*.color14: #4d7b74
|
||||
!
|
||||
! White
|
||||
*.color7: #b5b9b6
|
||||
*.color15: #5a626a
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #b7bcba
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/IC_Green_PPL
Normal file
44
terminus-community-color-schemes/schemes/IC_Green_PPL
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #d9efd3
|
||||
*.background: #3a3d3f
|
||||
*.cursorColor: #42ff58
|
||||
!
|
||||
! Black
|
||||
*.color0: #1f1f1f
|
||||
*.color8: #032710
|
||||
!
|
||||
! Red
|
||||
*.color1: #fb002a
|
||||
*.color9: #a7ff3f
|
||||
!
|
||||
! Green
|
||||
*.color2: #339c24
|
||||
*.color10: #9fff6d
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #659b25
|
||||
*.color11: #d2ff6d
|
||||
!
|
||||
! Blue
|
||||
*.color4: #149b45
|
||||
*.color12: #72ffb5
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #53b82c
|
||||
*.color13: #50ff3e
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #2cb868
|
||||
*.color14: #22ff71
|
||||
!
|
||||
! White
|
||||
*.color7: #e0ffef
|
||||
*.color15: #daefd0
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #9fff6d
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/IC_Orange_PPL
Normal file
44
terminus-community-color-schemes/schemes/IC_Orange_PPL
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #ffcb83
|
||||
*.background: #262626
|
||||
*.cursorColor: #fc531d
|
||||
!
|
||||
! Black
|
||||
*.color0: #000000
|
||||
*.color8: #6a4f2a
|
||||
!
|
||||
! Red
|
||||
*.color1: #c13900
|
||||
*.color9: #ff8c68
|
||||
!
|
||||
! Green
|
||||
*.color2: #a4a900
|
||||
*.color10: #f6ff40
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #caaf00
|
||||
*.color11: #ffe36e
|
||||
!
|
||||
! Blue
|
||||
*.color4: #bd6d00
|
||||
*.color12: #ffbe55
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #fc5e00
|
||||
*.color13: #fc874f
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #f79500
|
||||
*.color14: #c69752
|
||||
!
|
||||
! White
|
||||
*.color7: #ffc88a
|
||||
*.color15: #fafaff
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #fafaff
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/IR_Black
Normal file
44
terminus-community-color-schemes/schemes/IR_Black
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #f1f1f1
|
||||
*.background: #000000
|
||||
*.cursorColor: #808080
|
||||
!
|
||||
! Black
|
||||
*.color0: #4f4f4f
|
||||
*.color8: #7b7b7b
|
||||
!
|
||||
! Red
|
||||
*.color1: #fa6c60
|
||||
*.color9: #fcb6b0
|
||||
!
|
||||
! Green
|
||||
*.color2: #a8ff60
|
||||
*.color10: #cfffab
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #fffeb7
|
||||
*.color11: #ffffcc
|
||||
!
|
||||
! Blue
|
||||
*.color4: #96cafe
|
||||
*.color12: #b5dcff
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #fa73fd
|
||||
*.color13: #fb9cfe
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #c6c5fe
|
||||
*.color14: #e0e0fe
|
||||
!
|
||||
! White
|
||||
*.color7: #efedef
|
||||
*.color15: #ffffff
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #ffffff
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Jackie Brown
Normal file
44
terminus-community-color-schemes/schemes/Jackie Brown
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #ffcc2f
|
||||
*.background: #2c1d16
|
||||
*.cursorColor: #23ff18
|
||||
!
|
||||
! Black
|
||||
*.color0: #2c1d16
|
||||
*.color8: #666666
|
||||
!
|
||||
! Red
|
||||
*.color1: #ef5734
|
||||
*.color9: #e50000
|
||||
!
|
||||
! Green
|
||||
*.color2: #2baf2b
|
||||
*.color10: #86a93e
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #bebf00
|
||||
*.color11: #e5e500
|
||||
!
|
||||
! Blue
|
||||
*.color4: #246eb2
|
||||
*.color12: #0000ff
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #d05ec1
|
||||
*.color13: #e500e5
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #00acee
|
||||
*.color14: #00e5e5
|
||||
!
|
||||
! White
|
||||
*.color7: #bfbfbf
|
||||
*.color15: #e5e5e5
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #ffcc2f
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Japanesque
Normal file
44
terminus-community-color-schemes/schemes/Japanesque
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #f7f6ec
|
||||
*.background: #1e1e1e
|
||||
*.cursorColor: #edcf4f
|
||||
!
|
||||
! Black
|
||||
*.color0: #343935
|
||||
*.color8: #595b59
|
||||
!
|
||||
! Red
|
||||
*.color1: #cf3f61
|
||||
*.color9: #d18fa6
|
||||
!
|
||||
! Green
|
||||
*.color2: #7bb75b
|
||||
*.color10: #767f2c
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #e9b32a
|
||||
*.color11: #78592f
|
||||
!
|
||||
! Blue
|
||||
*.color4: #4c9ad4
|
||||
*.color12: #135979
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #a57fc4
|
||||
*.color13: #604291
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #389aad
|
||||
*.color14: #76bbca
|
||||
!
|
||||
! White
|
||||
*.color7: #fafaf6
|
||||
*.color15: #b2b5ae
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #fffffa
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Jellybeans
Normal file
44
terminus-community-color-schemes/schemes/Jellybeans
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #dedede
|
||||
*.background: #121212
|
||||
*.cursorColor: #ffa560
|
||||
!
|
||||
! Black
|
||||
*.color0: #929292
|
||||
*.color8: #bdbdbd
|
||||
!
|
||||
! Red
|
||||
*.color1: #e27373
|
||||
*.color9: #ffa1a1
|
||||
!
|
||||
! Green
|
||||
*.color2: #94b979
|
||||
*.color10: #bddeab
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #ffba7b
|
||||
*.color11: #ffdca0
|
||||
!
|
||||
! Blue
|
||||
*.color4: #97bedc
|
||||
*.color12: #b1d8f6
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #e1c0fa
|
||||
*.color13: #fbdaff
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #00988e
|
||||
*.color14: #1ab2a8
|
||||
!
|
||||
! White
|
||||
*.color7: #dedede
|
||||
*.color15: #ffffff
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #ffffff
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/JetBrains Darcula
Normal file
44
terminus-community-color-schemes/schemes/JetBrains Darcula
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #adadad
|
||||
*.background: #202020
|
||||
*.cursorColor: #ffffff
|
||||
!
|
||||
! Black
|
||||
*.color0: #000000
|
||||
*.color8: #555555
|
||||
!
|
||||
! Red
|
||||
*.color1: #fa5355
|
||||
*.color9: #fb7172
|
||||
!
|
||||
! Green
|
||||
*.color2: #126e00
|
||||
*.color10: #67ff4f
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #c2c300
|
||||
*.color11: #ffff00
|
||||
!
|
||||
! Blue
|
||||
*.color4: #4581eb
|
||||
*.color12: #6d9df1
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #fa54ff
|
||||
*.color13: #fb82ff
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #33c2c1
|
||||
*.color14: #60d3d1
|
||||
!
|
||||
! White
|
||||
*.color7: #adadad
|
||||
*.color15: #eeeeee
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #eeeeee
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Kibble
Normal file
44
terminus-community-color-schemes/schemes/Kibble
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #f7f7f7
|
||||
*.background: #0e100a
|
||||
*.cursorColor: #9fda9c
|
||||
!
|
||||
! Black
|
||||
*.color0: #4d4d4d
|
||||
*.color8: #5a5a5a
|
||||
!
|
||||
! Red
|
||||
*.color1: #c70031
|
||||
*.color9: #f01578
|
||||
!
|
||||
! Green
|
||||
*.color2: #29cf13
|
||||
*.color10: #6ce05c
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #d8e30e
|
||||
*.color11: #f3f79e
|
||||
!
|
||||
! Blue
|
||||
*.color4: #3449d1
|
||||
*.color12: #97a4f7
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #8400ff
|
||||
*.color13: #c495f0
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #0798ab
|
||||
*.color14: #68f2e0
|
||||
!
|
||||
! White
|
||||
*.color7: #e2d1e3
|
||||
*.color15: #ffffff
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #ca631e
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Later This Evening
Normal file
44
terminus-community-color-schemes/schemes/Later This Evening
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #959595
|
||||
*.background: #222222
|
||||
*.cursorColor: #424242
|
||||
!
|
||||
! Black
|
||||
*.color0: #2b2b2b
|
||||
*.color8: #454747
|
||||
!
|
||||
! Red
|
||||
*.color1: #d45a60
|
||||
*.color9: #d3232f
|
||||
!
|
||||
! Green
|
||||
*.color2: #afba67
|
||||
*.color10: #aabb39
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #e5d289
|
||||
*.color11: #e5be39
|
||||
!
|
||||
! Blue
|
||||
*.color4: #a0bad6
|
||||
*.color12: #6699d6
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #c092d6
|
||||
*.color13: #ab53d6
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #91bfb7
|
||||
*.color14: #5fc0ae
|
||||
!
|
||||
! White
|
||||
*.color7: #3c3d3d
|
||||
*.color15: #c1c2c2
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #ffffff
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Lavandula
Normal file
44
terminus-community-color-schemes/schemes/Lavandula
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #736e7d
|
||||
*.background: #050014
|
||||
*.cursorColor: #8c91fa
|
||||
!
|
||||
! Black
|
||||
*.color0: #230046
|
||||
*.color8: #372d46
|
||||
!
|
||||
! Red
|
||||
*.color1: #7d1625
|
||||
*.color9: #e05167
|
||||
!
|
||||
! Green
|
||||
*.color2: #337e6f
|
||||
*.color10: #52e0c4
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #7f6f49
|
||||
*.color11: #e0c386
|
||||
!
|
||||
! Blue
|
||||
*.color4: #4f4a7f
|
||||
*.color12: #8e87e0
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #5a3f7f
|
||||
*.color13: #a776e0
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #58777f
|
||||
*.color14: #9ad4e0
|
||||
!
|
||||
! White
|
||||
*.color7: #736e7d
|
||||
*.color15: #8c91fa
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #8c91fa
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/LiquidCarbon
Normal file
44
terminus-community-color-schemes/schemes/LiquidCarbon
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #afc2c2
|
||||
*.background: #303030
|
||||
*.cursorColor: #ffffff
|
||||
!
|
||||
! Black
|
||||
*.color0: #000000
|
||||
*.color8: #000000
|
||||
!
|
||||
! Red
|
||||
*.color1: #ff3030
|
||||
*.color9: #ff3030
|
||||
!
|
||||
! Green
|
||||
*.color2: #559a70
|
||||
*.color10: #559a70
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #ccac00
|
||||
*.color11: #ccac00
|
||||
!
|
||||
! Blue
|
||||
*.color4: #0099cc
|
||||
*.color12: #0099cc
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #cc69c8
|
||||
*.color13: #cc69c8
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #7ac4cc
|
||||
*.color14: #7ac4cc
|
||||
!
|
||||
! White
|
||||
*.color7: #bccccc
|
||||
*.color15: #bccccc
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #ffffff
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #afc2c2
|
||||
*.background: #000000
|
||||
*.cursorColor: #ffffff
|
||||
!
|
||||
! Black
|
||||
*.color0: #000000
|
||||
*.color8: #000000
|
||||
!
|
||||
! Red
|
||||
*.color1: #ff3030
|
||||
*.color9: #ff3030
|
||||
!
|
||||
! Green
|
||||
*.color2: #559a70
|
||||
*.color10: #559a70
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #ccac00
|
||||
*.color11: #ccac00
|
||||
!
|
||||
! Blue
|
||||
*.color4: #0099cc
|
||||
*.color12: #0099cc
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #cc69c8
|
||||
*.color13: #cc69c8
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #7ac4cc
|
||||
*.color14: #7ac4cc
|
||||
!
|
||||
! White
|
||||
*.color7: #bccccc
|
||||
*.color15: #bccccc
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #ffffff
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #afc2c2
|
||||
*.background: #000000
|
||||
*.cursorColor: #ffffff
|
||||
!
|
||||
! Black
|
||||
*.color0: #bccccd
|
||||
*.color8: #ffffff
|
||||
!
|
||||
! Red
|
||||
*.color1: #ff3030
|
||||
*.color9: #ff3030
|
||||
!
|
||||
! Green
|
||||
*.color2: #559a70
|
||||
*.color10: #559a70
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #ccac00
|
||||
*.color11: #ccac00
|
||||
!
|
||||
! Blue
|
||||
*.color4: #0099cc
|
||||
*.color12: #0099cc
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #cc69c8
|
||||
*.color13: #cc69c8
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #7ac4cc
|
||||
*.color14: #7ac4cc
|
||||
!
|
||||
! White
|
||||
*.color7: #000000
|
||||
*.color15: #000000
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #ffffff
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Man Page
Normal file
44
terminus-community-color-schemes/schemes/Man Page
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #000000
|
||||
*.background: #fef49c
|
||||
*.cursorColor: #7f7f7f
|
||||
!
|
||||
! Black
|
||||
*.color0: #000000
|
||||
*.color8: #666666
|
||||
!
|
||||
! Red
|
||||
*.color1: #cc0000
|
||||
*.color9: #e50000
|
||||
!
|
||||
! Green
|
||||
*.color2: #00a600
|
||||
*.color10: #00d900
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #999900
|
||||
*.color11: #e5e500
|
||||
!
|
||||
! Blue
|
||||
*.color4: #0000b2
|
||||
*.color12: #0000ff
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #b200b2
|
||||
*.color13: #e500e5
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #00a6b2
|
||||
*.color14: #00e5e5
|
||||
!
|
||||
! White
|
||||
*.color7: #cccccc
|
||||
*.color15: #e5e5e5
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #000000
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/Material
Normal file
44
terminus-community-color-schemes/schemes/Material
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #232322
|
||||
*.background: #eaeaea
|
||||
*.cursorColor: #16afca
|
||||
!
|
||||
! Black
|
||||
*.color0: #212121
|
||||
*.color8: #424242
|
||||
!
|
||||
! Red
|
||||
*.color1: #b7141f
|
||||
*.color9: #e83b3f
|
||||
!
|
||||
! Green
|
||||
*.color2: #457b24
|
||||
*.color10: #7aba3a
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #f6981e
|
||||
*.color11: #ffea2e
|
||||
!
|
||||
! Blue
|
||||
*.color4: #134eb2
|
||||
*.color12: #54a4f3
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #560088
|
||||
*.color13: #aa4dbc
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #0e717c
|
||||
*.color14: #26bbd1
|
||||
!
|
||||
! White
|
||||
*.color7: #efefef
|
||||
*.color15: #d9d9d9
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #b7141f
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
44
terminus-community-color-schemes/schemes/MaterialDark
Normal file
44
terminus-community-color-schemes/schemes/MaterialDark
Normal file
@ -0,0 +1,44 @@
|
||||
!
|
||||
! Generated with :
|
||||
! XRDB2Xreources.py
|
||||
!
|
||||
*.foreground: #e5e5e5
|
||||
*.background: #232322
|
||||
*.cursorColor: #16afca
|
||||
!
|
||||
! Black
|
||||
*.color0: #212121
|
||||
*.color8: #424242
|
||||
!
|
||||
! Red
|
||||
*.color1: #b7141f
|
||||
*.color9: #e83b3f
|
||||
!
|
||||
! Green
|
||||
*.color2: #457b24
|
||||
*.color10: #7aba3a
|
||||
!
|
||||
! Yellow
|
||||
*.color3: #f6981e
|
||||
*.color11: #ffea2e
|
||||
!
|
||||
! Blue
|
||||
*.color4: #134eb2
|
||||
*.color12: #54a4f3
|
||||
!
|
||||
! Magenta
|
||||
*.color5: #560088
|
||||
*.color13: #aa4dbc
|
||||
!
|
||||
! Cyan
|
||||
*.color6: #0e717c
|
||||
*.color14: #26bbd1
|
||||
!
|
||||
! White
|
||||
*.color7: #efefef
|
||||
*.color15: #d9d9d9
|
||||
!
|
||||
! Bold, Italic, Underline
|
||||
*.colorBD: #b7141f
|
||||
!*.colorIT:
|
||||
!*.colorUL:
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user