settings.json 575 B

123456789101112131415161718192021222324
  1. {
  2. "editor.tokenColorCustomizations": {
  3. "textMateRules": [
  4. {
  5. "scope": "googletest.failed",
  6. "settings": {
  7. "foreground": "#f00"
  8. }
  9. },
  10. {
  11. "scope": "googletest.passed",
  12. "settings": {
  13. "foreground": "#0f0"
  14. }
  15. },
  16. {
  17. "scope": "googletest.run",
  18. "settings": {
  19. "foreground": "#0f0"
  20. }
  21. }
  22. ]
  23. }
  24. }