Open sobolevn opened 3 years ago
4 years is really a lot of time. I'm happy to hear people loving and using ayu β€οΈ
Thank for detailed report, it seems all of this can be addressed:
@emlautarom1 when you say
Text used to be yellow, and now is pink-ish.
Do you mean the false
constants or something else?
I've toned down bracket highlights in v1.0.2
TYSM for this theme. I use Ayu Dark for pretty much every IDE I use for the past many years.
Please reconsider these recent changes, especially the purple accent. I haven't tried other languages with them yet, but currently, my Dart code looks like this (v1.0.2):
Wow, that's really terrible @xuhaibahmad. Can you share a piece of code for me to test on?
Sure! I think the semantic highlighting will have this issue with languages/frameworks that uses object nesting such as Flutter, Kotlin, SwiftUI, and JetPack Compose, etc.
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
class ClickableMaskView extends StatelessWidget {
const ClickableMaskView({
Key? key,
required this.rippleColor,
required this.onClick,
required this.padding,
required this.radius,
}) : super(key: key);
final Color rippleColor;
final Function onClick;
final double padding;
final double radius;
@override
Widget build(BuildContext context) {
return Positioned.fill(
child: Container(
padding: EdgeInsets.symmetric(horizontal: padding),
child: Material(
color: rippleColor,
child: InkWell(
onTap: () => onClick.call(),
borderRadius: BorderRadius.circular(radius),
),
),
),
);
}
}
The same with python named arguments:
setup(
name="django-stubs",
version="1.8.0",
description="Mypy stubs for Django",
long_description=readme,
long_description_content_type="text/markdown",
license="MIT",
url="https://github.com/typeddjango/django-stubs",
py_modules=[],
python_requires=">=3.6",
install_requires=dependencies,
)
One more problem: new search is very low on contrast. It is hard to see the highlighted text.
I really hope that it will be possible to restore things back to normal soon π
Can you guys give a go to this version ayu-1.0.2.vsix.zip
@dempfi thanks a lot! Brackets and keyword arguments are back to normal! π However, function arguments, search results, and constants are still purple for some reason π
Much better! Though the use of purple for parameters means a lot of my code is still that color. Also, noticed that parameters are not colored when I disable semantic highlighting.
Semantic Highlighting ON:
Semantic Highlighting OFF:
Ok, I found the solution for my problem. Sharing with other people:
You can use older versions of extensions in vscode. https://stackoverflow.com/questions/42626065/vs-code-rollback-extension-install-specific-extension-version/53755378
Demo (and the final result, code color is back to normal):
https://user-images.githubusercontent.com/4660275/132106037-b87ed8db-7e96-4e98-821c-11ff619e69f2.mov
i had to rollback to v0.20.2. love ayu tho!!
Hope I am not late for the party. @dempfi I work with Angular/TS. And the yellow accent colors are still purple, the type associations are the same color as the Interface
screens from v.1.0.0 and up: I think this is the worst part:
screens from same code before v.1.0.0:
settings.json:
{
"workbench.colorTheme": "Ayu Dark Bordered",
"editor.fontLigatures": true,
"editor.fontFamily": "Fira Code",
"workbench.iconTheme": "material-icon-theme",
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"editor.tabSize": 2,
"editor.formatOnSave": true,
"typescript.updateImportsOnFileMove.enabled": "always",
"editor.codeActionsOnSave": {
"source.fixAll.tslint": true
},
"javascript.updateImportsOnFileMove.enabled": "always",
"extensions.autoUpdate": false,
"gitlens.gitCommands.closeOnFocusOut": true,
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"bracket-pair-colorizer-2.colors": [
"Gold",
"Orchid",
"LightSkyBlue"
],
"editor.renameOnType": true,
"workbench.startupEditor": "newUntitledFile",
"angular.experimental-ivy": true,
"terminal.integrated.defaultProfile.windows": "Git Bash"
}
If you need snippets or anything else let me know.
@emlautarom1 when you say
Text used to be yellow, and now is pink-ish.
Do you mean the
false
constants or something else?
Yes, exactly that. Notice that the constant 2
is also pink-ish
Any updates in this issue?
Hi! Thanks a lot for the awesome theme. I am using it for like 4 years now. Dotfiles: https://github.com/sobolevn/dotfiles#vs-code
My main question is: after a recent update (1-2 days ago) my color scheme has changed a lot. And I don't like it, sorry π
Let's discuss new problems I see:
From top to bottom:
()
, which was not used before. It now has too many "attention" attracted to itRelated https://github.com/dempfi/ayu/issues/250
Is there something you can suggest here? Or should I just fork it?