mirror of
https://github.com/emacs-vs/vs-light-theme.git
synced 2025-12-05 18:20:30 -08:00
Compare commits
6 commits
b469a2b737
...
1120b36351
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1120b36351 | ||
|
|
3690bb3eea | ||
|
|
2d7780f076 | ||
|
|
0e0d53d595 | ||
|
|
1493551176 | ||
|
|
0c039a0efa |
4 changed files with 23 additions and 8 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -12,3 +12,6 @@ dist/
|
|||
# packaging
|
||||
*-autoloads.el
|
||||
*-pkg.el
|
||||
|
||||
# OS generated
|
||||
.DS_Store
|
||||
|
|
|
|||
|
|
@ -4,10 +4,14 @@ All notable changes to this project will be documented in this file.
|
|||
|
||||
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
|
||||
|
||||
|
||||
## 1.1 (Unreleased)
|
||||
## 3.0 (Unreleased)
|
||||
> Released N/A
|
||||
|
||||
* N/A
|
||||
|
||||
## 2.0
|
||||
> Released Feb 10, 2025
|
||||
|
||||
* Configure theme for `region-occurrences-highlighter`
|
||||
* Configure theme for `whitespace`
|
||||
* Configure theme for `fill-column-indicator`
|
||||
|
|
@ -26,6 +30,7 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
|
|||
* Configure dashboard text banner (204c9d59ce6081294fa02542dfbbd5e95b8bb172)
|
||||
* Add support for `nxml-mode` (9271b350651c7404a1b71559df9feb4647879613)
|
||||
* Support LSP inlay hints (ad61f777d374f67db5e5ef66ab6da2967ba83abd)
|
||||
* chore: Add spacing for `dashboard` headings (0c039a0efaabd2de96dd9c80f9a52c7e3adfa57c)
|
||||
|
||||
## 1.0
|
||||
> Released Jan 1, 2022
|
||||
|
|
|
|||
11
Eask
11
Eask
|
|
@ -1,15 +1,16 @@
|
|||
(package "vs-light-theme"
|
||||
"1.0"
|
||||
"2.0"
|
||||
"Visual Studio IDE light theme")
|
||||
|
||||
(website-url "https://github.com/emacs-vs/vs-light-theme")
|
||||
(keywords "")
|
||||
(keywords "faces")
|
||||
|
||||
(package-file "vs-light-theme.el")
|
||||
|
||||
(script "test" "echo \"Error: no test specified\" && exit 1")
|
||||
|
||||
(source "melpa")
|
||||
(source 'gnu)
|
||||
(source 'melpa)
|
||||
|
||||
(depends-on "emacs" "24.1")
|
||||
|
||||
|
|
@ -17,3 +18,7 @@
|
|||
(depends-on "ert-runner"))
|
||||
|
||||
(setq network-security-level 'low) ; see https://github.com/jcs090218/setup-emacs-windows/issues/156#issuecomment-932956432
|
||||
|
||||
(add-hook 'eask-before-compile-hook
|
||||
(lambda (&rest _)
|
||||
(setq byte-compile-error-on-warn t)))
|
||||
|
|
|
|||
|
|
@ -1,11 +1,12 @@
|
|||
;;; vs-light-theme.el --- Visual Studio IDE light theme
|
||||
;;; vs-light-theme.el --- Visual Studio IDE light theme -*- lexical-binding: t; -*-
|
||||
|
||||
;; Copyright (C) 2019-2025 Shen, Jen-Chieh
|
||||
|
||||
;; Author: Jen-Chieh Shen
|
||||
;; URL: https://github.com/emacs-vs/vs-light-theme
|
||||
;; Version: 1.0
|
||||
;; Version: 2.0
|
||||
;; Package-Requires: ((emacs "24.1"))
|
||||
;; Keywords: faces
|
||||
|
||||
;; This file is NOT part of GNU Emacs.
|
||||
|
||||
|
|
@ -191,7 +192,8 @@
|
|||
|
||||
`(dashboard-text-banner ((t :foreground "black")))
|
||||
`(dashboard-banner-logo-title ((t :foreground "#616161")))
|
||||
`(dashboard-heading ((t :foreground "#727272")))
|
||||
`(dashboard-heading ((t :foreground "#727272"
|
||||
:box (:line-width (-1 . 5) :color "#ffffff"))))
|
||||
`(dashboard-items-face ((t :foreground "#1475B7")))
|
||||
|
||||
`(yascroll:thumb-fringe ((t :background "#C2C3C9" :foreground "#C2C3C9")))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue