0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Material Themeのコメントカラーを変える

Posted at

SublimeText3 でMaterial Themeを使っています。
Darkerテーマのコメントが見づらいため変えているのですが、やり方を忘れてしまうのでメモ。

環境

  • MaxOS 10.12.2

手順

変更するテーマをコピー

$ cd /Users/[UserName]/Library/Application Support/Sublime Text 3/Packages/User
$ curl https://raw.githubusercontent.com/equinusocio/material-theme/develop/schemes/Material-Theme-Darker.tmTheme > My-Material-Theme-Darker.tmTheme

コメントの色を変更

My-Material-Theme-Darker.tmTheme
<dict>
	<key>name</key>
	<string>Comments</string>
	<key>scope</key>
	<string>comment, punctuation.definition.comment</string>
	<key>settings</key>
	<dict>
		<key>fontStyle</key>
		<string>italic</string>
		<key>foreground</key>
-		<string>#4A4A4A</string>
+		<string>#80CBC4</string>
	</dict>
</dict>

Preferences.sublime-settingsに作成したテーマを設定

Preferences.sublime-settings
{
	"color_scheme": "Packages/User/My-Material-Theme-Darker.tmTheme",
	"theme": "Material-Theme-Darker.sublime-theme",
	"material_theme_compact_sidebar": true,
	"material_theme_small_statusbar": true,
	"material_theme_small_tab": true,
}
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?