-
Notifications
You must be signed in to change notification settings - Fork 94
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Old color scheme? #123
Comments
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
Do you mean the |
I've toned down bracket highlights in 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),
),
),
),
);
}
}
|
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! 👍 |
Ok, I found the solution for my problem. Sharing with other people: You can use older versions of extensions in vscode. Demo (and the final result, code color is back to normal): 2021-09-04.22.33.57.mov |
i had to rollback to v0.20.2. love ayu tho!! |
Hope I am not late for the party. screens from v.1.0.0 and up: 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. |
Yes, exactly that. Notice that the constant |
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 dempfi#250
Is there something you can suggest here?
Or should I just fork it?
The text was updated successfully, but these errors were encountered: