4

Can alpha be applied to hex color code in Sublime?

Sublime themes can be edited through .tmTheme files by changing the hex values.

<key>background</key>
<string>#000000</string>

Android:#32000000 black 20% alpha Hex transparency in colors does anything like this work?

Purpose: see desktop while coding

I only want to edit it through .tmTheme file for simplicity. Any help is much appreciated.

Community
  • 1
  • 1
John Moore
  • 91
  • 1
  • 7

1 Answers1

0

Yes, just add the an hexadecimal value at the end, for example for a black color with 50% opacity use <string>#00000080</string> or for a white color with a 50% opacity use <string>#FFFFFF80</string>

Source: https://www.sublimetext.com/docs/3/color_schemes.html

Ivan Castellanos
  • 8,041
  • 1
  • 47
  • 42