抖音c端
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

76 řádky
3.0 KiB

  1. {
  2. "editor.tokenColorCustomizations": {
  3. "keywords": {
  4. "foreground": "#FF0000",
  5. "fontStyle": "italic bold"
  6. },
  7. "variables": {
  8. "foreground": "#ffffff",
  9. "fontStyle": "italic bold",
  10. },
  11. //字符串
  12. "strings": {
  13. "foreground": "#fbff00",
  14. "fontStyle": "italic"
  15. },
  16. //函数
  17. "functions": "#00ffff",
  18. //注释
  19. "comments": "#969696",
  20. "types": "#00ff95"
  21. },
  22. "editor.formatOnSave": true,
  23. "editor.wordWrap": "on",
  24. // 开启原生括号着色
  25. "editor.bracketPairColorization.enabled": true,
  26. // 开启代码块边缘导轨线着色
  27. "editor.guides.bracketPairs": "active",
  28. //覆盖当前所选颜色主题的颜色
  29. "workbench.colorCustomizations": {
  30. //光标颜色
  31. "editorCursor.foreground": "#00ff00",
  32. //编辑器背景色
  33. "editor.background": "#00000025",
  34. //光标所在行边框颜色
  35. //光标所在行背景颜色
  36. "editor.lineHighlightBorder": "#ffffffa1",
  37. "editor.lineHighlightBackground": "#ffffff1e",
  38. //光标选中文本的背景颜色
  39. //光标选中文本时匹配同类型的值的背景颜色
  40. "editor.selectionBackground": "#ff0000c2",
  41. "editor.selectionHighlightBackground": "#00ffff80",
  42. //缩进参考线的颜色
  43. "editorIndentGuide.activeBackground": "#f92672",
  44. //方括号出现意外的前景色
  45. "editorBracketHighlight.unexpectedBracket.foreground": "#ff0000",
  46. //括号的前景色,需要启用括号对着色
  47. "editorBracketHighlight.foreground1": "#ffff00",
  48. "editorBracketPairGuide.activeBackground1": "#ffff00",
  49. "editorBracketHighlight.foreground2": "#f92672",
  50. "editorBracketPairGuide.activeBackground2": "#f92672",
  51. "editorBracketHighlight.foreground3": "#00ffff",
  52. "editorBracketPairGuide.activeBackground3": "#00ffff",
  53. "editorBracketHighlight.foreground4": "#00ff00",
  54. "editorBracketPairGuide.activeBackground4": "#00ff00",
  55. "workbench.colorTheme": "Sublime VSCode Theme",
  56. "[Sublime VSCode Theme]": {
  57. "activityBar.activeBackground": "#ffffff1e",
  58. "activityBar.background": "#292b27",
  59. "activityBar.foreground": "#ffffff",
  60. "activityBar.activeBorder": "#ff0000",
  61. "activityBar.activeFocusBorder": "#ff0000",
  62. "breadcrumb.foreground": "#ffffff",
  63. "breadcrumb.background": "#1a1b18",
  64. "sideBar.background": "#1e1f1c",
  65. "sideBarSectionHeader.background": "#343532",
  66. "sideBarSectionHeader.foreground": "#fff",
  67. "sideBar.border": "#777777",
  68. "sideBar.foreground": "#fff",
  69. "list.hoverBackground": "#8a8a8a",
  70. "list.inactiveSelectionBackground": "#75715e",
  71. "editor.selectionBackground": "#ff0000",
  72. "editorGroupHeader.tabsBackground": "#141415"
  73. },
  74. },
  75. "editor.cursorBlinking": "smooth",
  76. }