What theme does Runnable Use for their Ace Editor Implementation - ace-editor

It looks as though runnable.com uses ace code editor. What is the purple theme they use?
http://runnable.com/UmGTLn0iIYljAAEu/codemirror-example-change-theme

It appears they are using custom theme runnable_dark. Try running ace.define.modules["ace/theme/runnable_dark"].cssText in devtools to see it's css.

Related

Error in Sublime Text while opening .blade.php

When I open the Sublime Text editor all text colors go white and there is no exact font color tag wise.
Error while opening sublime text editor:
Error loading syntax file "Packages/Laravel Blade
Highlighter/blade.sublime-syntax": Apparent recursion within a
with_prototype action: 25000 context sanity limit hit
I got the same problem few days ago, and I found there is a solution; a CSS 3 package is making trouble working with the Laravel Blade Highlighter package. You should disable the CSS 3 package with Package Control: Disable Package CSS3 on the command palette, restart Sublime Text, and then it will work as expected.
There you can read the comment:
Hi, I'm the author of CSS3. I was able to reproduce the issue when
both the default CSS package and CSS3 were enabled. I recommend
disabling the default CSS package in my install notes, but I
understand that many people can't do that because they use a package
that depends on the default CSS package (like Laravel Blade).
The clumsy workaround is to enable/disable CSS and CSS3. When you're
working on blade files, you can Package Control: Disable Package CSS3
and enable CSS. If you're working primarily with pure CSS files, I
recommend disabling CSS and enabling CSS3.
Sorry, I know that's an awkward solution. If I think of something
better, I'll post it here.

Is is possible to embed Jupyter Notebook theme to the exported version?

I'm using custom code syntax theme on notebook: https://github.com/merqurio/jupyter_themes
Is it possible to embed that theme on the saved notebook so that when it is viewed from http://nbviewer.jupyter.org/ it will show chosen theme?
I don't think it's possible to do it directly via your specific theming plugin but you can specify custom css so that nbviewer will use it:
http://www.aaronschlegel.com/display-custom-ipython-notebook-themes-in-nbviewer/

Customize Firefox Developer dev tools color theme

Just as title says, I'd like to know if it's possible to change the color theme of Firefox Developer dev tools. Light and dark theme are nice, but I'd like to use a code color theme like Monokai or something similar, how can I do that?
Below you can see the current dark theme in the dev tools:
[
It's not documented (yet), but you could make an Add-on that uses gDevTools.registerTheme(themeDefinition) to create your own dev tools theme.
I found the answer to this in the Mozilla support forum and basically you have to modify the css style creating an overriding chrome stylesheet.
You would have to write your own style rules and apply them via
userChrome.css or Stylish. Use the !important flag to override
existing style rules.
https://developer.mozilla.org/en-US/docs/Web/CSS/Specificity#The_!important_exception
The customization files userChrome.css (user interface) and
userContent.css (websites) are located in the chrome folder in the
Firefox profile folder.
http://kb.mozillazine.org/Editing_configuration

Which theme is used in reveal.js for code blocks?

Which theme is used in reveal.js by default for highlight syntax?
The default theme is Zenburn, see index.html.
Also try Zenburn here: http://softwaremaniacs.org/media/soft/highlight/test.html

How to override WindowsPhone dark theme by light

Any idea on over-riding the dark theme without copy the default design/ThemeResources.xml file?
If you don't want to override the resources file the alternative is to create your own styles for every control that you use and apply that to each instance of each control.
Overriding the resources fiel is easier. ;)
Here is the useful link http://www.designersilverlight.com/2011/01/17/theme-forcing-for-windows-phone-7-silverlight/

Resources